diff --git a/grammar.js b/grammar.js index b03c1d34..47381081 100644 --- a/grammar.js +++ b/grammar.js @@ -759,7 +759,7 @@ module.exports = grammar({ $.bin_literal, $.character_literal, $.real_literal, - "null", + $.null_literal, $.long_literal, $.unsigned_literal ), @@ -1207,6 +1207,8 @@ module.exports = grammar({ $._escaped_identifier ), + null_literal: $ => "null", + // ========== // Identifiers // ========== diff --git a/queries/highlights.scm b/queries/highlights.scm index d2e15a68..6f1c9687 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -205,7 +205,7 @@ ] @number [ - "null" ; should be highlighted the same as booleans + (null_literal) ; should be highlighted the same as booleans (boolean_literal) ] @boolean diff --git a/src/grammar.json b/src/grammar.json index f2a1ab61..8ebf6011 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -3802,8 +3802,8 @@ "name": "real_literal" }, { - "type": "STRING", - "value": "null" + "type": "SYMBOL", + "name": "null_literal" }, { "type": "SYMBOL", @@ -6173,6 +6173,10 @@ } ] }, + "null_literal": { + "type": "STRING", + "value": "null" + }, "_lexical_identifier": { "type": "CHOICE", "members": [ diff --git a/src/node-types.json b/src/node-types.json index cdbf373d..788fc8ae 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -5,7 +5,7 @@ "fields": {}, "children": { "multiple": true, - "required": false, + "required": true, "types": [ { "type": "additive_expression", @@ -107,6 +107,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -284,7 +288,7 @@ "fields": {}, "children": { "multiple": true, - "required": false, + "required": true, "types": [ { "type": "additive_expression", @@ -394,6 +398,10 @@ "type": "not_nullable_type", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "nullable_type", "named": true @@ -581,6 +589,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -762,6 +774,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -936,7 +952,7 @@ "fields": {}, "children": { "multiple": true, - "required": false, + "required": true, "types": [ { "type": "additive_expression", @@ -1046,6 +1062,10 @@ "type": "not_nullable_type", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "nullable_type", "named": true @@ -1344,6 +1364,10 @@ "type": "not_nullable_type", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "nullable_type", "named": true @@ -1527,6 +1551,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -1619,7 +1647,7 @@ "fields": {}, "children": { "multiple": true, - "required": false, + "required": true, "types": [ { "type": "additive_expression", @@ -1721,6 +1749,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -1888,6 +1920,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -2121,6 +2157,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_declaration", "named": true @@ -2237,7 +2277,7 @@ "fields": {}, "children": { "multiple": true, - "required": false, + "required": true, "types": [ { "type": "anonymous_function", @@ -2295,6 +2335,10 @@ "type": "navigation_suffix", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -2446,6 +2490,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -2617,6 +2665,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -2784,6 +2836,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -2931,7 +2987,7 @@ "fields": {}, "children": { "multiple": true, - "required": false, + "required": true, "types": [ { "type": "additive_expression", @@ -3033,6 +3089,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -3204,6 +3264,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -3421,6 +3485,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -3592,6 +3660,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -3913,6 +3985,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -4150,6 +4226,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -4374,6 +4454,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -4541,6 +4625,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -4708,6 +4796,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -4778,7 +4870,7 @@ "fields": {}, "children": { "multiple": false, - "required": false, + "required": true, "types": [ { "type": "additive_expression", @@ -4880,6 +4972,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -5056,6 +5152,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -5254,7 +5354,7 @@ "fields": {}, "children": { "multiple": true, - "required": false, + "required": true, "types": [ { "type": "additive_expression", @@ -5356,6 +5456,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -5527,6 +5631,10 @@ "type": "navigation_suffix", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -5922,6 +6030,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -6046,7 +6158,7 @@ "fields": {}, "children": { "multiple": false, - "required": false, + "required": true, "types": [ { "type": "additive_expression", @@ -6148,6 +6260,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -6213,7 +6329,7 @@ "fields": {}, "children": { "multiple": true, - "required": false, + "required": true, "types": [ { "type": "additive_expression", @@ -6323,6 +6439,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -6525,6 +6645,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "nullable_type", "named": true @@ -6728,6 +6852,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -6895,6 +7023,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -6960,7 +7092,7 @@ "fields": {}, "children": { "multiple": false, - "required": false, + "required": true, "types": [ { "type": "additive_expression", @@ -7062,6 +7194,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -7353,6 +7489,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_declaration", "named": true @@ -7548,6 +7688,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -7747,6 +7891,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_declaration", "named": true @@ -8395,6 +8543,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -8626,6 +8778,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -8843,6 +8999,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -9018,6 +9178,10 @@ "type": "navigation_expression", "named": true }, + { + "type": "null_literal", + "named": true + }, { "type": "object_literal", "named": true @@ -9458,8 +9622,8 @@ "named": false }, { - "type": "null", - "named": false + "type": "null_literal", + "named": true }, { "type": "object", diff --git a/src/parser.c b/src/parser.c index c8c4f7ef..faf44565 100644 --- a/src/parser.c +++ b/src/parser.c @@ -77,94 +77,94 @@ enum ts_symbol_identifiers { anon_sym_QMARK_COLON = 51, anon_sym_AMP_AMP = 52, anon_sym_PIPE_PIPE = 53, - anon_sym_null = 54, - anon_sym_DOLLAR_LBRACE = 55, - anon_sym_DOLLAR = 56, - anon_sym_if = 57, - anon_sym_else = 58, - anon_sym_when = 59, - anon_sym_try = 60, - anon_sym_catch = 61, - anon_sym_finally = 62, - anon_sym_throw = 63, - anon_sym_return = 64, - anon_sym_continue = 65, - anon_sym_break = 66, - anon_sym_COLON_COLON = 67, - anon_sym_PLUS_EQ = 68, - anon_sym_DASH_EQ = 69, - anon_sym_STAR_EQ = 70, - anon_sym_SLASH_EQ = 71, - anon_sym_PERCENT_EQ = 72, - anon_sym_BANG_EQ = 73, - anon_sym_BANG_EQ_EQ = 74, - anon_sym_EQ_EQ = 75, - anon_sym_EQ_EQ_EQ = 76, - anon_sym_LT_EQ = 77, - anon_sym_GT_EQ = 78, - anon_sym_BANGin = 79, - anon_sym_is = 80, - anon_sym_BANGis = 81, - anon_sym_PLUS = 82, - anon_sym_DASH = 83, - anon_sym_SLASH = 84, - anon_sym_PERCENT = 85, - anon_sym_as_QMARK = 86, - anon_sym_PLUS_PLUS = 87, - anon_sym_DASH_DASH = 88, - anon_sym_BANG = 89, - anon_sym_BANG_BANG = 90, - anon_sym_suspend = 91, - anon_sym_sealed = 92, - anon_sym_annotation = 93, - anon_sym_data = 94, - anon_sym_inner = 95, - anon_sym_value = 96, - anon_sym_override = 97, - anon_sym_lateinit = 98, - anon_sym_public = 99, - anon_sym_private = 100, - anon_sym_internal = 101, - anon_sym_protected = 102, - anon_sym_out = 103, - anon_sym_tailrec = 104, - anon_sym_operator = 105, - anon_sym_infix = 106, - anon_sym_inline = 107, - anon_sym_external = 108, - sym_property_modifier = 109, - anon_sym_abstract = 110, - anon_sym_final = 111, - anon_sym_open = 112, - anon_sym_vararg = 113, - anon_sym_noinline = 114, - anon_sym_crossinline = 115, - sym_reification_modifier = 116, - anon_sym_expect = 117, - anon_sym_actual = 118, - anon_sym_field = 119, - anon_sym_property = 120, - anon_sym_receiver = 121, - anon_sym_param = 122, - anon_sym_setparam = 123, - anon_sym_delegate = 124, - sym_line_comment = 125, - anon_sym_return_AT = 126, - anon_sym_continue_AT = 127, - anon_sym_break_AT = 128, - anon_sym_this_AT = 129, - anon_sym_super_AT = 130, - anon_sym_AT2 = 131, - sym_real_literal = 132, - sym_integer_literal = 133, - sym_hex_literal = 134, - sym_bin_literal = 135, - aux_sym_unsigned_literal_token1 = 136, - anon_sym_L = 137, - anon_sym_true = 138, - anon_sym_false = 139, - anon_sym_SQUOTE = 140, - aux_sym_character_literal_token1 = 141, + anon_sym_DOLLAR_LBRACE = 54, + anon_sym_DOLLAR = 55, + anon_sym_if = 56, + anon_sym_else = 57, + anon_sym_when = 58, + anon_sym_try = 59, + anon_sym_catch = 60, + anon_sym_finally = 61, + anon_sym_throw = 62, + anon_sym_return = 63, + anon_sym_continue = 64, + anon_sym_break = 65, + anon_sym_COLON_COLON = 66, + anon_sym_PLUS_EQ = 67, + anon_sym_DASH_EQ = 68, + anon_sym_STAR_EQ = 69, + anon_sym_SLASH_EQ = 70, + anon_sym_PERCENT_EQ = 71, + anon_sym_BANG_EQ = 72, + anon_sym_BANG_EQ_EQ = 73, + anon_sym_EQ_EQ = 74, + anon_sym_EQ_EQ_EQ = 75, + anon_sym_LT_EQ = 76, + anon_sym_GT_EQ = 77, + anon_sym_BANGin = 78, + anon_sym_is = 79, + anon_sym_BANGis = 80, + anon_sym_PLUS = 81, + anon_sym_DASH = 82, + anon_sym_SLASH = 83, + anon_sym_PERCENT = 84, + anon_sym_as_QMARK = 85, + anon_sym_PLUS_PLUS = 86, + anon_sym_DASH_DASH = 87, + anon_sym_BANG = 88, + anon_sym_BANG_BANG = 89, + anon_sym_suspend = 90, + anon_sym_sealed = 91, + anon_sym_annotation = 92, + anon_sym_data = 93, + anon_sym_inner = 94, + anon_sym_value = 95, + anon_sym_override = 96, + anon_sym_lateinit = 97, + anon_sym_public = 98, + anon_sym_private = 99, + anon_sym_internal = 100, + anon_sym_protected = 101, + anon_sym_out = 102, + anon_sym_tailrec = 103, + anon_sym_operator = 104, + anon_sym_infix = 105, + anon_sym_inline = 106, + anon_sym_external = 107, + sym_property_modifier = 108, + anon_sym_abstract = 109, + anon_sym_final = 110, + anon_sym_open = 111, + anon_sym_vararg = 112, + anon_sym_noinline = 113, + anon_sym_crossinline = 114, + sym_reification_modifier = 115, + anon_sym_expect = 116, + anon_sym_actual = 117, + anon_sym_field = 118, + anon_sym_property = 119, + anon_sym_receiver = 120, + anon_sym_param = 121, + anon_sym_setparam = 122, + anon_sym_delegate = 123, + sym_line_comment = 124, + anon_sym_return_AT = 125, + anon_sym_continue_AT = 126, + anon_sym_break_AT = 127, + anon_sym_this_AT = 128, + anon_sym_super_AT = 129, + anon_sym_AT2 = 130, + sym_real_literal = 131, + sym_integer_literal = 132, + sym_hex_literal = 133, + sym_bin_literal = 134, + aux_sym_unsigned_literal_token1 = 135, + anon_sym_L = 136, + anon_sym_true = 137, + anon_sym_false = 138, + anon_sym_SQUOTE = 139, + aux_sym_character_literal_token1 = 140, + sym_null_literal = 141, sym__backtick_identifier = 142, anon_sym_BSLASHu = 143, aux_sym__uni_character_literal_token1 = 144, @@ -440,7 +440,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_QMARK_COLON] = "\?:", [anon_sym_AMP_AMP] = "&&", [anon_sym_PIPE_PIPE] = "||", - [anon_sym_null] = "null", [anon_sym_DOLLAR_LBRACE] = "${", [anon_sym_DOLLAR] = "$", [anon_sym_if] = "if", @@ -528,6 +527,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_false] = "false", [anon_sym_SQUOTE] = "'", [aux_sym_character_literal_token1] = "character_literal_token1", + [sym_null_literal] = "null_literal", [sym__backtick_identifier] = "_backtick_identifier", [anon_sym_BSLASHu] = "\\u", [aux_sym__uni_character_literal_token1] = "_uni_character_literal_token1", @@ -803,7 +803,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_QMARK_COLON] = anon_sym_QMARK_COLON, [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, - [anon_sym_null] = anon_sym_null, [anon_sym_DOLLAR_LBRACE] = anon_sym_DOLLAR_LBRACE, [anon_sym_DOLLAR] = anon_sym_DOLLAR, [anon_sym_if] = anon_sym_if, @@ -891,6 +890,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_false] = anon_sym_false, [anon_sym_SQUOTE] = anon_sym_SQUOTE, [aux_sym_character_literal_token1] = aux_sym_character_literal_token1, + [sym_null_literal] = sym_null_literal, [sym__backtick_identifier] = sym__backtick_identifier, [anon_sym_BSLASHu] = anon_sym_BSLASHu, [aux_sym__uni_character_literal_token1] = aux_sym__uni_character_literal_token1, @@ -1328,10 +1328,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_null] = { - .visible = true, - .named = false, - }, [anon_sym_DOLLAR_LBRACE] = { .visible = true, .named = false, @@ -1680,6 +1676,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [sym_null_literal] = { + .visible = true, + .named = true, + }, [sym__backtick_identifier] = { .visible = false, .named = true, @@ -19857,7 +19857,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'r') ADVANCE(135); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_null); + ACCEPT_TOKEN(sym_null_literal); END_STATE(); case 107: if (lookahead == 'c') ADVANCE(136); @@ -30334,7 +30334,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1), [anon_sym_AMP_AMP] = ACTIONS(1), [anon_sym_PIPE_PIPE] = ACTIONS(1), - [anon_sym_null] = ACTIONS(1), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1), [anon_sym_DOLLAR] = ACTIONS(1), [anon_sym_if] = ACTIONS(1), @@ -30421,6 +30420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1), [anon_sym_false] = ACTIONS(1), [anon_sym_SQUOTE] = ACTIONS(1), + [sym_null_literal] = ACTIONS(1), [sym__backtick_identifier] = ACTIONS(1), [anon_sym_BSLASHu] = ACTIONS(1), [sym__escaped_identifier] = ACTIONS(1), @@ -30548,59 +30548,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -30726,16 +30726,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), + [anon_sym_if] = ACTIONS(157), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS_EQ] = ACTIONS(121), [anon_sym_DASH_EQ] = ACTIONS(121), [anon_sym_STAR_EQ] = ACTIONS(121), @@ -30750,54 +30749,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(121), [anon_sym_is] = ACTIONS(123), [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), [anon_sym_SLASH] = ACTIONS(123), [anon_sym_PERCENT] = ACTIONS(123), [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(171), [anon_sym_BANG_BANG] = ACTIONS(121), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(191), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), [sym__backtick_identifier] = ACTIONS(201), [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), @@ -30924,16 +30924,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(243), + [anon_sym_if] = ACTIONS(241), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS_EQ] = ACTIONS(121), [anon_sym_DASH_EQ] = ACTIONS(121), [anon_sym_STAR_EQ] = ACTIONS(121), @@ -30948,54 +30947,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(121), [anon_sym_is] = ACTIONS(123), [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), [anon_sym_SLASH] = ACTIONS(123), [anon_sym_PERCENT] = ACTIONS(123), [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(257), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(255), [anon_sym_BANG_BANG] = ACTIONS(121), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(275), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(283), [sym__backtick_identifier] = ACTIONS(285), [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), @@ -31122,16 +31122,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(289), [anon_sym_AMP_AMP] = ACTIONS(289), [anon_sym_PIPE_PIPE] = ACTIONS(289), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(243), + [anon_sym_if] = ACTIONS(241), [anon_sym_else] = ACTIONS(291), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS_EQ] = ACTIONS(289), [anon_sym_DASH_EQ] = ACTIONS(289), [anon_sym_STAR_EQ] = ACTIONS(289), @@ -31146,54 +31145,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(289), [anon_sym_is] = ACTIONS(291), [anon_sym_BANGis] = ACTIONS(289), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), [anon_sym_SLASH] = ACTIONS(291), [anon_sym_PERCENT] = ACTIONS(291), [anon_sym_as_QMARK] = ACTIONS(289), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(257), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(255), [anon_sym_BANG_BANG] = ACTIONS(289), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(275), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(283), [sym__backtick_identifier] = ACTIONS(285), [sym_safe_nav] = ACTIONS(289), [sym_multiline_comment] = ACTIONS(3), @@ -31320,16 +31320,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(293), [anon_sym_AMP_AMP] = ACTIONS(293), [anon_sym_PIPE_PIPE] = ACTIONS(293), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(325), [anon_sym_else] = ACTIONS(295), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS_EQ] = ACTIONS(293), [anon_sym_DASH_EQ] = ACTIONS(293), [anon_sym_STAR_EQ] = ACTIONS(293), @@ -31344,54 +31343,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(293), [anon_sym_is] = ACTIONS(295), [anon_sym_BANGis] = ACTIONS(293), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), [anon_sym_SLASH] = ACTIONS(295), [anon_sym_PERCENT] = ACTIONS(295), [anon_sym_as_QMARK] = ACTIONS(293), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(331), [anon_sym_BANG_BANG] = ACTIONS(293), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym_safe_nav] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), @@ -31518,16 +31518,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(289), [anon_sym_AMP_AMP] = ACTIONS(289), [anon_sym_PIPE_PIPE] = ACTIONS(289), - [anon_sym_null] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), + [anon_sym_if] = ACTIONS(157), [anon_sym_else] = ACTIONS(291), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS_EQ] = ACTIONS(289), [anon_sym_DASH_EQ] = ACTIONS(289), [anon_sym_STAR_EQ] = ACTIONS(289), @@ -31542,54 +31541,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(289), [anon_sym_is] = ACTIONS(291), [anon_sym_BANGis] = ACTIONS(289), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), [anon_sym_SLASH] = ACTIONS(291), [anon_sym_PERCENT] = ACTIONS(291), [anon_sym_as_QMARK] = ACTIONS(289), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(171), [anon_sym_BANG_BANG] = ACTIONS(289), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(191), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), [sym__backtick_identifier] = ACTIONS(201), [sym_safe_nav] = ACTIONS(289), [sym_multiline_comment] = ACTIONS(3), @@ -31713,16 +31713,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(289), [anon_sym_AMP_AMP] = ACTIONS(289), [anon_sym_PIPE_PIPE] = ACTIONS(289), - [anon_sym_null] = ACTIONS(375), - [anon_sym_if] = ACTIONS(377), + [anon_sym_if] = ACTIONS(375), [anon_sym_else] = ACTIONS(291), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS_EQ] = ACTIONS(289), [anon_sym_DASH_EQ] = ACTIONS(289), [anon_sym_STAR_EQ] = ACTIONS(289), @@ -31737,54 +31736,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(289), [anon_sym_is] = ACTIONS(291), [anon_sym_BANGis] = ACTIONS(289), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), [anon_sym_SLASH] = ACTIONS(291), [anon_sym_PERCENT] = ACTIONS(291), [anon_sym_as_QMARK] = ACTIONS(289), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(389), [anon_sym_BANG_BANG] = ACTIONS(289), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(395), - [anon_sym_inner] = ACTIONS(395), - [anon_sym_value] = ACTIONS(395), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(397), - [anon_sym_actual] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(409), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), [sym__backtick_identifier] = ACTIONS(419), [sym__automatic_semicolon] = ACTIONS(289), [sym_safe_nav] = ACTIONS(289), @@ -31909,16 +31909,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(289), [anon_sym_AMP_AMP] = ACTIONS(289), [anon_sym_PIPE_PIPE] = ACTIONS(289), - [anon_sym_null] = ACTIONS(449), - [anon_sym_if] = ACTIONS(451), + [anon_sym_if] = ACTIONS(449), [anon_sym_else] = ACTIONS(291), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS_EQ] = ACTIONS(289), [anon_sym_DASH_EQ] = ACTIONS(289), [anon_sym_STAR_EQ] = ACTIONS(289), @@ -31933,54 +31932,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(289), [anon_sym_is] = ACTIONS(291), [anon_sym_BANGis] = ACTIONS(289), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_DASH] = ACTIONS(455), [anon_sym_SLASH] = ACTIONS(291), [anon_sym_PERCENT] = ACTIONS(291), [anon_sym_as_QMARK] = ACTIONS(289), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_BANG] = ACTIONS(455), [anon_sym_BANG_BANG] = ACTIONS(289), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(461), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(461), [sym__backtick_identifier] = ACTIONS(111), [sym__automatic_semicolon] = ACTIONS(289), [sym_safe_nav] = ACTIONS(289), @@ -32105,16 +32105,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(289), [anon_sym_AMP_AMP] = ACTIONS(289), [anon_sym_PIPE_PIPE] = ACTIONS(289), - [anon_sym_null] = ACTIONS(499), - [anon_sym_if] = ACTIONS(501), + [anon_sym_if] = ACTIONS(499), [anon_sym_else] = ACTIONS(291), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS_EQ] = ACTIONS(289), [anon_sym_DASH_EQ] = ACTIONS(289), [anon_sym_STAR_EQ] = ACTIONS(289), @@ -32129,54 +32128,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(289), [anon_sym_is] = ACTIONS(291), [anon_sym_BANGis] = ACTIONS(289), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), [anon_sym_SLASH] = ACTIONS(291), [anon_sym_PERCENT] = ACTIONS(291), [anon_sym_as_QMARK] = ACTIONS(289), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(513), [anon_sym_BANG_BANG] = ACTIONS(289), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(519), - [anon_sym_inner] = ACTIONS(519), - [anon_sym_value] = ACTIONS(519), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(521), - [anon_sym_actual] = ACTIONS(521), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(531), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(517), + [anon_sym_inner] = ACTIONS(517), + [anon_sym_value] = ACTIONS(517), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(519), + [anon_sym_actual] = ACTIONS(519), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(529), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(539), [sym__backtick_identifier] = ACTIONS(541), [sym__automatic_semicolon] = ACTIONS(289), [sym_safe_nav] = ACTIONS(289), @@ -32301,16 +32301,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(499), - [anon_sym_if] = ACTIONS(501), + [anon_sym_if] = ACTIONS(499), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS_EQ] = ACTIONS(121), [anon_sym_DASH_EQ] = ACTIONS(121), [anon_sym_STAR_EQ] = ACTIONS(121), @@ -32325,54 +32324,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(121), [anon_sym_is] = ACTIONS(123), [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), [anon_sym_SLASH] = ACTIONS(123), [anon_sym_PERCENT] = ACTIONS(123), [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(513), [anon_sym_BANG_BANG] = ACTIONS(121), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(519), - [anon_sym_inner] = ACTIONS(519), - [anon_sym_value] = ACTIONS(519), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(521), - [anon_sym_actual] = ACTIONS(521), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(531), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(517), + [anon_sym_inner] = ACTIONS(517), + [anon_sym_value] = ACTIONS(517), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(519), + [anon_sym_actual] = ACTIONS(519), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(529), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(539), [sym__backtick_identifier] = ACTIONS(541), [sym__automatic_semicolon] = ACTIONS(121), [sym_safe_nav] = ACTIONS(121), @@ -32497,16 +32497,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(293), [anon_sym_AMP_AMP] = ACTIONS(293), [anon_sym_PIPE_PIPE] = ACTIONS(293), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(325), [anon_sym_else] = ACTIONS(295), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS_EQ] = ACTIONS(293), [anon_sym_DASH_EQ] = ACTIONS(293), [anon_sym_STAR_EQ] = ACTIONS(293), @@ -32521,54 +32520,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(293), [anon_sym_is] = ACTIONS(295), [anon_sym_BANGis] = ACTIONS(293), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), [anon_sym_SLASH] = ACTIONS(295), [anon_sym_PERCENT] = ACTIONS(295), [anon_sym_as_QMARK] = ACTIONS(293), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(331), [anon_sym_BANG_BANG] = ACTIONS(293), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym__automatic_semicolon] = ACTIONS(293), [sym_safe_nav] = ACTIONS(293), @@ -32693,16 +32693,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(581), - [anon_sym_if] = ACTIONS(583), + [anon_sym_if] = ACTIONS(581), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS_EQ] = ACTIONS(121), [anon_sym_DASH_EQ] = ACTIONS(121), [anon_sym_STAR_EQ] = ACTIONS(121), @@ -32717,54 +32716,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(121), [anon_sym_is] = ACTIONS(123), [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), [anon_sym_SLASH] = ACTIONS(123), [anon_sym_PERCENT] = ACTIONS(123), [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(595), [anon_sym_BANG_BANG] = ACTIONS(121), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(613), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), [sym__backtick_identifier] = ACTIONS(623), [sym__automatic_semicolon] = ACTIONS(121), [sym_safe_nav] = ACTIONS(121), @@ -32889,16 +32889,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(289), [anon_sym_AMP_AMP] = ACTIONS(289), [anon_sym_PIPE_PIPE] = ACTIONS(289), - [anon_sym_null] = ACTIONS(581), - [anon_sym_if] = ACTIONS(583), + [anon_sym_if] = ACTIONS(581), [anon_sym_else] = ACTIONS(291), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS_EQ] = ACTIONS(289), [anon_sym_DASH_EQ] = ACTIONS(289), [anon_sym_STAR_EQ] = ACTIONS(289), @@ -32913,54 +32912,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(289), [anon_sym_is] = ACTIONS(291), [anon_sym_BANGis] = ACTIONS(289), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), [anon_sym_SLASH] = ACTIONS(291), [anon_sym_PERCENT] = ACTIONS(291), [anon_sym_as_QMARK] = ACTIONS(289), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(595), [anon_sym_BANG_BANG] = ACTIONS(289), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(613), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), [sym__backtick_identifier] = ACTIONS(623), [sym__automatic_semicolon] = ACTIONS(289), [sym_safe_nav] = ACTIONS(289), @@ -33085,16 +33085,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(449), - [anon_sym_if] = ACTIONS(451), + [anon_sym_if] = ACTIONS(449), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS_EQ] = ACTIONS(121), [anon_sym_DASH_EQ] = ACTIONS(121), [anon_sym_STAR_EQ] = ACTIONS(121), @@ -33109,54 +33108,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(121), [anon_sym_is] = ACTIONS(123), [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_DASH] = ACTIONS(455), [anon_sym_SLASH] = ACTIONS(123), [anon_sym_PERCENT] = ACTIONS(123), [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_BANG] = ACTIONS(455), [anon_sym_BANG_BANG] = ACTIONS(121), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(461), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(461), [sym__backtick_identifier] = ACTIONS(111), [sym__automatic_semicolon] = ACTIONS(121), [sym_safe_nav] = ACTIONS(121), @@ -33281,16 +33281,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(375), - [anon_sym_if] = ACTIONS(377), + [anon_sym_if] = ACTIONS(375), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS_EQ] = ACTIONS(121), [anon_sym_DASH_EQ] = ACTIONS(121), [anon_sym_STAR_EQ] = ACTIONS(121), @@ -33305,54 +33304,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(121), [anon_sym_is] = ACTIONS(123), [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), [anon_sym_SLASH] = ACTIONS(123), [anon_sym_PERCENT] = ACTIONS(123), [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(389), [anon_sym_BANG_BANG] = ACTIONS(121), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(395), - [anon_sym_inner] = ACTIONS(395), - [anon_sym_value] = ACTIONS(395), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(397), - [anon_sym_actual] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(409), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), [sym__backtick_identifier] = ACTIONS(419), [sym__automatic_semicolon] = ACTIONS(121), [sym_safe_nav] = ACTIONS(121), @@ -33476,16 +33476,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(289), [anon_sym_AMP_AMP] = ACTIONS(289), [anon_sym_PIPE_PIPE] = ACTIONS(289), - [anon_sym_null] = ACTIONS(157), [anon_sym_if] = ACTIONS(647), [anon_sym_else] = ACTIONS(291), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS_EQ] = ACTIONS(289), [anon_sym_DASH_EQ] = ACTIONS(289), [anon_sym_STAR_EQ] = ACTIONS(289), @@ -33509,45 +33508,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(655), [anon_sym_BANG] = ACTIONS(653), [anon_sym_BANG_BANG] = ACTIONS(289), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(191), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), [sym__backtick_identifier] = ACTIONS(201), [sym_safe_nav] = ACTIONS(289), [sym_multiline_comment] = ACTIONS(3), @@ -33669,16 +33669,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(289), [anon_sym_AMP_AMP] = ACTIONS(289), [anon_sym_PIPE_PIPE] = ACTIONS(289), - [anon_sym_null] = ACTIONS(449), - [anon_sym_if] = ACTIONS(55), + [anon_sym_if] = ACTIONS(53), [anon_sym_else] = ACTIONS(291), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS_EQ] = ACTIONS(289), [anon_sym_DASH_EQ] = ACTIONS(289), [anon_sym_STAR_EQ] = ACTIONS(289), @@ -33702,45 +33701,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(679), [anon_sym_BANG] = ACTIONS(677), [anon_sym_BANG_BANG] = ACTIONS(289), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(461), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(461), [sym__backtick_identifier] = ACTIONS(111), [sym__automatic_semicolon] = ACTIONS(289), [sym_safe_nav] = ACTIONS(289), @@ -33863,16 +33863,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(289), [anon_sym_AMP_AMP] = ACTIONS(289), [anon_sym_PIPE_PIPE] = ACTIONS(289), - [anon_sym_null] = ACTIONS(375), [anon_sym_if] = ACTIONS(701), [anon_sym_else] = ACTIONS(291), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS_EQ] = ACTIONS(289), [anon_sym_DASH_EQ] = ACTIONS(289), [anon_sym_STAR_EQ] = ACTIONS(289), @@ -33896,45 +33895,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(709), [anon_sym_BANG] = ACTIONS(707), [anon_sym_BANG_BANG] = ACTIONS(289), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(395), - [anon_sym_inner] = ACTIONS(395), - [anon_sym_value] = ACTIONS(395), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(397), - [anon_sym_actual] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(409), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), [sym__backtick_identifier] = ACTIONS(419), [sym__automatic_semicolon] = ACTIONS(289), [sym_safe_nav] = ACTIONS(289), @@ -34057,16 +34057,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(499), [anon_sym_if] = ACTIONS(731), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS_EQ] = ACTIONS(121), [anon_sym_DASH_EQ] = ACTIONS(121), [anon_sym_STAR_EQ] = ACTIONS(121), @@ -34090,45 +34089,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(739), [anon_sym_BANG] = ACTIONS(737), [anon_sym_BANG_BANG] = ACTIONS(121), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(519), - [anon_sym_inner] = ACTIONS(519), - [anon_sym_value] = ACTIONS(519), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(521), - [anon_sym_actual] = ACTIONS(521), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(531), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(517), + [anon_sym_inner] = ACTIONS(517), + [anon_sym_value] = ACTIONS(517), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(519), + [anon_sym_actual] = ACTIONS(519), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(529), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(539), [sym__backtick_identifier] = ACTIONS(541), [sym__automatic_semicolon] = ACTIONS(121), [sym_safe_nav] = ACTIONS(121), @@ -34251,16 +34251,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(289), [anon_sym_AMP_AMP] = ACTIONS(289), [anon_sym_PIPE_PIPE] = ACTIONS(289), - [anon_sym_null] = ACTIONS(499), [anon_sym_if] = ACTIONS(731), [anon_sym_else] = ACTIONS(291), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS_EQ] = ACTIONS(289), [anon_sym_DASH_EQ] = ACTIONS(289), [anon_sym_STAR_EQ] = ACTIONS(289), @@ -34284,45 +34283,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(739), [anon_sym_BANG] = ACTIONS(737), [anon_sym_BANG_BANG] = ACTIONS(289), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(519), - [anon_sym_inner] = ACTIONS(519), - [anon_sym_value] = ACTIONS(519), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(521), - [anon_sym_actual] = ACTIONS(521), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(531), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(517), + [anon_sym_inner] = ACTIONS(517), + [anon_sym_value] = ACTIONS(517), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(519), + [anon_sym_actual] = ACTIONS(519), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(529), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(539), [sym__backtick_identifier] = ACTIONS(541), [sym__automatic_semicolon] = ACTIONS(289), [sym_safe_nav] = ACTIONS(289), @@ -34446,16 +34446,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(325), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS_EQ] = ACTIONS(121), [anon_sym_DASH_EQ] = ACTIONS(121), [anon_sym_STAR_EQ] = ACTIONS(121), @@ -34479,45 +34478,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(763), [anon_sym_BANG] = ACTIONS(761), [anon_sym_BANG_BANG] = ACTIONS(121), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(275), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(283), [sym__backtick_identifier] = ACTIONS(285), [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), @@ -34640,16 +34640,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(289), [anon_sym_AMP_AMP] = ACTIONS(289), [anon_sym_PIPE_PIPE] = ACTIONS(289), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(325), [anon_sym_else] = ACTIONS(291), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS_EQ] = ACTIONS(289), [anon_sym_DASH_EQ] = ACTIONS(289), [anon_sym_STAR_EQ] = ACTIONS(289), @@ -34673,45 +34672,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(763), [anon_sym_BANG] = ACTIONS(761), [anon_sym_BANG_BANG] = ACTIONS(289), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(275), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(283), [sym__backtick_identifier] = ACTIONS(285), [sym_safe_nav] = ACTIONS(289), [sym_multiline_comment] = ACTIONS(3), @@ -34833,16 +34833,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(449), - [anon_sym_if] = ACTIONS(55), + [anon_sym_if] = ACTIONS(53), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS_EQ] = ACTIONS(121), [anon_sym_DASH_EQ] = ACTIONS(121), [anon_sym_STAR_EQ] = ACTIONS(121), @@ -34866,45 +34865,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(679), [anon_sym_BANG] = ACTIONS(677), [anon_sym_BANG_BANG] = ACTIONS(121), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(461), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(461), [sym__backtick_identifier] = ACTIONS(111), [sym__automatic_semicolon] = ACTIONS(121), [sym_safe_nav] = ACTIONS(121), @@ -35027,16 +35027,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(289), [anon_sym_AMP_AMP] = ACTIONS(289), [anon_sym_PIPE_PIPE] = ACTIONS(289), - [anon_sym_null] = ACTIONS(581), [anon_sym_if] = ACTIONS(785), [anon_sym_else] = ACTIONS(291), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS_EQ] = ACTIONS(289), [anon_sym_DASH_EQ] = ACTIONS(289), [anon_sym_STAR_EQ] = ACTIONS(289), @@ -35060,45 +35059,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(793), [anon_sym_BANG] = ACTIONS(791), [anon_sym_BANG_BANG] = ACTIONS(289), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(613), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), [sym__backtick_identifier] = ACTIONS(623), [sym__automatic_semicolon] = ACTIONS(289), [sym_safe_nav] = ACTIONS(289), @@ -35222,16 +35222,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(157), [anon_sym_if] = ACTIONS(647), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS_EQ] = ACTIONS(121), [anon_sym_DASH_EQ] = ACTIONS(121), [anon_sym_STAR_EQ] = ACTIONS(121), @@ -35255,45 +35254,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(655), [anon_sym_BANG] = ACTIONS(653), [anon_sym_BANG_BANG] = ACTIONS(121), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(191), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), [sym__backtick_identifier] = ACTIONS(201), [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), @@ -35415,16 +35415,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(375), [anon_sym_if] = ACTIONS(701), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS_EQ] = ACTIONS(121), [anon_sym_DASH_EQ] = ACTIONS(121), [anon_sym_STAR_EQ] = ACTIONS(121), @@ -35448,45 +35447,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(709), [anon_sym_BANG] = ACTIONS(707), [anon_sym_BANG_BANG] = ACTIONS(121), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(395), - [anon_sym_inner] = ACTIONS(395), - [anon_sym_value] = ACTIONS(395), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(397), - [anon_sym_actual] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(409), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), [sym__backtick_identifier] = ACTIONS(419), [sym__automatic_semicolon] = ACTIONS(121), [sym_safe_nav] = ACTIONS(121), @@ -35609,16 +35609,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(581), [anon_sym_if] = ACTIONS(785), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS_EQ] = ACTIONS(121), [anon_sym_DASH_EQ] = ACTIONS(121), [anon_sym_STAR_EQ] = ACTIONS(121), @@ -35642,45 +35641,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(793), [anon_sym_BANG] = ACTIONS(791), [anon_sym_BANG_BANG] = ACTIONS(121), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(613), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), [sym__backtick_identifier] = ACTIONS(623), [sym__automatic_semicolon] = ACTIONS(121), [sym_safe_nav] = ACTIONS(121), @@ -35807,16 +35807,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(817), - [anon_sym_if] = ACTIONS(159), + [anon_sym_if] = ACTIONS(157), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_BANG_EQ] = ACTIONS(123), [anon_sym_BANG_EQ_EQ] = ACTIONS(121), [anon_sym_EQ_EQ] = ACTIONS(123), @@ -35826,54 +35825,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(121), [anon_sym_is] = ACTIONS(123), [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), [anon_sym_SLASH] = ACTIONS(123), [anon_sym_PERCENT] = ACTIONS(121), [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(817), [anon_sym_BANG_BANG] = ACTIONS(121), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(823), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), [sym__backtick_identifier] = ACTIONS(201), [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), @@ -35999,16 +35999,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(243), + [anon_sym_if] = ACTIONS(241), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_BANG_EQ] = ACTIONS(123), [anon_sym_BANG_EQ_EQ] = ACTIONS(121), [anon_sym_EQ_EQ] = ACTIONS(123), @@ -36027,45 +36026,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(847), [anon_sym_BANG_BANG] = ACTIONS(121), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), @@ -36191,16 +36191,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(289), [anon_sym_AMP_AMP] = ACTIONS(289), [anon_sym_PIPE_PIPE] = ACTIONS(289), - [anon_sym_null] = ACTIONS(817), - [anon_sym_if] = ACTIONS(159), + [anon_sym_if] = ACTIONS(157), [anon_sym_else] = ACTIONS(291), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_BANG_EQ] = ACTIONS(291), [anon_sym_BANG_EQ_EQ] = ACTIONS(289), [anon_sym_EQ_EQ] = ACTIONS(291), @@ -36210,54 +36209,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(289), [anon_sym_is] = ACTIONS(291), [anon_sym_BANGis] = ACTIONS(289), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), [anon_sym_SLASH] = ACTIONS(291), [anon_sym_PERCENT] = ACTIONS(289), [anon_sym_as_QMARK] = ACTIONS(289), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(817), [anon_sym_BANG_BANG] = ACTIONS(289), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(823), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), [sym__backtick_identifier] = ACTIONS(201), [sym_safe_nav] = ACTIONS(289), [sym_multiline_comment] = ACTIONS(3), @@ -36383,16 +36383,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(289), [anon_sym_AMP_AMP] = ACTIONS(289), [anon_sym_PIPE_PIPE] = ACTIONS(289), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(243), + [anon_sym_if] = ACTIONS(241), [anon_sym_else] = ACTIONS(291), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_BANG_EQ] = ACTIONS(291), [anon_sym_BANG_EQ_EQ] = ACTIONS(289), [anon_sym_EQ_EQ] = ACTIONS(291), @@ -36411,45 +36410,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(847), [anon_sym_BANG_BANG] = ACTIONS(289), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym_safe_nav] = ACTIONS(289), [sym_multiline_comment] = ACTIONS(3), @@ -36572,16 +36572,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(873), - [anon_sym_if] = ACTIONS(583), + [anon_sym_if] = ACTIONS(581), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_BANG_EQ] = ACTIONS(123), [anon_sym_BANG_EQ_EQ] = ACTIONS(121), [anon_sym_EQ_EQ] = ACTIONS(123), @@ -36591,54 +36590,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(121), [anon_sym_is] = ACTIONS(123), [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), [anon_sym_SLASH] = ACTIONS(123), [anon_sym_PERCENT] = ACTIONS(121), [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(875), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(873), [anon_sym_BANG_BANG] = ACTIONS(121), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(879), [sym__backtick_identifier] = ACTIONS(623), [sym__automatic_semicolon] = ACTIONS(121), [sym_safe_nav] = ACTIONS(121), @@ -36762,16 +36762,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(289), [anon_sym_AMP_AMP] = ACTIONS(289), [anon_sym_PIPE_PIPE] = ACTIONS(289), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(451), + [anon_sym_if] = ACTIONS(449), [anon_sym_else] = ACTIONS(291), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_BANG_EQ] = ACTIONS(291), [anon_sym_BANG_EQ_EQ] = ACTIONS(289), [anon_sym_EQ_EQ] = ACTIONS(291), @@ -36790,45 +36789,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(905), [anon_sym_BANG] = ACTIONS(903), [anon_sym_BANG_BANG] = ACTIONS(289), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym__automatic_semicolon] = ACTIONS(289), [sym_safe_nav] = ACTIONS(289), @@ -36952,16 +36952,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(451), + [anon_sym_if] = ACTIONS(449), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_BANG_EQ] = ACTIONS(123), [anon_sym_BANG_EQ_EQ] = ACTIONS(121), [anon_sym_EQ_EQ] = ACTIONS(123), @@ -36980,45 +36979,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(905), [anon_sym_BANG] = ACTIONS(903), [anon_sym_BANG_BANG] = ACTIONS(121), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym__automatic_semicolon] = ACTIONS(121), [sym_safe_nav] = ACTIONS(121), @@ -37142,16 +37142,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(929), - [anon_sym_if] = ACTIONS(377), + [anon_sym_if] = ACTIONS(375), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_BANG_EQ] = ACTIONS(123), [anon_sym_BANG_EQ_EQ] = ACTIONS(121), [anon_sym_EQ_EQ] = ACTIONS(123), @@ -37161,54 +37160,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(121), [anon_sym_is] = ACTIONS(123), [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), [anon_sym_SLASH] = ACTIONS(123), [anon_sym_PERCENT] = ACTIONS(121), [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(929), [anon_sym_BANG_BANG] = ACTIONS(121), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(395), - [anon_sym_inner] = ACTIONS(395), - [anon_sym_value] = ACTIONS(395), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(397), - [anon_sym_actual] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(935), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(935), [sym__backtick_identifier] = ACTIONS(419), [sym__automatic_semicolon] = ACTIONS(121), [sym_safe_nav] = ACTIONS(121), @@ -37332,16 +37332,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(289), [anon_sym_AMP_AMP] = ACTIONS(289), [anon_sym_PIPE_PIPE] = ACTIONS(289), - [anon_sym_null] = ACTIONS(929), - [anon_sym_if] = ACTIONS(377), + [anon_sym_if] = ACTIONS(375), [anon_sym_else] = ACTIONS(291), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_BANG_EQ] = ACTIONS(291), [anon_sym_BANG_EQ_EQ] = ACTIONS(289), [anon_sym_EQ_EQ] = ACTIONS(291), @@ -37351,54 +37350,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(289), [anon_sym_is] = ACTIONS(291), [anon_sym_BANGis] = ACTIONS(289), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), [anon_sym_SLASH] = ACTIONS(291), [anon_sym_PERCENT] = ACTIONS(289), [anon_sym_as_QMARK] = ACTIONS(289), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(929), [anon_sym_BANG_BANG] = ACTIONS(289), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(395), - [anon_sym_inner] = ACTIONS(395), - [anon_sym_value] = ACTIONS(395), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(397), - [anon_sym_actual] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(935), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(935), [sym__backtick_identifier] = ACTIONS(419), [sym__automatic_semicolon] = ACTIONS(289), [sym_safe_nav] = ACTIONS(289), @@ -37522,16 +37522,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(289), [anon_sym_AMP_AMP] = ACTIONS(289), [anon_sym_PIPE_PIPE] = ACTIONS(289), - [anon_sym_null] = ACTIONS(873), - [anon_sym_if] = ACTIONS(583), + [anon_sym_if] = ACTIONS(581), [anon_sym_else] = ACTIONS(291), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_BANG_EQ] = ACTIONS(291), [anon_sym_BANG_EQ_EQ] = ACTIONS(289), [anon_sym_EQ_EQ] = ACTIONS(291), @@ -37541,54 +37540,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(289), [anon_sym_is] = ACTIONS(291), [anon_sym_BANGis] = ACTIONS(289), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), [anon_sym_SLASH] = ACTIONS(291), [anon_sym_PERCENT] = ACTIONS(289), [anon_sym_as_QMARK] = ACTIONS(289), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(875), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(873), [anon_sym_BANG_BANG] = ACTIONS(289), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(879), [sym__backtick_identifier] = ACTIONS(623), [sym__automatic_semicolon] = ACTIONS(289), [sym_safe_nav] = ACTIONS(289), @@ -37712,16 +37712,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(959), - [anon_sym_if] = ACTIONS(501), + [anon_sym_if] = ACTIONS(499), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_BANG_EQ] = ACTIONS(123), [anon_sym_BANG_EQ_EQ] = ACTIONS(121), [anon_sym_EQ_EQ] = ACTIONS(123), @@ -37731,54 +37730,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(121), [anon_sym_is] = ACTIONS(123), [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), [anon_sym_SLASH] = ACTIONS(123), [anon_sym_PERCENT] = ACTIONS(121), [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(959), [anon_sym_BANG_BANG] = ACTIONS(121), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(519), - [anon_sym_inner] = ACTIONS(519), - [anon_sym_value] = ACTIONS(519), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(521), - [anon_sym_actual] = ACTIONS(521), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(965), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(517), + [anon_sym_inner] = ACTIONS(517), + [anon_sym_value] = ACTIONS(517), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(519), + [anon_sym_actual] = ACTIONS(519), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(965), [sym__backtick_identifier] = ACTIONS(541), [sym__automatic_semicolon] = ACTIONS(121), [sym_safe_nav] = ACTIONS(121), @@ -37902,16 +37902,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(289), [anon_sym_AMP_AMP] = ACTIONS(289), [anon_sym_PIPE_PIPE] = ACTIONS(289), - [anon_sym_null] = ACTIONS(959), - [anon_sym_if] = ACTIONS(501), + [anon_sym_if] = ACTIONS(499), [anon_sym_else] = ACTIONS(291), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_BANG_EQ] = ACTIONS(291), [anon_sym_BANG_EQ_EQ] = ACTIONS(289), [anon_sym_EQ_EQ] = ACTIONS(291), @@ -37921,54 +37920,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(289), [anon_sym_is] = ACTIONS(291), [anon_sym_BANGis] = ACTIONS(289), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), [anon_sym_SLASH] = ACTIONS(291), [anon_sym_PERCENT] = ACTIONS(289), [anon_sym_as_QMARK] = ACTIONS(289), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(959), [anon_sym_BANG_BANG] = ACTIONS(289), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(519), - [anon_sym_inner] = ACTIONS(519), - [anon_sym_value] = ACTIONS(519), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(521), - [anon_sym_actual] = ACTIONS(521), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(965), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(517), + [anon_sym_inner] = ACTIONS(517), + [anon_sym_value] = ACTIONS(517), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(519), + [anon_sym_actual] = ACTIONS(519), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(965), [sym__backtick_identifier] = ACTIONS(541), [sym__automatic_semicolon] = ACTIONS(289), [sym_safe_nav] = ACTIONS(289), @@ -38091,16 +38091,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(289), [anon_sym_AMP_AMP] = ACTIONS(289), [anon_sym_PIPE_PIPE] = ACTIONS(289), - [anon_sym_null] = ACTIONS(817), [anon_sym_if] = ACTIONS(647), [anon_sym_else] = ACTIONS(291), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_BANG_EQ] = ACTIONS(291), [anon_sym_BANG_EQ_EQ] = ACTIONS(289), [anon_sym_EQ_EQ] = ACTIONS(291), @@ -38119,45 +38118,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(989), [anon_sym_BANG] = ACTIONS(987), [anon_sym_BANG_BANG] = ACTIONS(289), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(823), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), [sym__backtick_identifier] = ACTIONS(201), [sym_safe_nav] = ACTIONS(289), [sym_multiline_comment] = ACTIONS(3), @@ -38278,16 +38278,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(289), [anon_sym_AMP_AMP] = ACTIONS(289), [anon_sym_PIPE_PIPE] = ACTIONS(289), - [anon_sym_null] = ACTIONS(959), [anon_sym_if] = ACTIONS(731), [anon_sym_else] = ACTIONS(291), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_BANG_EQ] = ACTIONS(291), [anon_sym_BANG_EQ_EQ] = ACTIONS(289), [anon_sym_EQ_EQ] = ACTIONS(291), @@ -38306,45 +38305,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1013), [anon_sym_BANG] = ACTIONS(1011), [anon_sym_BANG_BANG] = ACTIONS(289), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(519), - [anon_sym_inner] = ACTIONS(519), - [anon_sym_value] = ACTIONS(519), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(521), - [anon_sym_actual] = ACTIONS(521), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(965), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(517), + [anon_sym_inner] = ACTIONS(517), + [anon_sym_value] = ACTIONS(517), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(519), + [anon_sym_actual] = ACTIONS(519), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(965), [sym__backtick_identifier] = ACTIONS(541), [sym__automatic_semicolon] = ACTIONS(289), [sym_safe_nav] = ACTIONS(289), @@ -38466,16 +38466,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(959), [anon_sym_if] = ACTIONS(731), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_BANG_EQ] = ACTIONS(123), [anon_sym_BANG_EQ_EQ] = ACTIONS(121), [anon_sym_EQ_EQ] = ACTIONS(123), @@ -38494,45 +38493,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1013), [anon_sym_BANG] = ACTIONS(1011), [anon_sym_BANG_BANG] = ACTIONS(121), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(519), - [anon_sym_inner] = ACTIONS(519), - [anon_sym_value] = ACTIONS(519), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(521), - [anon_sym_actual] = ACTIONS(521), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(965), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(517), + [anon_sym_inner] = ACTIONS(517), + [anon_sym_value] = ACTIONS(517), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(519), + [anon_sym_actual] = ACTIONS(519), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(965), [sym__backtick_identifier] = ACTIONS(541), [sym__automatic_semicolon] = ACTIONS(121), [sym_safe_nav] = ACTIONS(121), @@ -38654,16 +38654,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(289), [anon_sym_AMP_AMP] = ACTIONS(289), [anon_sym_PIPE_PIPE] = ACTIONS(289), - [anon_sym_null] = ACTIONS(929), [anon_sym_if] = ACTIONS(701), [anon_sym_else] = ACTIONS(291), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_BANG_EQ] = ACTIONS(291), [anon_sym_BANG_EQ_EQ] = ACTIONS(289), [anon_sym_EQ_EQ] = ACTIONS(291), @@ -38682,45 +38681,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1037), [anon_sym_BANG] = ACTIONS(1035), [anon_sym_BANG_BANG] = ACTIONS(289), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(395), - [anon_sym_inner] = ACTIONS(395), - [anon_sym_value] = ACTIONS(395), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(397), - [anon_sym_actual] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(935), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(935), [sym__backtick_identifier] = ACTIONS(419), [sym__automatic_semicolon] = ACTIONS(289), [sym_safe_nav] = ACTIONS(289), @@ -38842,16 +38842,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(929), [anon_sym_if] = ACTIONS(701), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_BANG_EQ] = ACTIONS(123), [anon_sym_BANG_EQ_EQ] = ACTIONS(121), [anon_sym_EQ_EQ] = ACTIONS(123), @@ -38870,45 +38869,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1037), [anon_sym_BANG] = ACTIONS(1035), [anon_sym_BANG_BANG] = ACTIONS(121), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(395), - [anon_sym_inner] = ACTIONS(395), - [anon_sym_value] = ACTIONS(395), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(397), - [anon_sym_actual] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(935), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(935), [sym__backtick_identifier] = ACTIONS(419), [sym__automatic_semicolon] = ACTIONS(121), [sym_safe_nav] = ACTIONS(121), @@ -39031,16 +39031,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(289), [anon_sym_AMP_AMP] = ACTIONS(289), [anon_sym_PIPE_PIPE] = ACTIONS(289), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(325), [anon_sym_else] = ACTIONS(291), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_BANG_EQ] = ACTIONS(291), [anon_sym_BANG_EQ_EQ] = ACTIONS(289), [anon_sym_EQ_EQ] = ACTIONS(291), @@ -39050,54 +39049,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(289), [anon_sym_is] = ACTIONS(291), [anon_sym_BANGis] = ACTIONS(289), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), [anon_sym_SLASH] = ACTIONS(291), [anon_sym_PERCENT] = ACTIONS(289), [anon_sym_as_QMARK] = ACTIONS(289), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(331), [anon_sym_BANG_BANG] = ACTIONS(289), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym_safe_nav] = ACTIONS(289), [sym_multiline_comment] = ACTIONS(3), @@ -39219,16 +39219,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(325), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_BANG_EQ] = ACTIONS(123), [anon_sym_BANG_EQ_EQ] = ACTIONS(121), [anon_sym_EQ_EQ] = ACTIONS(123), @@ -39238,54 +39237,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(121), [anon_sym_is] = ACTIONS(123), [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), [anon_sym_SLASH] = ACTIONS(123), [anon_sym_PERCENT] = ACTIONS(121), [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(331), [anon_sym_BANG_BANG] = ACTIONS(121), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), @@ -39407,16 +39407,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(817), [anon_sym_if] = ACTIONS(647), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_BANG_EQ] = ACTIONS(123), [anon_sym_BANG_EQ_EQ] = ACTIONS(121), [anon_sym_EQ_EQ] = ACTIONS(123), @@ -39435,45 +39434,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(989), [anon_sym_BANG] = ACTIONS(987), [anon_sym_BANG_BANG] = ACTIONS(121), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(823), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), [sym__backtick_identifier] = ACTIONS(201), [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), @@ -39594,16 +39594,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(289), [anon_sym_AMP_AMP] = ACTIONS(289), [anon_sym_PIPE_PIPE] = ACTIONS(289), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_if] = ACTIONS(53), [anon_sym_else] = ACTIONS(291), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_BANG_EQ] = ACTIONS(291), [anon_sym_BANG_EQ_EQ] = ACTIONS(289), [anon_sym_EQ_EQ] = ACTIONS(291), @@ -39613,54 +39612,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(289), [anon_sym_is] = ACTIONS(291), [anon_sym_BANGis] = ACTIONS(289), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_SLASH] = ACTIONS(291), [anon_sym_PERCENT] = ACTIONS(289), [anon_sym_as_QMARK] = ACTIONS(289), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(67), [anon_sym_BANG_BANG] = ACTIONS(289), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym__automatic_semicolon] = ACTIONS(289), [sym_safe_nav] = ACTIONS(289), @@ -39782,16 +39782,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(289), [anon_sym_AMP_AMP] = ACTIONS(289), [anon_sym_PIPE_PIPE] = ACTIONS(289), - [anon_sym_null] = ACTIONS(873), [anon_sym_if] = ACTIONS(785), [anon_sym_else] = ACTIONS(291), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_BANG_EQ] = ACTIONS(291), [anon_sym_BANG_EQ_EQ] = ACTIONS(289), [anon_sym_EQ_EQ] = ACTIONS(291), @@ -39810,45 +39809,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1095), [anon_sym_BANG] = ACTIONS(1093), [anon_sym_BANG_BANG] = ACTIONS(289), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(879), [sym__backtick_identifier] = ACTIONS(623), [sym__automatic_semicolon] = ACTIONS(289), [sym_safe_nav] = ACTIONS(289), @@ -39970,16 +39970,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(873), [anon_sym_if] = ACTIONS(785), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_BANG_EQ] = ACTIONS(123), [anon_sym_BANG_EQ_EQ] = ACTIONS(121), [anon_sym_EQ_EQ] = ACTIONS(123), @@ -39998,45 +39997,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1095), [anon_sym_BANG] = ACTIONS(1093), [anon_sym_BANG_BANG] = ACTIONS(121), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(879), [sym__backtick_identifier] = ACTIONS(623), [sym__automatic_semicolon] = ACTIONS(121), [sym_safe_nav] = ACTIONS(121), @@ -40158,16 +40158,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_if] = ACTIONS(53), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_BANG_EQ] = ACTIONS(123), [anon_sym_BANG_EQ_EQ] = ACTIONS(121), [anon_sym_EQ_EQ] = ACTIONS(123), @@ -40177,54 +40176,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(121), [anon_sym_is] = ACTIONS(123), [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_SLASH] = ACTIONS(123), [anon_sym_PERCENT] = ACTIONS(121), [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(67), [anon_sym_BANG_BANG] = ACTIONS(121), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym__automatic_semicolon] = ACTIONS(121), [sym_safe_nav] = ACTIONS(121), @@ -40344,59 +40344,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -40514,59 +40514,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -40684,59 +40684,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -40848,63 +40848,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(295), [anon_sym_while] = ACTIONS(321), [anon_sym_do] = ACTIONS(323), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(325), [anon_sym_else] = ACTIONS(295), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_BANGin] = ACTIONS(293), [anon_sym_is] = ACTIONS(295), [anon_sym_BANGis] = ACTIONS(293), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(333), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym__automatic_semicolon] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), @@ -41016,16 +41016,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(123), [anon_sym_while] = ACTIONS(1119), [anon_sym_do] = ACTIONS(1121), - [anon_sym_null] = ACTIONS(873), [anon_sym_if] = ACTIONS(785), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_BANGin] = ACTIONS(121), [anon_sym_is] = ACTIONS(123), [anon_sym_BANGis] = ACTIONS(121), @@ -41034,45 +41033,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1095), [anon_sym_DASH_DASH] = ACTIONS(1095), [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(879), [sym__backtick_identifier] = ACTIONS(623), [sym__automatic_semicolon] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), @@ -41184,16 +41184,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(291), [anon_sym_while] = ACTIONS(1119), [anon_sym_do] = ACTIONS(1121), - [anon_sym_null] = ACTIONS(873), [anon_sym_if] = ACTIONS(785), [anon_sym_else] = ACTIONS(291), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_BANGin] = ACTIONS(289), [anon_sym_is] = ACTIONS(291), [anon_sym_BANGis] = ACTIONS(289), @@ -41202,45 +41201,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1095), [anon_sym_DASH_DASH] = ACTIONS(1095), [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(879), [sym__backtick_identifier] = ACTIONS(623), [sym__automatic_semicolon] = ACTIONS(289), [sym_multiline_comment] = ACTIONS(3), @@ -41355,59 +41355,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -41521,59 +41521,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -41687,59 +41687,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -41853,59 +41853,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -42019,59 +42019,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -42185,59 +42185,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -42351,59 +42351,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -42517,59 +42517,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -42683,59 +42683,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -42849,59 +42849,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -43015,59 +43015,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -43181,59 +43181,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -43347,59 +43347,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -43513,59 +43513,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -43679,59 +43679,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -43845,59 +43845,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -44011,59 +44011,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -44177,59 +44177,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -44343,59 +44343,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -44509,59 +44509,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -44675,59 +44675,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -44841,59 +44841,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -45007,59 +45007,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -45173,59 +45173,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -45339,59 +45339,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -45505,59 +45505,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -45671,59 +45671,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -45837,59 +45837,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -46000,59 +46000,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(319), [anon_sym_while] = ACTIONS(321), [anon_sym_do] = ACTIONS(323), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym__automatic_semicolon] = ACTIONS(293), [sym_multiline_comment] = ACTIONS(3), @@ -46163,60 +46163,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(235), [anon_sym_while] = ACTIONS(237), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(243), + [anon_sym_if] = ACTIONS(241), [anon_sym_else] = ACTIONS(1187), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(275), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(257), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(283), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -46326,60 +46326,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(575), [anon_sym_while] = ACTIONS(577), [anon_sym_do] = ACTIONS(579), - [anon_sym_null] = ACTIONS(581), - [anon_sym_if] = ACTIONS(583), + [anon_sym_if] = ACTIONS(581), [anon_sym_else] = ACTIONS(1193), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(599), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(613), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -46489,60 +46489,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_do] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [anon_sym_if] = ACTIONS(377), + [anon_sym_if] = ACTIONS(375), [anon_sym_else] = ACTIONS(1199), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(395), - [anon_sym_inner] = ACTIONS(395), - [anon_sym_value] = ACTIONS(395), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(397), - [anon_sym_actual] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(409), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -46652,60 +46652,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1031), [anon_sym_while] = ACTIONS(1033), [anon_sym_do] = ACTIONS(373), - [anon_sym_null] = ACTIONS(929), [anon_sym_if] = ACTIONS(701), [anon_sym_else] = ACTIONS(1203), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), [anon_sym_DASH_DASH] = ACTIONS(1037), [anon_sym_BANG] = ACTIONS(1037), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(395), - [anon_sym_inner] = ACTIONS(395), - [anon_sym_value] = ACTIONS(395), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(397), - [anon_sym_actual] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(935), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(935), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -46815,59 +46815,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym__automatic_semicolon] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), @@ -46978,60 +46978,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(697), [anon_sym_while] = ACTIONS(699), [anon_sym_do] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), [anon_sym_if] = ACTIONS(701), [anon_sym_else] = ACTIONS(1211), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), [anon_sym_DASH_DASH] = ACTIONS(709), [anon_sym_BANG] = ACTIONS(709), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(395), - [anon_sym_inner] = ACTIONS(395), - [anon_sym_value] = ACTIONS(395), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(397), - [anon_sym_actual] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(409), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -47141,60 +47141,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(869), [anon_sym_while] = ACTIONS(871), [anon_sym_do] = ACTIONS(579), - [anon_sym_null] = ACTIONS(873), - [anon_sym_if] = ACTIONS(583), + [anon_sym_if] = ACTIONS(581), [anon_sym_else] = ACTIONS(1215), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(879), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -47304,60 +47304,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(843), [anon_sym_while] = ACTIONS(845), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(243), + [anon_sym_if] = ACTIONS(241), [anon_sym_else] = ACTIONS(1219), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), [anon_sym_DASH_DASH] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(849), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -47467,60 +47467,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1089), [anon_sym_while] = ACTIONS(1091), [anon_sym_do] = ACTIONS(579), - [anon_sym_null] = ACTIONS(873), [anon_sym_if] = ACTIONS(785), [anon_sym_else] = ACTIONS(1223), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(1093), [anon_sym_DASH] = ACTIONS(1093), [anon_sym_PLUS_PLUS] = ACTIONS(1095), [anon_sym_DASH_DASH] = ACTIONS(1095), [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(879), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -47630,59 +47630,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym__automatic_semicolon] = ACTIONS(289), [sym_multiline_comment] = ACTIONS(3), @@ -47793,60 +47793,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(443), [anon_sym_while] = ACTIONS(445), [anon_sym_do] = ACTIONS(447), - [anon_sym_null] = ACTIONS(449), - [anon_sym_if] = ACTIONS(451), + [anon_sym_if] = ACTIONS(449), [anon_sym_else] = ACTIONS(1229), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(461), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_BANG] = ACTIONS(457), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(461), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -47956,60 +47956,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(151), [anon_sym_while] = ACTIONS(153), [anon_sym_do] = ACTIONS(155), - [anon_sym_null] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), + [anon_sym_if] = ACTIONS(157), [anon_sym_else] = ACTIONS(1235), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(191), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -48119,60 +48119,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(643), [anon_sym_while] = ACTIONS(645), [anon_sym_do] = ACTIONS(155), - [anon_sym_null] = ACTIONS(157), [anon_sym_if] = ACTIONS(647), [anon_sym_else] = ACTIONS(1241), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), [anon_sym_DASH_DASH] = ACTIONS(655), [anon_sym_BANG] = ACTIONS(655), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(191), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -48282,60 +48282,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(727), [anon_sym_while] = ACTIONS(729), [anon_sym_do] = ACTIONS(497), - [anon_sym_null] = ACTIONS(499), [anon_sym_if] = ACTIONS(731), [anon_sym_else] = ACTIONS(1247), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), [anon_sym_DASH_DASH] = ACTIONS(739), [anon_sym_BANG] = ACTIONS(739), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(519), - [anon_sym_inner] = ACTIONS(519), - [anon_sym_value] = ACTIONS(519), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(521), - [anon_sym_actual] = ACTIONS(521), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(531), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(517), + [anon_sym_inner] = ACTIONS(517), + [anon_sym_value] = ACTIONS(517), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(519), + [anon_sym_actual] = ACTIONS(519), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(529), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(539), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -48445,60 +48445,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(781), [anon_sym_while] = ACTIONS(783), [anon_sym_do] = ACTIONS(579), - [anon_sym_null] = ACTIONS(581), [anon_sym_if] = ACTIONS(785), [anon_sym_else] = ACTIONS(1253), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(791), [anon_sym_DASH] = ACTIONS(791), [anon_sym_PLUS_PLUS] = ACTIONS(793), [anon_sym_DASH_DASH] = ACTIONS(793), [anon_sym_BANG] = ACTIONS(793), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(613), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -48608,60 +48608,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(493), [anon_sym_while] = ACTIONS(495), [anon_sym_do] = ACTIONS(497), - [anon_sym_null] = ACTIONS(499), - [anon_sym_if] = ACTIONS(501), + [anon_sym_if] = ACTIONS(499), [anon_sym_else] = ACTIONS(1259), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(519), - [anon_sym_inner] = ACTIONS(519), - [anon_sym_value] = ACTIONS(519), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(521), - [anon_sym_actual] = ACTIONS(521), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(531), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(517), + [anon_sym_inner] = ACTIONS(517), + [anon_sym_value] = ACTIONS(517), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(519), + [anon_sym_actual] = ACTIONS(519), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(529), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(539), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -48771,60 +48771,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(757), [anon_sym_while] = ACTIONS(759), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(325), [anon_sym_else] = ACTIONS(1265), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(761), [anon_sym_DASH] = ACTIONS(761), [anon_sym_PLUS_PLUS] = ACTIONS(763), [anon_sym_DASH_DASH] = ACTIONS(763), [anon_sym_BANG] = ACTIONS(763), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(275), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(283), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -48934,60 +48934,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1053), [anon_sym_while] = ACTIONS(1055), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(325), [anon_sym_else] = ACTIONS(1269), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -49097,60 +49097,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(983), [anon_sym_while] = ACTIONS(985), [anon_sym_do] = ACTIONS(155), - [anon_sym_null] = ACTIONS(817), [anon_sym_if] = ACTIONS(647), [anon_sym_else] = ACTIONS(1273), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), [anon_sym_DASH_DASH] = ACTIONS(989), [anon_sym_BANG] = ACTIONS(989), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(823), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -49260,60 +49260,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(899), [anon_sym_while] = ACTIONS(901), [anon_sym_do] = ACTIONS(447), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(451), + [anon_sym_if] = ACTIONS(449), [anon_sym_else] = ACTIONS(1277), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(903), [anon_sym_DASH] = ACTIONS(903), [anon_sym_PLUS_PLUS] = ACTIONS(905), [anon_sym_DASH_DASH] = ACTIONS(905), [anon_sym_BANG] = ACTIONS(905), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -49423,60 +49423,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(925), [anon_sym_while] = ACTIONS(927), [anon_sym_do] = ACTIONS(373), - [anon_sym_null] = ACTIONS(929), - [anon_sym_if] = ACTIONS(377), + [anon_sym_if] = ACTIONS(375), [anon_sym_else] = ACTIONS(1281), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(395), - [anon_sym_inner] = ACTIONS(395), - [anon_sym_value] = ACTIONS(395), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(397), - [anon_sym_actual] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(935), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(935), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -49586,60 +49586,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(955), [anon_sym_while] = ACTIONS(957), [anon_sym_do] = ACTIONS(497), - [anon_sym_null] = ACTIONS(959), - [anon_sym_if] = ACTIONS(501), + [anon_sym_if] = ACTIONS(499), [anon_sym_else] = ACTIONS(1285), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(519), - [anon_sym_inner] = ACTIONS(519), - [anon_sym_value] = ACTIONS(519), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(521), - [anon_sym_actual] = ACTIONS(521), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(965), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(517), + [anon_sym_inner] = ACTIONS(517), + [anon_sym_value] = ACTIONS(517), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(519), + [anon_sym_actual] = ACTIONS(519), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(965), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -49749,60 +49749,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(673), [anon_sym_while] = ACTIONS(675), [anon_sym_do] = ACTIONS(447), - [anon_sym_null] = ACTIONS(449), - [anon_sym_if] = ACTIONS(55), + [anon_sym_if] = ACTIONS(53), [anon_sym_else] = ACTIONS(1291), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(677), [anon_sym_DASH] = ACTIONS(677), [anon_sym_PLUS_PLUS] = ACTIONS(679), [anon_sym_DASH_DASH] = ACTIONS(679), [anon_sym_BANG] = ACTIONS(679), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(461), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(461), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -49912,60 +49912,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1007), [anon_sym_while] = ACTIONS(1009), [anon_sym_do] = ACTIONS(497), - [anon_sym_null] = ACTIONS(959), [anon_sym_if] = ACTIONS(731), [anon_sym_else] = ACTIONS(1295), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), [anon_sym_DASH_DASH] = ACTIONS(1013), [anon_sym_BANG] = ACTIONS(1013), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(519), - [anon_sym_inner] = ACTIONS(519), - [anon_sym_value] = ACTIONS(519), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(521), - [anon_sym_actual] = ACTIONS(521), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(965), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(517), + [anon_sym_inner] = ACTIONS(517), + [anon_sym_value] = ACTIONS(517), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(519), + [anon_sym_actual] = ACTIONS(519), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(965), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -50075,60 +50075,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1069), [anon_sym_while] = ACTIONS(1071), [anon_sym_do] = ACTIONS(447), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_if] = ACTIONS(53), [anon_sym_else] = ACTIONS(1299), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -50238,60 +50238,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(813), [anon_sym_while] = ACTIONS(815), [anon_sym_do] = ACTIONS(155), - [anon_sym_null] = ACTIONS(817), - [anon_sym_if] = ACTIONS(159), + [anon_sym_if] = ACTIONS(157), [anon_sym_else] = ACTIONS(1303), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(823), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -50401,59 +50401,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1031), [anon_sym_while] = ACTIONS(1033), [anon_sym_do] = ACTIONS(373), - [anon_sym_null] = ACTIONS(929), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), [anon_sym_DASH_DASH] = ACTIONS(1037), [anon_sym_BANG] = ACTIONS(1037), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(395), - [anon_sym_inner] = ACTIONS(395), - [anon_sym_value] = ACTIONS(395), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(397), - [anon_sym_actual] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(935), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(935), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -50563,59 +50563,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(757), [anon_sym_while] = ACTIONS(759), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(761), [anon_sym_DASH] = ACTIONS(761), [anon_sym_PLUS_PLUS] = ACTIONS(763), [anon_sym_DASH_DASH] = ACTIONS(763), [anon_sym_BANG] = ACTIONS(763), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(275), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(283), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -50725,59 +50725,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1031), [anon_sym_while] = ACTIONS(1033), [anon_sym_do] = ACTIONS(373), - [anon_sym_null] = ACTIONS(929), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), [anon_sym_DASH_DASH] = ACTIONS(1037), [anon_sym_BANG] = ACTIONS(1037), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(395), - [anon_sym_inner] = ACTIONS(395), - [anon_sym_value] = ACTIONS(395), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(397), - [anon_sym_actual] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(935), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(935), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -50887,59 +50887,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_do] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(395), - [anon_sym_inner] = ACTIONS(395), - [anon_sym_value] = ACTIONS(395), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(397), - [anon_sym_actual] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(409), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -51049,59 +51049,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_do] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(395), - [anon_sym_inner] = ACTIONS(395), - [anon_sym_value] = ACTIONS(395), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(397), - [anon_sym_actual] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(409), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -51211,59 +51211,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(493), [anon_sym_while] = ACTIONS(495), [anon_sym_do] = ACTIONS(497), - [anon_sym_null] = ACTIONS(499), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(519), - [anon_sym_inner] = ACTIONS(519), - [anon_sym_value] = ACTIONS(519), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(521), - [anon_sym_actual] = ACTIONS(521), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(531), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(517), + [anon_sym_inner] = ACTIONS(517), + [anon_sym_value] = ACTIONS(517), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(519), + [anon_sym_actual] = ACTIONS(519), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(529), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(539), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -51373,59 +51373,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -51535,59 +51535,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(925), [anon_sym_while] = ACTIONS(927), [anon_sym_do] = ACTIONS(373), - [anon_sym_null] = ACTIONS(929), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(395), - [anon_sym_inner] = ACTIONS(395), - [anon_sym_value] = ACTIONS(395), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(397), - [anon_sym_actual] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(935), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(935), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -51697,59 +51697,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1007), [anon_sym_while] = ACTIONS(1009), [anon_sym_do] = ACTIONS(497), - [anon_sym_null] = ACTIONS(959), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), [anon_sym_DASH_DASH] = ACTIONS(1013), [anon_sym_BANG] = ACTIONS(1013), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(519), - [anon_sym_inner] = ACTIONS(519), - [anon_sym_value] = ACTIONS(519), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(521), - [anon_sym_actual] = ACTIONS(521), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(965), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(517), + [anon_sym_inner] = ACTIONS(517), + [anon_sym_value] = ACTIONS(517), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(519), + [anon_sym_actual] = ACTIONS(519), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(965), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -51859,59 +51859,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(151), [anon_sym_while] = ACTIONS(153), [anon_sym_do] = ACTIONS(155), - [anon_sym_null] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(191), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -52021,59 +52021,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1007), [anon_sym_while] = ACTIONS(1009), [anon_sym_do] = ACTIONS(497), - [anon_sym_null] = ACTIONS(959), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), [anon_sym_DASH_DASH] = ACTIONS(1013), [anon_sym_BANG] = ACTIONS(1013), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(519), - [anon_sym_inner] = ACTIONS(519), - [anon_sym_value] = ACTIONS(519), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(521), - [anon_sym_actual] = ACTIONS(521), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(965), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(517), + [anon_sym_inner] = ACTIONS(517), + [anon_sym_value] = ACTIONS(517), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(519), + [anon_sym_actual] = ACTIONS(519), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(965), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -52183,59 +52183,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(575), [anon_sym_while] = ACTIONS(577), [anon_sym_do] = ACTIONS(579), - [anon_sym_null] = ACTIONS(581), - [anon_sym_if] = ACTIONS(583), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(599), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(613), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -52345,59 +52345,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(869), [anon_sym_while] = ACTIONS(871), [anon_sym_do] = ACTIONS(579), - [anon_sym_null] = ACTIONS(873), - [anon_sym_if] = ACTIONS(583), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(879), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -52507,59 +52507,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_do] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(395), - [anon_sym_inner] = ACTIONS(395), - [anon_sym_value] = ACTIONS(395), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(397), - [anon_sym_actual] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(409), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -52669,59 +52669,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(813), [anon_sym_while] = ACTIONS(815), [anon_sym_do] = ACTIONS(155), - [anon_sym_null] = ACTIONS(817), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(823), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -52831,59 +52831,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1117), [anon_sym_while] = ACTIONS(1119), [anon_sym_do] = ACTIONS(1121), - [anon_sym_null] = ACTIONS(873), [anon_sym_if] = ACTIONS(785), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(1093), [anon_sym_DASH] = ACTIONS(1093), [anon_sym_PLUS_PLUS] = ACTIONS(1095), [anon_sym_DASH_DASH] = ACTIONS(1095), [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(879), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -52993,59 +52993,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(955), [anon_sym_while] = ACTIONS(957), [anon_sym_do] = ACTIONS(497), - [anon_sym_null] = ACTIONS(959), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(519), - [anon_sym_inner] = ACTIONS(519), - [anon_sym_value] = ACTIONS(519), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(521), - [anon_sym_actual] = ACTIONS(521), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(965), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(517), + [anon_sym_inner] = ACTIONS(517), + [anon_sym_value] = ACTIONS(517), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(519), + [anon_sym_actual] = ACTIONS(519), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(965), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -53155,59 +53155,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(925), [anon_sym_while] = ACTIONS(927), [anon_sym_do] = ACTIONS(373), - [anon_sym_null] = ACTIONS(929), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(395), - [anon_sym_inner] = ACTIONS(395), - [anon_sym_value] = ACTIONS(395), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(397), - [anon_sym_actual] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(935), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(935), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -53317,59 +53317,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(925), [anon_sym_while] = ACTIONS(927), [anon_sym_do] = ACTIONS(373), - [anon_sym_null] = ACTIONS(929), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(395), - [anon_sym_inner] = ACTIONS(395), - [anon_sym_value] = ACTIONS(395), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(397), - [anon_sym_actual] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(935), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(935), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -53479,59 +53479,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(925), [anon_sym_while] = ACTIONS(927), [anon_sym_do] = ACTIONS(373), - [anon_sym_null] = ACTIONS(929), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(395), - [anon_sym_inner] = ACTIONS(395), - [anon_sym_value] = ACTIONS(395), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(397), - [anon_sym_actual] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(935), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(935), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -53641,59 +53641,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(983), [anon_sym_while] = ACTIONS(985), [anon_sym_do] = ACTIONS(155), - [anon_sym_null] = ACTIONS(817), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), [anon_sym_DASH_DASH] = ACTIONS(989), [anon_sym_BANG] = ACTIONS(989), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(823), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -53803,59 +53803,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(575), [anon_sym_while] = ACTIONS(577), [anon_sym_do] = ACTIONS(579), - [anon_sym_null] = ACTIONS(581), - [anon_sym_if] = ACTIONS(583), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(599), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(613), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -53965,59 +53965,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(575), [anon_sym_while] = ACTIONS(577), [anon_sym_do] = ACTIONS(579), - [anon_sym_null] = ACTIONS(581), - [anon_sym_if] = ACTIONS(583), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(599), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(613), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -54127,59 +54127,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(983), [anon_sym_while] = ACTIONS(985), [anon_sym_do] = ACTIONS(155), - [anon_sym_null] = ACTIONS(817), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), [anon_sym_DASH_DASH] = ACTIONS(989), [anon_sym_BANG] = ACTIONS(989), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(823), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -54289,59 +54289,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(575), [anon_sym_while] = ACTIONS(577), [anon_sym_do] = ACTIONS(579), - [anon_sym_null] = ACTIONS(581), - [anon_sym_if] = ACTIONS(583), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(599), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(613), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -54451,59 +54451,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(983), [anon_sym_while] = ACTIONS(985), [anon_sym_do] = ACTIONS(155), - [anon_sym_null] = ACTIONS(817), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), [anon_sym_DASH_DASH] = ACTIONS(989), [anon_sym_BANG] = ACTIONS(989), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(823), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -54613,59 +54613,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1053), [anon_sym_while] = ACTIONS(1055), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -54775,59 +54775,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(813), [anon_sym_while] = ACTIONS(815), [anon_sym_do] = ACTIONS(155), - [anon_sym_null] = ACTIONS(817), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(823), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -54937,59 +54937,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(813), [anon_sym_while] = ACTIONS(815), [anon_sym_do] = ACTIONS(155), - [anon_sym_null] = ACTIONS(817), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(823), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -55099,59 +55099,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(813), [anon_sym_while] = ACTIONS(815), [anon_sym_do] = ACTIONS(155), - [anon_sym_null] = ACTIONS(817), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(823), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -55261,59 +55261,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(673), [anon_sym_while] = ACTIONS(675), [anon_sym_do] = ACTIONS(447), - [anon_sym_null] = ACTIONS(449), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(677), [anon_sym_DASH] = ACTIONS(677), [anon_sym_PLUS_PLUS] = ACTIONS(679), [anon_sym_DASH_DASH] = ACTIONS(679), [anon_sym_BANG] = ACTIONS(679), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(461), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(461), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -55423,59 +55423,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(955), [anon_sym_while] = ACTIONS(957), [anon_sym_do] = ACTIONS(497), - [anon_sym_null] = ACTIONS(959), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(519), - [anon_sym_inner] = ACTIONS(519), - [anon_sym_value] = ACTIONS(519), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(521), - [anon_sym_actual] = ACTIONS(521), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(965), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(517), + [anon_sym_inner] = ACTIONS(517), + [anon_sym_value] = ACTIONS(517), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(519), + [anon_sym_actual] = ACTIONS(519), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(965), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -55585,59 +55585,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(955), [anon_sym_while] = ACTIONS(957), [anon_sym_do] = ACTIONS(497), - [anon_sym_null] = ACTIONS(959), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(519), - [anon_sym_inner] = ACTIONS(519), - [anon_sym_value] = ACTIONS(519), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(521), - [anon_sym_actual] = ACTIONS(521), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(965), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(517), + [anon_sym_inner] = ACTIONS(517), + [anon_sym_value] = ACTIONS(517), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(519), + [anon_sym_actual] = ACTIONS(519), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(965), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -55747,59 +55747,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(955), [anon_sym_while] = ACTIONS(957), [anon_sym_do] = ACTIONS(497), - [anon_sym_null] = ACTIONS(959), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(519), - [anon_sym_inner] = ACTIONS(519), - [anon_sym_value] = ACTIONS(519), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(521), - [anon_sym_actual] = ACTIONS(521), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(965), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(517), + [anon_sym_inner] = ACTIONS(517), + [anon_sym_value] = ACTIONS(517), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(519), + [anon_sym_actual] = ACTIONS(519), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(965), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -55909,59 +55909,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1053), [anon_sym_while] = ACTIONS(1055), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -56071,59 +56071,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1053), [anon_sym_while] = ACTIONS(1055), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -56233,59 +56233,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1053), [anon_sym_while] = ACTIONS(1055), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -56395,59 +56395,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_do] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(395), - [anon_sym_inner] = ACTIONS(395), - [anon_sym_value] = ACTIONS(395), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(397), - [anon_sym_actual] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(409), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -56557,59 +56557,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(843), [anon_sym_while] = ACTIONS(845), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_if] = ACTIONS(241), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), [anon_sym_DASH_DASH] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(849), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -56719,59 +56719,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(319), [anon_sym_while] = ACTIONS(321), [anon_sym_do] = ACTIONS(323), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -56881,59 +56881,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(869), [anon_sym_while] = ACTIONS(871), [anon_sym_do] = ACTIONS(579), - [anon_sym_null] = ACTIONS(873), - [anon_sym_if] = ACTIONS(583), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(879), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -57043,59 +57043,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1069), [anon_sym_while] = ACTIONS(1071), [anon_sym_do] = ACTIONS(447), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -57205,59 +57205,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1069), [anon_sym_while] = ACTIONS(1071), [anon_sym_do] = ACTIONS(447), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -57367,59 +57367,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1069), [anon_sym_while] = ACTIONS(1071), [anon_sym_do] = ACTIONS(447), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -57529,59 +57529,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(235), [anon_sym_while] = ACTIONS(237), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(275), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_if] = ACTIONS(241), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(257), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(283), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -57691,59 +57691,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(757), [anon_sym_while] = ACTIONS(759), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(761), [anon_sym_DASH] = ACTIONS(761), [anon_sym_PLUS_PLUS] = ACTIONS(763), [anon_sym_DASH_DASH] = ACTIONS(763), [anon_sym_BANG] = ACTIONS(763), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(275), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(283), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -57853,59 +57853,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(673), [anon_sym_while] = ACTIONS(675), [anon_sym_do] = ACTIONS(447), - [anon_sym_null] = ACTIONS(449), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(677), [anon_sym_DASH] = ACTIONS(677), [anon_sym_PLUS_PLUS] = ACTIONS(679), [anon_sym_DASH_DASH] = ACTIONS(679), [anon_sym_BANG] = ACTIONS(679), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(461), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(461), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -58015,59 +58015,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(843), [anon_sym_while] = ACTIONS(845), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_if] = ACTIONS(241), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), [anon_sym_DASH_DASH] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(849), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -58177,59 +58177,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(757), [anon_sym_while] = ACTIONS(759), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(761), [anon_sym_DASH] = ACTIONS(761), [anon_sym_PLUS_PLUS] = ACTIONS(763), [anon_sym_DASH_DASH] = ACTIONS(763), [anon_sym_BANG] = ACTIONS(763), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(275), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(283), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -58339,59 +58339,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(235), [anon_sym_while] = ACTIONS(237), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(275), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_if] = ACTIONS(241), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(257), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(283), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -58501,59 +58501,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1007), [anon_sym_while] = ACTIONS(1009), [anon_sym_do] = ACTIONS(497), - [anon_sym_null] = ACTIONS(959), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), [anon_sym_DASH_DASH] = ACTIONS(1013), [anon_sym_BANG] = ACTIONS(1013), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(519), - [anon_sym_inner] = ACTIONS(519), - [anon_sym_value] = ACTIONS(519), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(521), - [anon_sym_actual] = ACTIONS(521), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(965), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(517), + [anon_sym_inner] = ACTIONS(517), + [anon_sym_value] = ACTIONS(517), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(519), + [anon_sym_actual] = ACTIONS(519), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(965), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -58663,59 +58663,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(843), [anon_sym_while] = ACTIONS(845), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_if] = ACTIONS(241), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), [anon_sym_DASH_DASH] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(849), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -58825,59 +58825,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(235), [anon_sym_while] = ACTIONS(237), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(275), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_if] = ACTIONS(241), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(257), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(283), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -58987,59 +58987,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(843), [anon_sym_while] = ACTIONS(845), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_if] = ACTIONS(241), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), [anon_sym_DASH_DASH] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(849), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -59149,59 +59149,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(493), [anon_sym_while] = ACTIONS(495), [anon_sym_do] = ACTIONS(497), - [anon_sym_null] = ACTIONS(499), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(519), - [anon_sym_inner] = ACTIONS(519), - [anon_sym_value] = ACTIONS(519), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(521), - [anon_sym_actual] = ACTIONS(521), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(531), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(517), + [anon_sym_inner] = ACTIONS(517), + [anon_sym_value] = ACTIONS(517), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(519), + [anon_sym_actual] = ACTIONS(519), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(529), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(539), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -59311,59 +59311,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(727), [anon_sym_while] = ACTIONS(729), [anon_sym_do] = ACTIONS(497), - [anon_sym_null] = ACTIONS(499), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), [anon_sym_DASH_DASH] = ACTIONS(739), [anon_sym_BANG] = ACTIONS(739), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(519), - [anon_sym_inner] = ACTIONS(519), - [anon_sym_value] = ACTIONS(519), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(521), - [anon_sym_actual] = ACTIONS(521), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(531), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(517), + [anon_sym_inner] = ACTIONS(517), + [anon_sym_value] = ACTIONS(517), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(519), + [anon_sym_actual] = ACTIONS(519), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(529), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(539), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -59473,59 +59473,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(727), [anon_sym_while] = ACTIONS(729), [anon_sym_do] = ACTIONS(497), - [anon_sym_null] = ACTIONS(499), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), [anon_sym_DASH_DASH] = ACTIONS(739), [anon_sym_BANG] = ACTIONS(739), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(519), - [anon_sym_inner] = ACTIONS(519), - [anon_sym_value] = ACTIONS(519), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(521), - [anon_sym_actual] = ACTIONS(521), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(531), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(517), + [anon_sym_inner] = ACTIONS(517), + [anon_sym_value] = ACTIONS(517), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(519), + [anon_sym_actual] = ACTIONS(519), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(529), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(539), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -59635,59 +59635,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(727), [anon_sym_while] = ACTIONS(729), [anon_sym_do] = ACTIONS(497), - [anon_sym_null] = ACTIONS(499), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), [anon_sym_DASH_DASH] = ACTIONS(739), [anon_sym_BANG] = ACTIONS(739), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(519), - [anon_sym_inner] = ACTIONS(519), - [anon_sym_value] = ACTIONS(519), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(521), - [anon_sym_actual] = ACTIONS(521), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(531), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(517), + [anon_sym_inner] = ACTIONS(517), + [anon_sym_value] = ACTIONS(517), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(519), + [anon_sym_actual] = ACTIONS(519), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(529), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(539), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -59797,59 +59797,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(493), [anon_sym_while] = ACTIONS(495), [anon_sym_do] = ACTIONS(497), - [anon_sym_null] = ACTIONS(499), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(519), - [anon_sym_inner] = ACTIONS(519), - [anon_sym_value] = ACTIONS(519), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(521), - [anon_sym_actual] = ACTIONS(521), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(531), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(517), + [anon_sym_inner] = ACTIONS(517), + [anon_sym_value] = ACTIONS(517), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(519), + [anon_sym_actual] = ACTIONS(519), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(529), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(539), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -59959,59 +59959,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(493), [anon_sym_while] = ACTIONS(495), [anon_sym_do] = ACTIONS(497), - [anon_sym_null] = ACTIONS(499), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(519), - [anon_sym_inner] = ACTIONS(519), - [anon_sym_value] = ACTIONS(519), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(521), - [anon_sym_actual] = ACTIONS(521), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(531), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(517), + [anon_sym_inner] = ACTIONS(517), + [anon_sym_value] = ACTIONS(517), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(519), + [anon_sym_actual] = ACTIONS(519), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(529), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(539), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -60121,59 +60121,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(443), [anon_sym_while] = ACTIONS(445), [anon_sym_do] = ACTIONS(447), - [anon_sym_null] = ACTIONS(449), - [anon_sym_if] = ACTIONS(451), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(461), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(449), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_BANG] = ACTIONS(457), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(461), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -60283,59 +60283,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(443), [anon_sym_while] = ACTIONS(445), [anon_sym_do] = ACTIONS(447), - [anon_sym_null] = ACTIONS(449), - [anon_sym_if] = ACTIONS(451), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(461), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(449), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_BANG] = ACTIONS(457), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(461), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -60445,59 +60445,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(443), [anon_sym_while] = ACTIONS(445), [anon_sym_do] = ACTIONS(447), - [anon_sym_null] = ACTIONS(449), - [anon_sym_if] = ACTIONS(451), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(461), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(449), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_BANG] = ACTIONS(457), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(461), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -60607,59 +60607,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(443), [anon_sym_while] = ACTIONS(445), [anon_sym_do] = ACTIONS(447), - [anon_sym_null] = ACTIONS(449), - [anon_sym_if] = ACTIONS(451), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(461), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(449), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_BANG] = ACTIONS(457), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(461), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -60769,59 +60769,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(151), [anon_sym_while] = ACTIONS(153), [anon_sym_do] = ACTIONS(155), - [anon_sym_null] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(191), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -60931,59 +60931,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(643), [anon_sym_while] = ACTIONS(645), [anon_sym_do] = ACTIONS(155), - [anon_sym_null] = ACTIONS(157), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), [anon_sym_DASH_DASH] = ACTIONS(655), [anon_sym_BANG] = ACTIONS(655), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(191), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -61093,59 +61093,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(673), [anon_sym_while] = ACTIONS(675), [anon_sym_do] = ACTIONS(447), - [anon_sym_null] = ACTIONS(449), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(677), [anon_sym_DASH] = ACTIONS(677), [anon_sym_PLUS_PLUS] = ACTIONS(679), [anon_sym_DASH_DASH] = ACTIONS(679), [anon_sym_BANG] = ACTIONS(679), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(461), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(461), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -61255,59 +61255,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(643), [anon_sym_while] = ACTIONS(645), [anon_sym_do] = ACTIONS(155), - [anon_sym_null] = ACTIONS(157), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), [anon_sym_DASH_DASH] = ACTIONS(655), [anon_sym_BANG] = ACTIONS(655), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(191), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -61417,59 +61417,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(643), [anon_sym_while] = ACTIONS(645), [anon_sym_do] = ACTIONS(155), - [anon_sym_null] = ACTIONS(157), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), [anon_sym_DASH_DASH] = ACTIONS(655), [anon_sym_BANG] = ACTIONS(655), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(191), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -61579,59 +61579,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(757), [anon_sym_while] = ACTIONS(759), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(761), [anon_sym_DASH] = ACTIONS(761), [anon_sym_PLUS_PLUS] = ACTIONS(763), [anon_sym_DASH_DASH] = ACTIONS(763), [anon_sym_BANG] = ACTIONS(763), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(275), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(283), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -61741,59 +61741,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(151), [anon_sym_while] = ACTIONS(153), [anon_sym_do] = ACTIONS(155), - [anon_sym_null] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(191), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -61903,59 +61903,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1089), [anon_sym_while] = ACTIONS(1091), [anon_sym_do] = ACTIONS(579), - [anon_sym_null] = ACTIONS(873), [anon_sym_if] = ACTIONS(785), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(1093), [anon_sym_DASH] = ACTIONS(1093), [anon_sym_PLUS_PLUS] = ACTIONS(1095), [anon_sym_DASH_DASH] = ACTIONS(1095), [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(879), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -62065,59 +62065,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(781), [anon_sym_while] = ACTIONS(783), [anon_sym_do] = ACTIONS(579), - [anon_sym_null] = ACTIONS(581), [anon_sym_if] = ACTIONS(785), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(791), [anon_sym_DASH] = ACTIONS(791), [anon_sym_PLUS_PLUS] = ACTIONS(793), [anon_sym_DASH_DASH] = ACTIONS(793), [anon_sym_BANG] = ACTIONS(793), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(613), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -62227,59 +62227,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(899), [anon_sym_while] = ACTIONS(901), [anon_sym_do] = ACTIONS(447), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(451), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_if] = ACTIONS(449), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(903), [anon_sym_DASH] = ACTIONS(903), [anon_sym_PLUS_PLUS] = ACTIONS(905), [anon_sym_DASH_DASH] = ACTIONS(905), [anon_sym_BANG] = ACTIONS(905), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -62389,59 +62389,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1089), [anon_sym_while] = ACTIONS(1091), [anon_sym_do] = ACTIONS(579), - [anon_sym_null] = ACTIONS(873), [anon_sym_if] = ACTIONS(785), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(1093), [anon_sym_DASH] = ACTIONS(1093), [anon_sym_PLUS_PLUS] = ACTIONS(1095), [anon_sym_DASH_DASH] = ACTIONS(1095), [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(879), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -62551,59 +62551,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(151), [anon_sym_while] = ACTIONS(153), [anon_sym_do] = ACTIONS(155), - [anon_sym_null] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(191), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -62713,59 +62713,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1089), [anon_sym_while] = ACTIONS(1091), [anon_sym_do] = ACTIONS(579), - [anon_sym_null] = ACTIONS(873), [anon_sym_if] = ACTIONS(785), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(1093), [anon_sym_DASH] = ACTIONS(1093), [anon_sym_PLUS_PLUS] = ACTIONS(1095), [anon_sym_DASH_DASH] = ACTIONS(1095), [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(879), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -62875,59 +62875,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(235), [anon_sym_while] = ACTIONS(237), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(275), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_if] = ACTIONS(241), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(257), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(283), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -63037,59 +63037,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(697), [anon_sym_while] = ACTIONS(699), [anon_sym_do] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), [anon_sym_DASH_DASH] = ACTIONS(709), [anon_sym_BANG] = ACTIONS(709), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(395), - [anon_sym_inner] = ACTIONS(395), - [anon_sym_value] = ACTIONS(395), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(397), - [anon_sym_actual] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(409), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -63199,59 +63199,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(697), [anon_sym_while] = ACTIONS(699), [anon_sym_do] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), [anon_sym_DASH_DASH] = ACTIONS(709), [anon_sym_BANG] = ACTIONS(709), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(395), - [anon_sym_inner] = ACTIONS(395), - [anon_sym_value] = ACTIONS(395), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(397), - [anon_sym_actual] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(409), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -63361,59 +63361,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(697), [anon_sym_while] = ACTIONS(699), [anon_sym_do] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), [anon_sym_DASH_DASH] = ACTIONS(709), [anon_sym_BANG] = ACTIONS(709), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(395), - [anon_sym_inner] = ACTIONS(395), - [anon_sym_value] = ACTIONS(395), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(397), - [anon_sym_actual] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(409), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -63523,59 +63523,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(727), [anon_sym_while] = ACTIONS(729), [anon_sym_do] = ACTIONS(497), - [anon_sym_null] = ACTIONS(499), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), [anon_sym_DASH_DASH] = ACTIONS(739), [anon_sym_BANG] = ACTIONS(739), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(519), - [anon_sym_inner] = ACTIONS(519), - [anon_sym_value] = ACTIONS(519), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(521), - [anon_sym_actual] = ACTIONS(521), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(531), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(517), + [anon_sym_inner] = ACTIONS(517), + [anon_sym_value] = ACTIONS(517), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(519), + [anon_sym_actual] = ACTIONS(519), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(529), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(539), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -63685,59 +63685,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(319), [anon_sym_while] = ACTIONS(321), [anon_sym_do] = ACTIONS(323), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -63847,59 +63847,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(869), [anon_sym_while] = ACTIONS(871), [anon_sym_do] = ACTIONS(579), - [anon_sym_null] = ACTIONS(873), - [anon_sym_if] = ACTIONS(583), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(879), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -64009,59 +64009,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(643), [anon_sym_while] = ACTIONS(645), [anon_sym_do] = ACTIONS(155), - [anon_sym_null] = ACTIONS(157), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), [anon_sym_DASH_DASH] = ACTIONS(655), [anon_sym_BANG] = ACTIONS(655), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(191), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -64171,59 +64171,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(673), [anon_sym_while] = ACTIONS(675), [anon_sym_do] = ACTIONS(447), - [anon_sym_null] = ACTIONS(449), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(677), [anon_sym_DASH] = ACTIONS(677), [anon_sym_PLUS_PLUS] = ACTIONS(679), [anon_sym_DASH_DASH] = ACTIONS(679), [anon_sym_BANG] = ACTIONS(679), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(461), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(461), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -64333,59 +64333,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(781), [anon_sym_while] = ACTIONS(783), [anon_sym_do] = ACTIONS(579), - [anon_sym_null] = ACTIONS(581), [anon_sym_if] = ACTIONS(785), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(791), [anon_sym_DASH] = ACTIONS(791), [anon_sym_PLUS_PLUS] = ACTIONS(793), [anon_sym_DASH_DASH] = ACTIONS(793), [anon_sym_BANG] = ACTIONS(793), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(613), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -64495,59 +64495,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(781), [anon_sym_while] = ACTIONS(783), [anon_sym_do] = ACTIONS(579), - [anon_sym_null] = ACTIONS(581), [anon_sym_if] = ACTIONS(785), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(791), [anon_sym_DASH] = ACTIONS(791), [anon_sym_PLUS_PLUS] = ACTIONS(793), [anon_sym_DASH_DASH] = ACTIONS(793), [anon_sym_BANG] = ACTIONS(793), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(613), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -64657,59 +64657,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(781), [anon_sym_while] = ACTIONS(783), [anon_sym_do] = ACTIONS(579), - [anon_sym_null] = ACTIONS(581), [anon_sym_if] = ACTIONS(785), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(791), [anon_sym_DASH] = ACTIONS(791), [anon_sym_PLUS_PLUS] = ACTIONS(793), [anon_sym_DASH_DASH] = ACTIONS(793), [anon_sym_BANG] = ACTIONS(793), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(613), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -64819,59 +64819,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1089), [anon_sym_while] = ACTIONS(1091), [anon_sym_do] = ACTIONS(579), - [anon_sym_null] = ACTIONS(873), [anon_sym_if] = ACTIONS(785), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(1093), [anon_sym_DASH] = ACTIONS(1093), [anon_sym_PLUS_PLUS] = ACTIONS(1095), [anon_sym_DASH_DASH] = ACTIONS(1095), [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(879), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -64981,59 +64981,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(983), [anon_sym_while] = ACTIONS(985), [anon_sym_do] = ACTIONS(155), - [anon_sym_null] = ACTIONS(817), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), [anon_sym_DASH_DASH] = ACTIONS(989), [anon_sym_BANG] = ACTIONS(989), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(177), - [anon_sym_inner] = ACTIONS(177), - [anon_sym_value] = ACTIONS(177), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(179), - [anon_sym_actual] = ACTIONS(179), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(823), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(175), + [anon_sym_inner] = ACTIONS(175), + [anon_sym_value] = ACTIONS(175), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(177), + [anon_sym_actual] = ACTIONS(177), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -65143,59 +65143,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1007), [anon_sym_while] = ACTIONS(1009), [anon_sym_do] = ACTIONS(497), - [anon_sym_null] = ACTIONS(959), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), [anon_sym_DASH_DASH] = ACTIONS(1013), [anon_sym_BANG] = ACTIONS(1013), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(519), - [anon_sym_inner] = ACTIONS(519), - [anon_sym_value] = ACTIONS(519), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(521), - [anon_sym_actual] = ACTIONS(521), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(965), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(517), + [anon_sym_inner] = ACTIONS(517), + [anon_sym_value] = ACTIONS(517), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(519), + [anon_sym_actual] = ACTIONS(519), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(965), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -65305,59 +65305,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(697), [anon_sym_while] = ACTIONS(699), [anon_sym_do] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), [anon_sym_DASH_DASH] = ACTIONS(709), [anon_sym_BANG] = ACTIONS(709), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(395), - [anon_sym_inner] = ACTIONS(395), - [anon_sym_value] = ACTIONS(395), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(397), - [anon_sym_actual] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(409), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -65467,59 +65467,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1031), [anon_sym_while] = ACTIONS(1033), [anon_sym_do] = ACTIONS(373), - [anon_sym_null] = ACTIONS(929), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), [anon_sym_DASH_DASH] = ACTIONS(1037), [anon_sym_BANG] = ACTIONS(1037), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(395), - [anon_sym_inner] = ACTIONS(395), - [anon_sym_value] = ACTIONS(395), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(397), - [anon_sym_actual] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(935), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(935), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -65629,59 +65629,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(869), [anon_sym_while] = ACTIONS(871), [anon_sym_do] = ACTIONS(579), - [anon_sym_null] = ACTIONS(873), - [anon_sym_if] = ACTIONS(583), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(879), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -65791,59 +65791,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1031), [anon_sym_while] = ACTIONS(1033), [anon_sym_do] = ACTIONS(373), - [anon_sym_null] = ACTIONS(929), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), [anon_sym_DASH_DASH] = ACTIONS(1037), [anon_sym_BANG] = ACTIONS(1037), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(395), - [anon_sym_inner] = ACTIONS(395), - [anon_sym_value] = ACTIONS(395), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(397), - [anon_sym_actual] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(935), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(393), + [anon_sym_inner] = ACTIONS(393), + [anon_sym_value] = ACTIONS(393), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(395), + [anon_sym_actual] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(935), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -65953,59 +65953,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(899), [anon_sym_while] = ACTIONS(901), [anon_sym_do] = ACTIONS(447), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(451), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_if] = ACTIONS(449), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(903), [anon_sym_DASH] = ACTIONS(903), [anon_sym_PLUS_PLUS] = ACTIONS(905), [anon_sym_DASH_DASH] = ACTIONS(905), [anon_sym_BANG] = ACTIONS(905), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -66115,59 +66115,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(899), [anon_sym_while] = ACTIONS(901), [anon_sym_do] = ACTIONS(447), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(451), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_if] = ACTIONS(449), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(903), [anon_sym_DASH] = ACTIONS(903), [anon_sym_PLUS_PLUS] = ACTIONS(905), [anon_sym_DASH_DASH] = ACTIONS(905), [anon_sym_BANG] = ACTIONS(905), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -66277,59 +66277,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1069), [anon_sym_while] = ACTIONS(1071), [anon_sym_do] = ACTIONS(447), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -66439,59 +66439,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(899), [anon_sym_while] = ACTIONS(901), [anon_sym_do] = ACTIONS(447), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(451), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_if] = ACTIONS(449), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(903), [anon_sym_DASH] = ACTIONS(903), [anon_sym_PLUS_PLUS] = ACTIONS(905), [anon_sym_DASH_DASH] = ACTIONS(905), [anon_sym_BANG] = ACTIONS(905), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -66600,59 +66600,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -66761,59 +66761,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -66922,59 +66922,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1414), [anon_sym_while] = ACTIONS(1417), [anon_sym_do] = ACTIONS(1420), - [anon_sym_null] = ACTIONS(1423), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_when] = ACTIONS(1429), - [anon_sym_try] = ACTIONS(1432), - [anon_sym_throw] = ACTIONS(1435), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1441), - [anon_sym_break] = ACTIONS(1441), - [anon_sym_COLON_COLON] = ACTIONS(1444), - [anon_sym_PLUS] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_suspend] = ACTIONS(1453), - [anon_sym_sealed] = ACTIONS(1456), - [anon_sym_annotation] = ACTIONS(1456), - [anon_sym_data] = ACTIONS(1459), - [anon_sym_inner] = ACTIONS(1459), - [anon_sym_value] = ACTIONS(1459), - [anon_sym_override] = ACTIONS(1462), - [anon_sym_lateinit] = ACTIONS(1462), - [anon_sym_public] = ACTIONS(1465), - [anon_sym_private] = ACTIONS(1465), - [anon_sym_internal] = ACTIONS(1465), - [anon_sym_protected] = ACTIONS(1465), - [anon_sym_tailrec] = ACTIONS(1453), - [anon_sym_operator] = ACTIONS(1453), - [anon_sym_infix] = ACTIONS(1453), - [anon_sym_inline] = ACTIONS(1453), - [anon_sym_external] = ACTIONS(1453), - [sym_property_modifier] = ACTIONS(1468), - [anon_sym_abstract] = ACTIONS(1471), - [anon_sym_final] = ACTIONS(1471), - [anon_sym_open] = ACTIONS(1471), - [anon_sym_vararg] = ACTIONS(1474), - [anon_sym_noinline] = ACTIONS(1474), - [anon_sym_crossinline] = ACTIONS(1474), - [anon_sym_expect] = ACTIONS(1477), - [anon_sym_actual] = ACTIONS(1477), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1480), - [anon_sym_continue_AT] = ACTIONS(1483), - [anon_sym_break_AT] = ACTIONS(1486), - [anon_sym_this_AT] = ACTIONS(1489), - [anon_sym_super_AT] = ACTIONS(1492), - [sym_real_literal] = ACTIONS(1495), - [sym_integer_literal] = ACTIONS(1498), - [sym_hex_literal] = ACTIONS(1501), - [sym_bin_literal] = ACTIONS(1501), - [anon_sym_true] = ACTIONS(1504), - [anon_sym_false] = ACTIONS(1504), - [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1423), + [anon_sym_when] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1429), + [anon_sym_throw] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1435), + [anon_sym_continue] = ACTIONS(1438), + [anon_sym_break] = ACTIONS(1438), + [anon_sym_COLON_COLON] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_suspend] = ACTIONS(1450), + [anon_sym_sealed] = ACTIONS(1453), + [anon_sym_annotation] = ACTIONS(1453), + [anon_sym_data] = ACTIONS(1456), + [anon_sym_inner] = ACTIONS(1456), + [anon_sym_value] = ACTIONS(1456), + [anon_sym_override] = ACTIONS(1459), + [anon_sym_lateinit] = ACTIONS(1459), + [anon_sym_public] = ACTIONS(1462), + [anon_sym_private] = ACTIONS(1462), + [anon_sym_internal] = ACTIONS(1462), + [anon_sym_protected] = ACTIONS(1462), + [anon_sym_tailrec] = ACTIONS(1450), + [anon_sym_operator] = ACTIONS(1450), + [anon_sym_infix] = ACTIONS(1450), + [anon_sym_inline] = ACTIONS(1450), + [anon_sym_external] = ACTIONS(1450), + [sym_property_modifier] = ACTIONS(1465), + [anon_sym_abstract] = ACTIONS(1468), + [anon_sym_final] = ACTIONS(1468), + [anon_sym_open] = ACTIONS(1468), + [anon_sym_vararg] = ACTIONS(1471), + [anon_sym_noinline] = ACTIONS(1471), + [anon_sym_crossinline] = ACTIONS(1471), + [anon_sym_expect] = ACTIONS(1474), + [anon_sym_actual] = ACTIONS(1474), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1477), + [anon_sym_continue_AT] = ACTIONS(1480), + [anon_sym_break_AT] = ACTIONS(1483), + [anon_sym_this_AT] = ACTIONS(1486), + [anon_sym_super_AT] = ACTIONS(1489), + [sym_real_literal] = ACTIONS(1492), + [sym_integer_literal] = ACTIONS(1495), + [sym_hex_literal] = ACTIONS(1498), + [sym_bin_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [anon_sym_SQUOTE] = ACTIONS(1504), + [sym_null_literal] = ACTIONS(1507), [sym__backtick_identifier] = ACTIONS(1510), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1513), @@ -67083,59 +67083,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -67244,59 +67244,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -67405,59 +67405,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -67566,59 +67566,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(319), [anon_sym_while] = ACTIONS(1522), [anon_sym_do] = ACTIONS(323), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -67727,59 +67727,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(319), [anon_sym_while] = ACTIONS(1524), [anon_sym_do] = ACTIONS(323), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -67888,59 +67888,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -68049,59 +68049,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -68210,59 +68210,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -68371,59 +68371,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1117), [anon_sym_while] = ACTIONS(1119), [anon_sym_do] = ACTIONS(1121), - [anon_sym_null] = ACTIONS(873), [anon_sym_if] = ACTIONS(785), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(1093), [anon_sym_DASH] = ACTIONS(1093), [anon_sym_PLUS_PLUS] = ACTIONS(1095), [anon_sym_DASH_DASH] = ACTIONS(1095), [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(879), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -68532,59 +68532,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -68693,59 +68693,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(319), [anon_sym_while] = ACTIONS(1534), [anon_sym_do] = ACTIONS(323), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -68854,59 +68854,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(319), [anon_sym_while] = ACTIONS(1524), [anon_sym_do] = ACTIONS(323), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -69015,59 +69015,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(319), [anon_sym_while] = ACTIONS(321), [anon_sym_do] = ACTIONS(323), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -69176,59 +69176,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -69337,59 +69337,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -69498,59 +69498,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(319), [anon_sym_while] = ACTIONS(321), [anon_sym_do] = ACTIONS(323), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -69659,59 +69659,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(319), [anon_sym_while] = ACTIONS(1534), [anon_sym_do] = ACTIONS(323), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -69820,59 +69820,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(319), [anon_sym_while] = ACTIONS(1538), [anon_sym_do] = ACTIONS(323), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -69981,59 +69981,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -70142,59 +70142,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(319), [anon_sym_while] = ACTIONS(1534), [anon_sym_do] = ACTIONS(323), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -70303,59 +70303,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -70464,59 +70464,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -70625,59 +70625,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -70786,59 +70786,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -70947,59 +70947,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -71108,59 +71108,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -71269,59 +71269,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(319), [anon_sym_while] = ACTIONS(1550), [anon_sym_do] = ACTIONS(323), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -71430,59 +71430,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -71591,59 +71591,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -71752,59 +71752,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1117), [anon_sym_while] = ACTIONS(1119), [anon_sym_do] = ACTIONS(1121), - [anon_sym_null] = ACTIONS(873), [anon_sym_if] = ACTIONS(785), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(1093), [anon_sym_DASH] = ACTIONS(1093), [anon_sym_PLUS_PLUS] = ACTIONS(1095), [anon_sym_DASH_DASH] = ACTIONS(1095), [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(601), - [anon_sym_inner] = ACTIONS(601), - [anon_sym_value] = ACTIONS(601), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(603), - [anon_sym_actual] = ACTIONS(603), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(599), + [anon_sym_inner] = ACTIONS(599), + [anon_sym_value] = ACTIONS(599), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(601), + [anon_sym_actual] = ACTIONS(601), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(879), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -71913,59 +71913,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -72074,59 +72074,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -72235,59 +72235,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -72396,59 +72396,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -72557,59 +72557,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -72718,59 +72718,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -72879,59 +72879,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -73040,59 +73040,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -73201,59 +73201,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(319), [anon_sym_while] = ACTIONS(1534), [anon_sym_do] = ACTIONS(323), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(261), - [anon_sym_inner] = ACTIONS(261), - [anon_sym_value] = ACTIONS(261), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(263), - [anon_sym_actual] = ACTIONS(263), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(259), + [anon_sym_inner] = ACTIONS(259), + [anon_sym_value] = ACTIONS(259), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(261), + [anon_sym_actual] = ACTIONS(261), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -73362,59 +73362,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -73522,59 +73522,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -73682,59 +73682,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -73815,23 +73815,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(147), [anon_sym_DASH_GT] = ACTIONS(1578), - [sym_label] = ACTIONS(173), + [sym_label] = ACTIONS(171), [anon_sym_in] = ACTIONS(1580), [anon_sym_while] = ACTIONS(1580), [anon_sym_DOT_DOT] = ACTIONS(1578), [anon_sym_QMARK_COLON] = ACTIONS(1578), [anon_sym_AMP_AMP] = ACTIONS(1578), [anon_sym_PIPE_PIPE] = ACTIONS(1578), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(159), + [anon_sym_if] = ACTIONS(157), [anon_sym_else] = ACTIONS(1580), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS_EQ] = ACTIONS(1578), [anon_sym_DASH_EQ] = ACTIONS(1578), [anon_sym_STAR_EQ] = ACTIONS(1578), @@ -73846,14 +73845,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(1578), [anon_sym_is] = ACTIONS(1580), [anon_sym_BANGis] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), [anon_sym_SLASH] = ACTIONS(1580), [anon_sym_PERCENT] = ACTIONS(1580), [anon_sym_as_QMARK] = ACTIONS(1578), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(171), [anon_sym_BANG_BANG] = ACTIONS(1578), [anon_sym_suspend] = ACTIONS(1580), [anon_sym_sealed] = ACTIONS(1580), @@ -73882,18 +73881,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_safe_nav] = ACTIONS(1578), [sym_multiline_comment] = ACTIONS(3), @@ -74001,59 +74001,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), + [anon_sym_expect] = ACTIONS(87), + [anon_sym_actual] = ACTIONS(87), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -74131,22 +74131,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(489), - [sym_label] = ACTIONS(515), + [sym_label] = ACTIONS(513), [anon_sym_in] = ACTIONS(1580), [anon_sym_DOT_DOT] = ACTIONS(1578), [anon_sym_QMARK_COLON] = ACTIONS(1578), [anon_sym_AMP_AMP] = ACTIONS(1578), [anon_sym_PIPE_PIPE] = ACTIONS(1578), - [anon_sym_null] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(501), + [anon_sym_if] = ACTIONS(499), [anon_sym_else] = ACTIONS(1580), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS_EQ] = ACTIONS(1578), [anon_sym_DASH_EQ] = ACTIONS(1578), [anon_sym_STAR_EQ] = ACTIONS(1578), @@ -74161,14 +74160,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(1578), [anon_sym_is] = ACTIONS(1580), [anon_sym_BANGis] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), [anon_sym_SLASH] = ACTIONS(1580), [anon_sym_PERCENT] = ACTIONS(1580), [anon_sym_as_QMARK] = ACTIONS(1578), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(513), [anon_sym_BANG_BANG] = ACTIONS(1578), [anon_sym_suspend] = ACTIONS(1580), [anon_sym_sealed] = ACTIONS(1580), @@ -74197,18 +74196,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym__automatic_semicolon] = ACTIONS(1578), [sym_safe_nav] = ACTIONS(1578), @@ -74288,22 +74288,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(365), - [sym_label] = ACTIONS(391), + [sym_label] = ACTIONS(389), [anon_sym_in] = ACTIONS(1580), [anon_sym_DOT_DOT] = ACTIONS(1578), [anon_sym_QMARK_COLON] = ACTIONS(1578), [anon_sym_AMP_AMP] = ACTIONS(1578), [anon_sym_PIPE_PIPE] = ACTIONS(1578), - [anon_sym_null] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(377), + [anon_sym_if] = ACTIONS(375), [anon_sym_else] = ACTIONS(1580), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS_EQ] = ACTIONS(1578), [anon_sym_DASH_EQ] = ACTIONS(1578), [anon_sym_STAR_EQ] = ACTIONS(1578), @@ -74318,14 +74317,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(1578), [anon_sym_is] = ACTIONS(1580), [anon_sym_BANGis] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), [anon_sym_SLASH] = ACTIONS(1580), [anon_sym_PERCENT] = ACTIONS(1580), [anon_sym_as_QMARK] = ACTIONS(1578), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(389), [anon_sym_BANG_BANG] = ACTIONS(1578), [anon_sym_suspend] = ACTIONS(1580), [anon_sym_sealed] = ACTIONS(1580), @@ -74354,18 +74353,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym__automatic_semicolon] = ACTIONS(1578), [sym_safe_nav] = ACTIONS(1578), @@ -74451,16 +74451,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1578), [anon_sym_AMP_AMP] = ACTIONS(1578), [anon_sym_PIPE_PIPE] = ACTIONS(1578), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(647), [anon_sym_else] = ACTIONS(1580), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS_EQ] = ACTIONS(1578), [anon_sym_DASH_EQ] = ACTIONS(1578), [anon_sym_STAR_EQ] = ACTIONS(1578), @@ -74511,18 +74510,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_safe_nav] = ACTIONS(1578), [sym_multiline_comment] = ACTIONS(3), @@ -74605,16 +74605,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1578), [anon_sym_AMP_AMP] = ACTIONS(1578), [anon_sym_PIPE_PIPE] = ACTIONS(1578), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(731), [anon_sym_else] = ACTIONS(1580), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS_EQ] = ACTIONS(1578), [anon_sym_DASH_EQ] = ACTIONS(1578), [anon_sym_STAR_EQ] = ACTIONS(1578), @@ -74665,18 +74664,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym__automatic_semicolon] = ACTIONS(1578), [sym_safe_nav] = ACTIONS(1578), @@ -74760,16 +74760,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1578), [anon_sym_AMP_AMP] = ACTIONS(1578), [anon_sym_PIPE_PIPE] = ACTIONS(1578), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(701), [anon_sym_else] = ACTIONS(1580), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS_EQ] = ACTIONS(1578), [anon_sym_DASH_EQ] = ACTIONS(1578), [anon_sym_STAR_EQ] = ACTIONS(1578), @@ -74820,18 +74819,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym__automatic_semicolon] = ACTIONS(1578), [sym_safe_nav] = ACTIONS(1578), @@ -74913,23 +74913,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(809), [anon_sym_DASH_GT] = ACTIONS(1578), - [sym_label] = ACTIONS(819), + [sym_label] = ACTIONS(817), [anon_sym_in] = ACTIONS(1580), [anon_sym_while] = ACTIONS(1580), [anon_sym_DOT_DOT] = ACTIONS(1578), [anon_sym_QMARK_COLON] = ACTIONS(1578), [anon_sym_AMP_AMP] = ACTIONS(1578), [anon_sym_PIPE_PIPE] = ACTIONS(1578), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1626), [anon_sym_else] = ACTIONS(1580), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1628), [anon_sym_return] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_BANG_EQ] = ACTIONS(1580), [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), [anon_sym_EQ_EQ] = ACTIONS(1580), @@ -74939,14 +74938,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(1578), [anon_sym_is] = ACTIONS(1580), [anon_sym_BANGis] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), [anon_sym_SLASH] = ACTIONS(1580), [anon_sym_PERCENT] = ACTIONS(1578), [anon_sym_as_QMARK] = ACTIONS(1578), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(817), [anon_sym_BANG_BANG] = ACTIONS(1578), [anon_sym_suspend] = ACTIONS(1580), [anon_sym_sealed] = ACTIONS(1580), @@ -74975,18 +74974,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_safe_nav] = ACTIONS(1578), [sym_multiline_comment] = ACTIONS(3), @@ -75064,22 +75064,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(921), - [sym_label] = ACTIONS(931), + [sym_label] = ACTIONS(929), [anon_sym_in] = ACTIONS(1580), [anon_sym_DOT_DOT] = ACTIONS(1578), [anon_sym_QMARK_COLON] = ACTIONS(1578), [anon_sym_AMP_AMP] = ACTIONS(1578), [anon_sym_PIPE_PIPE] = ACTIONS(1578), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1634), [anon_sym_else] = ACTIONS(1580), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1636), [anon_sym_return] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_BANG_EQ] = ACTIONS(1580), [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), [anon_sym_EQ_EQ] = ACTIONS(1580), @@ -75089,14 +75088,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(1578), [anon_sym_is] = ACTIONS(1580), [anon_sym_BANGis] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), [anon_sym_SLASH] = ACTIONS(1580), [anon_sym_PERCENT] = ACTIONS(1578), [anon_sym_as_QMARK] = ACTIONS(1578), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(929), [anon_sym_BANG_BANG] = ACTIONS(1578), [anon_sym_suspend] = ACTIONS(1580), [anon_sym_sealed] = ACTIONS(1580), @@ -75125,18 +75124,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym__automatic_semicolon] = ACTIONS(1578), [sym_safe_nav] = ACTIONS(1578), @@ -75215,22 +75215,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(951), - [sym_label] = ACTIONS(961), + [sym_label] = ACTIONS(959), [anon_sym_in] = ACTIONS(1580), [anon_sym_DOT_DOT] = ACTIONS(1578), [anon_sym_QMARK_COLON] = ACTIONS(1578), [anon_sym_AMP_AMP] = ACTIONS(1578), [anon_sym_PIPE_PIPE] = ACTIONS(1578), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1642), [anon_sym_else] = ACTIONS(1580), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1644), [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_BANG_EQ] = ACTIONS(1580), [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), [anon_sym_EQ_EQ] = ACTIONS(1580), @@ -75240,14 +75239,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(1578), [anon_sym_is] = ACTIONS(1580), [anon_sym_BANGis] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), [anon_sym_SLASH] = ACTIONS(1580), [anon_sym_PERCENT] = ACTIONS(1578), [anon_sym_as_QMARK] = ACTIONS(1578), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(959), [anon_sym_BANG_BANG] = ACTIONS(1578), [anon_sym_suspend] = ACTIONS(1580), [anon_sym_sealed] = ACTIONS(1580), @@ -75276,18 +75275,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym__automatic_semicolon] = ACTIONS(1578), [sym_safe_nav] = ACTIONS(1578), @@ -75372,16 +75372,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1578), [anon_sym_AMP_AMP] = ACTIONS(1578), [anon_sym_PIPE_PIPE] = ACTIONS(1578), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), [anon_sym_else] = ACTIONS(1580), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_BANG_EQ] = ACTIONS(1580), [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), [anon_sym_EQ_EQ] = ACTIONS(1580), @@ -75427,18 +75426,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_safe_nav] = ACTIONS(1578), [sym_multiline_comment] = ACTIONS(3), @@ -75520,16 +75520,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1578), [anon_sym_AMP_AMP] = ACTIONS(1578), [anon_sym_PIPE_PIPE] = ACTIONS(1578), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), [anon_sym_else] = ACTIONS(1580), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_BANG_EQ] = ACTIONS(1580), [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), [anon_sym_EQ_EQ] = ACTIONS(1580), @@ -75575,18 +75574,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym__automatic_semicolon] = ACTIONS(1578), [sym_safe_nav] = ACTIONS(1578), @@ -75669,16 +75669,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1578), [anon_sym_AMP_AMP] = ACTIONS(1578), [anon_sym_PIPE_PIPE] = ACTIONS(1578), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), [anon_sym_else] = ACTIONS(1580), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_BANG_EQ] = ACTIONS(1580), [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), [anon_sym_EQ_EQ] = ACTIONS(1580), @@ -75724,18 +75723,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym__automatic_semicolon] = ACTIONS(1578), [sym_safe_nav] = ACTIONS(1578), @@ -75804,7 +75804,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1706), [anon_sym_AMP_AMP] = ACTIONS(1708), [anon_sym_PIPE_PIPE] = ACTIONS(1710), - [anon_sym_null] = ACTIONS(1682), [anon_sym_if] = ACTIONS(1682), [anon_sym_else] = ACTIONS(1682), [anon_sym_when] = ACTIONS(1682), @@ -75837,30 +75836,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1682), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -75876,6 +75875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1682), [anon_sym_false] = ACTIONS(1682), [anon_sym_SQUOTE] = ACTIONS(1684), + [sym_null_literal] = ACTIONS(1682), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1684), [sym_safe_nav] = ACTIONS(1712), @@ -75944,7 +75944,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1706), [anon_sym_AMP_AMP] = ACTIONS(1708), [anon_sym_PIPE_PIPE] = ACTIONS(1710), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -75977,30 +75976,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -76016,6 +76015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1712), @@ -76084,7 +76084,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1706), [anon_sym_AMP_AMP] = ACTIONS(1708), [anon_sym_PIPE_PIPE] = ACTIONS(1710), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -76117,30 +76116,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -76156,6 +76155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1712), @@ -76224,7 +76224,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1706), [anon_sym_AMP_AMP] = ACTIONS(1708), [anon_sym_PIPE_PIPE] = ACTIONS(1710), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -76257,30 +76256,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -76296,6 +76295,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1712), @@ -76364,7 +76364,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1706), [anon_sym_AMP_AMP] = ACTIONS(1708), [anon_sym_PIPE_PIPE] = ACTIONS(1710), - [anon_sym_null] = ACTIONS(1682), [anon_sym_if] = ACTIONS(1682), [anon_sym_else] = ACTIONS(1682), [anon_sym_when] = ACTIONS(1682), @@ -76397,30 +76396,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1682), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -76436,6 +76435,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1682), [anon_sym_false] = ACTIONS(1682), [anon_sym_SQUOTE] = ACTIONS(1684), + [sym_null_literal] = ACTIONS(1682), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1684), [sym_safe_nav] = ACTIONS(1712), @@ -76504,7 +76504,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1706), [anon_sym_AMP_AMP] = ACTIONS(1708), [anon_sym_PIPE_PIPE] = ACTIONS(1710), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -76537,30 +76536,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -76576,6 +76575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1712), @@ -76644,7 +76644,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1706), [anon_sym_AMP_AMP] = ACTIONS(1708), [anon_sym_PIPE_PIPE] = ACTIONS(1710), - [anon_sym_null] = ACTIONS(1764), [anon_sym_if] = ACTIONS(1764), [anon_sym_else] = ACTIONS(1764), [anon_sym_when] = ACTIONS(1764), @@ -76677,30 +76676,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1764), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -76716,6 +76715,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1764), [anon_sym_false] = ACTIONS(1764), [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_null_literal] = ACTIONS(1764), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1766), [sym_safe_nav] = ACTIONS(1712), @@ -76784,7 +76784,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1706), [anon_sym_AMP_AMP] = ACTIONS(1708), [anon_sym_PIPE_PIPE] = ACTIONS(1710), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -76817,30 +76816,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -76856,6 +76855,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1712), @@ -76924,7 +76924,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1706), [anon_sym_AMP_AMP] = ACTIONS(1708), [anon_sym_PIPE_PIPE] = ACTIONS(1710), - [anon_sym_null] = ACTIONS(1764), [anon_sym_if] = ACTIONS(1764), [anon_sym_else] = ACTIONS(1764), [anon_sym_when] = ACTIONS(1764), @@ -76957,30 +76956,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1764), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -76996,6 +76995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1764), [anon_sym_false] = ACTIONS(1764), [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_null_literal] = ACTIONS(1764), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1766), [sym_safe_nav] = ACTIONS(1712), @@ -77064,7 +77064,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1706), [anon_sym_AMP_AMP] = ACTIONS(1708), [anon_sym_PIPE_PIPE] = ACTIONS(1710), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -77097,30 +77096,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -77136,6 +77135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1712), @@ -77204,7 +77204,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1706), [anon_sym_AMP_AMP] = ACTIONS(1708), [anon_sym_PIPE_PIPE] = ACTIONS(1710), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -77237,30 +77236,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -77276,6 +77275,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1712), @@ -77344,7 +77344,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1706), [anon_sym_AMP_AMP] = ACTIONS(1708), [anon_sym_PIPE_PIPE] = ACTIONS(1710), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -77377,30 +77376,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -77416,6 +77415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1712), @@ -77498,23 +77498,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(231), [anon_sym_DASH_GT] = ACTIONS(1578), - [sym_label] = ACTIONS(257), + [sym_label] = ACTIONS(255), [anon_sym_in] = ACTIONS(1580), [anon_sym_while] = ACTIONS(1580), [anon_sym_DOT_DOT] = ACTIONS(1578), [anon_sym_QMARK_COLON] = ACTIONS(1578), [anon_sym_AMP_AMP] = ACTIONS(1578), [anon_sym_PIPE_PIPE] = ACTIONS(1578), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(243), + [anon_sym_if] = ACTIONS(241), [anon_sym_else] = ACTIONS(1580), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS_EQ] = ACTIONS(1578), [anon_sym_DASH_EQ] = ACTIONS(1578), [anon_sym_STAR_EQ] = ACTIONS(1578), @@ -77529,14 +77528,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(1578), [anon_sym_is] = ACTIONS(1580), [anon_sym_BANGis] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), [anon_sym_SLASH] = ACTIONS(1580), [anon_sym_PERCENT] = ACTIONS(1580), [anon_sym_as_QMARK] = ACTIONS(1578), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(257), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(255), [anon_sym_BANG_BANG] = ACTIONS(1578), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), @@ -77544,18 +77543,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_safe_nav] = ACTIONS(1578), [sym_multiline_comment] = ACTIONS(3), @@ -77621,7 +77621,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1810), [anon_sym_AMP_AMP] = ACTIONS(1812), [anon_sym_PIPE_PIPE] = ACTIONS(1814), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -77654,30 +77653,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -77693,6 +77692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1712), @@ -77759,7 +77759,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1810), [anon_sym_AMP_AMP] = ACTIONS(1812), [anon_sym_PIPE_PIPE] = ACTIONS(1814), - [anon_sym_null] = ACTIONS(1764), [anon_sym_if] = ACTIONS(1764), [anon_sym_else] = ACTIONS(1764), [anon_sym_when] = ACTIONS(1764), @@ -77792,30 +77791,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1764), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -77831,6 +77830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1764), [anon_sym_false] = ACTIONS(1764), [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_null_literal] = ACTIONS(1764), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1766), [sym_safe_nav] = ACTIONS(1712), @@ -77897,7 +77897,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1810), [anon_sym_AMP_AMP] = ACTIONS(1812), [anon_sym_PIPE_PIPE] = ACTIONS(1814), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -77930,30 +77929,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -77969,6 +77968,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1712), @@ -78035,7 +78035,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1810), [anon_sym_AMP_AMP] = ACTIONS(1812), [anon_sym_PIPE_PIPE] = ACTIONS(1814), - [anon_sym_null] = ACTIONS(1682), [anon_sym_if] = ACTIONS(1682), [anon_sym_else] = ACTIONS(1682), [anon_sym_when] = ACTIONS(1682), @@ -78068,30 +78067,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1682), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -78107,6 +78106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1682), [anon_sym_false] = ACTIONS(1682), [anon_sym_SQUOTE] = ACTIONS(1684), + [sym_null_literal] = ACTIONS(1682), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1684), [sym_safe_nav] = ACTIONS(1712), @@ -78173,7 +78173,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1810), [anon_sym_AMP_AMP] = ACTIONS(1812), [anon_sym_PIPE_PIPE] = ACTIONS(1814), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -78206,30 +78205,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -78245,6 +78244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1712), @@ -78311,7 +78311,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1810), [anon_sym_AMP_AMP] = ACTIONS(1812), [anon_sym_PIPE_PIPE] = ACTIONS(1814), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -78344,30 +78343,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -78383,6 +78382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1712), @@ -78449,7 +78449,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1810), [anon_sym_AMP_AMP] = ACTIONS(1812), [anon_sym_PIPE_PIPE] = ACTIONS(1814), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -78482,30 +78481,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -78521,6 +78520,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1712), @@ -78587,7 +78587,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1810), [anon_sym_AMP_AMP] = ACTIONS(1812), [anon_sym_PIPE_PIPE] = ACTIONS(1814), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -78620,30 +78619,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -78659,6 +78658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1712), @@ -78725,7 +78725,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1810), [anon_sym_AMP_AMP] = ACTIONS(1812), [anon_sym_PIPE_PIPE] = ACTIONS(1814), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -78758,30 +78757,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -78797,6 +78796,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1712), @@ -78863,7 +78863,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1810), [anon_sym_AMP_AMP] = ACTIONS(1812), [anon_sym_PIPE_PIPE] = ACTIONS(1814), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -78896,30 +78895,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -78935,6 +78934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1712), @@ -79001,7 +79001,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1810), [anon_sym_AMP_AMP] = ACTIONS(1812), [anon_sym_PIPE_PIPE] = ACTIONS(1814), - [anon_sym_null] = ACTIONS(1764), [anon_sym_if] = ACTIONS(1764), [anon_sym_else] = ACTIONS(1764), [anon_sym_when] = ACTIONS(1764), @@ -79034,30 +79033,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1764), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -79073,6 +79072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1764), [anon_sym_false] = ACTIONS(1764), [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_null_literal] = ACTIONS(1764), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1766), [sym_safe_nav] = ACTIONS(1712), @@ -79139,7 +79139,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1810), [anon_sym_AMP_AMP] = ACTIONS(1812), [anon_sym_PIPE_PIPE] = ACTIONS(1814), - [anon_sym_null] = ACTIONS(1682), [anon_sym_if] = ACTIONS(1682), [anon_sym_else] = ACTIONS(1682), [anon_sym_when] = ACTIONS(1682), @@ -79172,30 +79171,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1682), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -79211,6 +79210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1682), [anon_sym_false] = ACTIONS(1682), [anon_sym_SQUOTE] = ACTIONS(1684), + [sym_null_literal] = ACTIONS(1682), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1684), [sym_safe_nav] = ACTIONS(1712), @@ -79290,22 +79290,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(571), - [sym_label] = ACTIONS(597), + [sym_label] = ACTIONS(595), [anon_sym_in] = ACTIONS(1580), [anon_sym_DOT_DOT] = ACTIONS(1578), [anon_sym_QMARK_COLON] = ACTIONS(1578), [anon_sym_AMP_AMP] = ACTIONS(1578), [anon_sym_PIPE_PIPE] = ACTIONS(1578), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(583), + [anon_sym_if] = ACTIONS(581), [anon_sym_else] = ACTIONS(1580), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS_EQ] = ACTIONS(1578), [anon_sym_DASH_EQ] = ACTIONS(1578), [anon_sym_STAR_EQ] = ACTIONS(1578), @@ -79320,14 +79319,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(1578), [anon_sym_is] = ACTIONS(1580), [anon_sym_BANGis] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), [anon_sym_SLASH] = ACTIONS(1580), [anon_sym_PERCENT] = ACTIONS(1580), [anon_sym_as_QMARK] = ACTIONS(1578), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(595), [anon_sym_BANG_BANG] = ACTIONS(1578), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), @@ -79335,18 +79334,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym__automatic_semicolon] = ACTIONS(1578), [sym_safe_nav] = ACTIONS(1578), @@ -79426,22 +79426,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(439), - [sym_label] = ACTIONS(457), + [sym_label] = ACTIONS(455), [anon_sym_in] = ACTIONS(1580), [anon_sym_DOT_DOT] = ACTIONS(1578), [anon_sym_QMARK_COLON] = ACTIONS(1578), [anon_sym_AMP_AMP] = ACTIONS(1578), [anon_sym_PIPE_PIPE] = ACTIONS(1578), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(451), + [anon_sym_if] = ACTIONS(449), [anon_sym_else] = ACTIONS(1580), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS_EQ] = ACTIONS(1578), [anon_sym_DASH_EQ] = ACTIONS(1578), [anon_sym_STAR_EQ] = ACTIONS(1578), @@ -79456,14 +79455,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(1578), [anon_sym_is] = ACTIONS(1580), [anon_sym_BANGis] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_DASH] = ACTIONS(455), [anon_sym_SLASH] = ACTIONS(1580), [anon_sym_PERCENT] = ACTIONS(1580), [anon_sym_as_QMARK] = ACTIONS(1578), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_BANG] = ACTIONS(455), [anon_sym_BANG_BANG] = ACTIONS(1578), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), @@ -79471,18 +79470,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym__automatic_semicolon] = ACTIONS(1578), [sym_safe_nav] = ACTIONS(1578), @@ -79568,16 +79568,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1578), [anon_sym_AMP_AMP] = ACTIONS(1578), [anon_sym_PIPE_PIPE] = ACTIONS(1578), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(325), [anon_sym_else] = ACTIONS(1580), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS_EQ] = ACTIONS(1578), [anon_sym_DASH_EQ] = ACTIONS(1578), [anon_sym_STAR_EQ] = ACTIONS(1578), @@ -79607,18 +79606,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_safe_nav] = ACTIONS(1578), [sym_multiline_comment] = ACTIONS(3), @@ -79701,16 +79701,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1578), [anon_sym_AMP_AMP] = ACTIONS(1578), [anon_sym_PIPE_PIPE] = ACTIONS(1578), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(55), + [anon_sym_if] = ACTIONS(53), [anon_sym_else] = ACTIONS(1580), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS_EQ] = ACTIONS(1578), [anon_sym_DASH_EQ] = ACTIONS(1578), [anon_sym_STAR_EQ] = ACTIONS(1578), @@ -79740,18 +79739,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym__automatic_semicolon] = ACTIONS(1578), [sym_safe_nav] = ACTIONS(1578), @@ -79819,7 +79819,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1892), [anon_sym_AMP_AMP] = ACTIONS(1894), [anon_sym_PIPE_PIPE] = ACTIONS(1896), - [anon_sym_null] = ACTIONS(1682), [anon_sym_if] = ACTIONS(1682), [anon_sym_else] = ACTIONS(1682), [anon_sym_when] = ACTIONS(1682), @@ -79847,30 +79846,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1682), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -79886,6 +79885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1682), [anon_sym_false] = ACTIONS(1682), [anon_sym_SQUOTE] = ACTIONS(1684), + [sym_null_literal] = ACTIONS(1682), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1684), [sym_safe_nav] = ACTIONS(1712), @@ -79953,7 +79953,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1892), [anon_sym_AMP_AMP] = ACTIONS(1894), [anon_sym_PIPE_PIPE] = ACTIONS(1896), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -79981,30 +79980,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -80020,6 +80019,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1712), @@ -80087,7 +80087,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1892), [anon_sym_AMP_AMP] = ACTIONS(1894), [anon_sym_PIPE_PIPE] = ACTIONS(1896), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -80115,30 +80114,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -80154,6 +80153,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1712), @@ -80221,7 +80221,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1892), [anon_sym_AMP_AMP] = ACTIONS(1894), [anon_sym_PIPE_PIPE] = ACTIONS(1896), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -80249,30 +80248,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -80288,6 +80287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1712), @@ -80355,7 +80355,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1892), [anon_sym_AMP_AMP] = ACTIONS(1894), [anon_sym_PIPE_PIPE] = ACTIONS(1896), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -80383,30 +80382,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -80422,6 +80421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1712), @@ -80489,7 +80489,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1892), [anon_sym_AMP_AMP] = ACTIONS(1894), [anon_sym_PIPE_PIPE] = ACTIONS(1896), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -80517,30 +80516,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -80556,6 +80555,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1712), @@ -80623,7 +80623,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1892), [anon_sym_AMP_AMP] = ACTIONS(1894), [anon_sym_PIPE_PIPE] = ACTIONS(1896), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -80651,30 +80650,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -80690,6 +80689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1712), @@ -80757,7 +80757,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1892), [anon_sym_AMP_AMP] = ACTIONS(1894), [anon_sym_PIPE_PIPE] = ACTIONS(1896), - [anon_sym_null] = ACTIONS(1764), [anon_sym_if] = ACTIONS(1764), [anon_sym_else] = ACTIONS(1764), [anon_sym_when] = ACTIONS(1764), @@ -80785,30 +80784,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1764), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -80824,6 +80823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1764), [anon_sym_false] = ACTIONS(1764), [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_null_literal] = ACTIONS(1764), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1766), [sym_safe_nav] = ACTIONS(1712), @@ -80891,7 +80891,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1892), [anon_sym_AMP_AMP] = ACTIONS(1894), [anon_sym_PIPE_PIPE] = ACTIONS(1896), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -80919,30 +80918,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -80958,6 +80957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1712), @@ -81041,16 +81041,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1578), [anon_sym_AMP_AMP] = ACTIONS(1578), [anon_sym_PIPE_PIPE] = ACTIONS(1578), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(785), [anon_sym_else] = ACTIONS(1580), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS_EQ] = ACTIONS(1578), [anon_sym_DASH_EQ] = ACTIONS(1578), [anon_sym_STAR_EQ] = ACTIONS(1578), @@ -81080,18 +81079,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym__automatic_semicolon] = ACTIONS(1578), [sym_safe_nav] = ACTIONS(1578), @@ -81159,7 +81159,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1892), [anon_sym_AMP_AMP] = ACTIONS(1894), [anon_sym_PIPE_PIPE] = ACTIONS(1896), - [anon_sym_null] = ACTIONS(1682), [anon_sym_if] = ACTIONS(1682), [anon_sym_else] = ACTIONS(1682), [anon_sym_when] = ACTIONS(1682), @@ -81187,30 +81186,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1682), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -81226,6 +81225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1682), [anon_sym_false] = ACTIONS(1682), [anon_sym_SQUOTE] = ACTIONS(1684), + [sym_null_literal] = ACTIONS(1682), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1684), [sym_safe_nav] = ACTIONS(1712), @@ -81293,7 +81293,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1892), [anon_sym_AMP_AMP] = ACTIONS(1894), [anon_sym_PIPE_PIPE] = ACTIONS(1896), - [anon_sym_null] = ACTIONS(1764), [anon_sym_if] = ACTIONS(1764), [anon_sym_else] = ACTIONS(1764), [anon_sym_when] = ACTIONS(1764), @@ -81321,30 +81320,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1764), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -81360,6 +81359,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1764), [anon_sym_false] = ACTIONS(1764), [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_null_literal] = ACTIONS(1764), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1766), [sym_safe_nav] = ACTIONS(1712), @@ -81427,7 +81427,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1892), [anon_sym_AMP_AMP] = ACTIONS(1894), [anon_sym_PIPE_PIPE] = ACTIONS(1896), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -81455,30 +81454,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -81494,6 +81493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1712), @@ -81582,16 +81582,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1578), [anon_sym_AMP_AMP] = ACTIONS(1578), [anon_sym_PIPE_PIPE] = ACTIONS(1578), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), [anon_sym_else] = ACTIONS(1580), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_BANG_EQ] = ACTIONS(1580), [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), [anon_sym_EQ_EQ] = ACTIONS(1580), @@ -81616,18 +81615,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_safe_nav] = ACTIONS(1578), [sym_multiline_comment] = ACTIONS(3), @@ -81692,7 +81692,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1960), [anon_sym_AMP_AMP] = ACTIONS(1962), [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -81720,30 +81719,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -81759,6 +81758,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1712), @@ -81824,7 +81824,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1960), [anon_sym_AMP_AMP] = ACTIONS(1962), [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -81852,30 +81851,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -81891,6 +81890,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1712), @@ -81956,7 +81956,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1960), [anon_sym_AMP_AMP] = ACTIONS(1962), [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -81984,30 +81983,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -82023,6 +82022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1712), @@ -82088,7 +82088,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1960), [anon_sym_AMP_AMP] = ACTIONS(1962), [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_null] = ACTIONS(1764), [anon_sym_if] = ACTIONS(1764), [anon_sym_else] = ACTIONS(1764), [anon_sym_when] = ACTIONS(1764), @@ -82116,30 +82115,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1764), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -82155,6 +82154,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1764), [anon_sym_false] = ACTIONS(1764), [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_null_literal] = ACTIONS(1764), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1766), [sym_safe_nav] = ACTIONS(1712), @@ -82220,7 +82220,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1960), [anon_sym_AMP_AMP] = ACTIONS(1962), [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_null] = ACTIONS(1682), [anon_sym_if] = ACTIONS(1682), [anon_sym_else] = ACTIONS(1682), [anon_sym_when] = ACTIONS(1682), @@ -82248,30 +82247,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1682), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -82287,6 +82286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1682), [anon_sym_false] = ACTIONS(1682), [anon_sym_SQUOTE] = ACTIONS(1684), + [sym_null_literal] = ACTIONS(1682), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1684), [sym_safe_nav] = ACTIONS(1712), @@ -82352,7 +82352,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1960), [anon_sym_AMP_AMP] = ACTIONS(1962), [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_null] = ACTIONS(1682), [anon_sym_if] = ACTIONS(1682), [anon_sym_else] = ACTIONS(1682), [anon_sym_when] = ACTIONS(1682), @@ -82380,30 +82379,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1682), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -82419,6 +82418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1682), [anon_sym_false] = ACTIONS(1682), [anon_sym_SQUOTE] = ACTIONS(1684), + [sym_null_literal] = ACTIONS(1682), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1684), [sym_safe_nav] = ACTIONS(1712), @@ -82484,7 +82484,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1960), [anon_sym_AMP_AMP] = ACTIONS(1962), [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -82512,30 +82511,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -82551,6 +82550,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1712), @@ -82616,7 +82616,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1960), [anon_sym_AMP_AMP] = ACTIONS(1962), [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -82644,30 +82643,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -82683,6 +82682,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1712), @@ -82748,7 +82748,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1960), [anon_sym_AMP_AMP] = ACTIONS(1962), [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -82776,30 +82775,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -82815,6 +82814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1712), @@ -82880,7 +82880,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1960), [anon_sym_AMP_AMP] = ACTIONS(1962), [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -82908,30 +82907,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -82947,6 +82946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1712), @@ -83012,7 +83012,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1960), [anon_sym_AMP_AMP] = ACTIONS(1962), [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -83040,30 +83039,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -83079,6 +83078,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1712), @@ -83144,7 +83144,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1960), [anon_sym_AMP_AMP] = ACTIONS(1962), [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -83172,30 +83171,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -83211,6 +83210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1712), @@ -83276,7 +83276,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1960), [anon_sym_AMP_AMP] = ACTIONS(1962), [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -83304,30 +83303,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -83343,6 +83342,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1712), @@ -83408,7 +83408,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1960), [anon_sym_AMP_AMP] = ACTIONS(1962), [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -83436,30 +83435,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -83475,6 +83474,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1712), @@ -83540,7 +83540,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1960), [anon_sym_AMP_AMP] = ACTIONS(1962), [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_null] = ACTIONS(1764), [anon_sym_if] = ACTIONS(1764), [anon_sym_else] = ACTIONS(1764), [anon_sym_when] = ACTIONS(1764), @@ -83568,30 +83567,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1764), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -83607,6 +83606,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1764), [anon_sym_false] = ACTIONS(1764), [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_null_literal] = ACTIONS(1764), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1766), [sym_safe_nav] = ACTIONS(1712), @@ -83672,7 +83672,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1960), [anon_sym_AMP_AMP] = ACTIONS(1962), [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_null] = ACTIONS(1682), [anon_sym_if] = ACTIONS(1682), [anon_sym_else] = ACTIONS(1682), [anon_sym_when] = ACTIONS(1682), @@ -83700,30 +83699,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1682), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -83739,6 +83738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1682), [anon_sym_false] = ACTIONS(1682), [anon_sym_SQUOTE] = ACTIONS(1684), + [sym_null_literal] = ACTIONS(1682), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1684), [sym_safe_nav] = ACTIONS(1712), @@ -83804,7 +83804,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1960), [anon_sym_AMP_AMP] = ACTIONS(1962), [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_null] = ACTIONS(1764), [anon_sym_if] = ACTIONS(1764), [anon_sym_else] = ACTIONS(1764), [anon_sym_when] = ACTIONS(1764), @@ -83832,30 +83831,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1764), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -83871,6 +83870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1764), [anon_sym_false] = ACTIONS(1764), [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_null_literal] = ACTIONS(1764), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1766), [sym_safe_nav] = ACTIONS(1712), @@ -83936,7 +83936,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1960), [anon_sym_AMP_AMP] = ACTIONS(1962), [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -83964,30 +83963,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1730), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -84003,6 +84002,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1712), @@ -84083,20 +84083,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2064), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_when] = ACTIONS(2070), - [anon_sym_try] = ACTIONS(2073), - [anon_sym_throw] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2079), - [anon_sym_continue] = ACTIONS(2082), - [anon_sym_break] = ACTIONS(2082), - [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_if] = ACTIONS(2064), + [anon_sym_when] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2070), + [anon_sym_throw] = ACTIONS(2073), + [anon_sym_return] = ACTIONS(2076), + [anon_sym_continue] = ACTIONS(2079), + [anon_sym_break] = ACTIONS(2079), + [anon_sym_COLON_COLON] = ACTIONS(2082), [anon_sym_PLUS] = ACTIONS(2059), [anon_sym_DASH] = ACTIONS(2059), - [anon_sym_PLUS_PLUS] = ACTIONS(2088), - [anon_sym_DASH_DASH] = ACTIONS(2088), - [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_PLUS_PLUS] = ACTIONS(2085), + [anon_sym_DASH_DASH] = ACTIONS(2085), + [anon_sym_BANG] = ACTIONS(2085), [anon_sym_suspend] = ACTIONS(2030), [anon_sym_sealed] = ACTIONS(2030), [anon_sym_annotation] = ACTIONS(2030), @@ -84124,18 +84123,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(2046), [anon_sym_actual] = ACTIONS(2046), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2091), - [anon_sym_continue_AT] = ACTIONS(2094), - [anon_sym_break_AT] = ACTIONS(2097), - [anon_sym_this_AT] = ACTIONS(2100), - [anon_sym_super_AT] = ACTIONS(2103), - [sym_real_literal] = ACTIONS(2106), - [sym_integer_literal] = ACTIONS(2109), - [sym_hex_literal] = ACTIONS(2112), - [sym_bin_literal] = ACTIONS(2112), - [anon_sym_true] = ACTIONS(2115), - [anon_sym_false] = ACTIONS(2115), - [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_return_AT] = ACTIONS(2088), + [anon_sym_continue_AT] = ACTIONS(2091), + [anon_sym_break_AT] = ACTIONS(2094), + [anon_sym_this_AT] = ACTIONS(2097), + [anon_sym_super_AT] = ACTIONS(2100), + [sym_real_literal] = ACTIONS(2103), + [sym_integer_literal] = ACTIONS(2106), + [sym_hex_literal] = ACTIONS(2109), + [sym_bin_literal] = ACTIONS(2109), + [anon_sym_true] = ACTIONS(2112), + [anon_sym_false] = ACTIONS(2112), + [anon_sym_SQUOTE] = ACTIONS(2115), + [sym_null_literal] = ACTIONS(2118), [sym__backtick_identifier] = ACTIONS(2121), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2124), @@ -84214,20 +84214,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2163), - [anon_sym_if] = ACTIONS(2166), - [anon_sym_when] = ACTIONS(2169), - [anon_sym_try] = ACTIONS(2172), - [anon_sym_throw] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2178), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_if] = ACTIONS(2163), + [anon_sym_when] = ACTIONS(2166), + [anon_sym_try] = ACTIONS(2169), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_COLON_COLON] = ACTIONS(2181), [anon_sym_PLUS] = ACTIONS(2160), [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2187), - [anon_sym_DASH_DASH] = ACTIONS(2187), - [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), [anon_sym_suspend] = ACTIONS(2030), [anon_sym_sealed] = ACTIONS(2030), [anon_sym_annotation] = ACTIONS(2030), @@ -84255,18 +84254,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(2147), [anon_sym_actual] = ACTIONS(2147), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2190), - [anon_sym_continue_AT] = ACTIONS(2193), - [anon_sym_break_AT] = ACTIONS(2196), - [anon_sym_this_AT] = ACTIONS(2199), - [anon_sym_super_AT] = ACTIONS(2202), - [sym_real_literal] = ACTIONS(2205), - [sym_integer_literal] = ACTIONS(2208), - [sym_hex_literal] = ACTIONS(2211), - [sym_bin_literal] = ACTIONS(2211), - [anon_sym_true] = ACTIONS(2214), - [anon_sym_false] = ACTIONS(2214), - [anon_sym_SQUOTE] = ACTIONS(2217), + [anon_sym_return_AT] = ACTIONS(2187), + [anon_sym_continue_AT] = ACTIONS(2190), + [anon_sym_break_AT] = ACTIONS(2193), + [anon_sym_this_AT] = ACTIONS(2196), + [anon_sym_super_AT] = ACTIONS(2199), + [sym_real_literal] = ACTIONS(2202), + [sym_integer_literal] = ACTIONS(2205), + [sym_hex_literal] = ACTIONS(2208), + [sym_bin_literal] = ACTIONS(2208), + [anon_sym_true] = ACTIONS(2211), + [anon_sym_false] = ACTIONS(2211), + [anon_sym_SQUOTE] = ACTIONS(2214), + [sym_null_literal] = ACTIONS(2217), [sym__backtick_identifier] = ACTIONS(2220), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2223), @@ -84345,15 +84345,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2064), [anon_sym_if] = ACTIONS(2236), - [anon_sym_when] = ACTIONS(2070), - [anon_sym_try] = ACTIONS(2073), + [anon_sym_when] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2070), [anon_sym_throw] = ACTIONS(2239), [anon_sym_return] = ACTIONS(2242), - [anon_sym_continue] = ACTIONS(2082), - [anon_sym_break] = ACTIONS(2082), - [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_continue] = ACTIONS(2079), + [anon_sym_break] = ACTIONS(2079), + [anon_sym_COLON_COLON] = ACTIONS(2082), [anon_sym_PLUS] = ACTIONS(2233), [anon_sym_DASH] = ACTIONS(2233), [anon_sym_PLUS_PLUS] = ACTIONS(2245), @@ -84386,18 +84385,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(2046), [anon_sym_actual] = ACTIONS(2046), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2091), - [anon_sym_continue_AT] = ACTIONS(2094), - [anon_sym_break_AT] = ACTIONS(2097), - [anon_sym_this_AT] = ACTIONS(2100), - [anon_sym_super_AT] = ACTIONS(2103), - [sym_real_literal] = ACTIONS(2106), - [sym_integer_literal] = ACTIONS(2109), - [sym_hex_literal] = ACTIONS(2112), - [sym_bin_literal] = ACTIONS(2112), - [anon_sym_true] = ACTIONS(2115), - [anon_sym_false] = ACTIONS(2115), - [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_return_AT] = ACTIONS(2088), + [anon_sym_continue_AT] = ACTIONS(2091), + [anon_sym_break_AT] = ACTIONS(2094), + [anon_sym_this_AT] = ACTIONS(2097), + [anon_sym_super_AT] = ACTIONS(2100), + [sym_real_literal] = ACTIONS(2103), + [sym_integer_literal] = ACTIONS(2106), + [sym_hex_literal] = ACTIONS(2109), + [sym_bin_literal] = ACTIONS(2109), + [anon_sym_true] = ACTIONS(2112), + [anon_sym_false] = ACTIONS(2112), + [anon_sym_SQUOTE] = ACTIONS(2115), + [sym_null_literal] = ACTIONS(2118), [sym__backtick_identifier] = ACTIONS(2121), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2124), @@ -84476,15 +84476,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2163), [anon_sym_if] = ACTIONS(2258), - [anon_sym_when] = ACTIONS(2169), - [anon_sym_try] = ACTIONS(2172), + [anon_sym_when] = ACTIONS(2166), + [anon_sym_try] = ACTIONS(2169), [anon_sym_throw] = ACTIONS(2261), [anon_sym_return] = ACTIONS(2264), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_COLON_COLON] = ACTIONS(2181), [anon_sym_PLUS] = ACTIONS(2255), [anon_sym_DASH] = ACTIONS(2255), [anon_sym_PLUS_PLUS] = ACTIONS(2267), @@ -84517,18 +84516,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(2147), [anon_sym_actual] = ACTIONS(2147), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2190), - [anon_sym_continue_AT] = ACTIONS(2193), - [anon_sym_break_AT] = ACTIONS(2196), - [anon_sym_this_AT] = ACTIONS(2199), - [anon_sym_super_AT] = ACTIONS(2202), - [sym_real_literal] = ACTIONS(2205), - [sym_integer_literal] = ACTIONS(2208), - [sym_hex_literal] = ACTIONS(2211), - [sym_bin_literal] = ACTIONS(2211), - [anon_sym_true] = ACTIONS(2214), - [anon_sym_false] = ACTIONS(2214), - [anon_sym_SQUOTE] = ACTIONS(2217), + [anon_sym_return_AT] = ACTIONS(2187), + [anon_sym_continue_AT] = ACTIONS(2190), + [anon_sym_break_AT] = ACTIONS(2193), + [anon_sym_this_AT] = ACTIONS(2196), + [anon_sym_super_AT] = ACTIONS(2199), + [sym_real_literal] = ACTIONS(2202), + [sym_integer_literal] = ACTIONS(2205), + [sym_hex_literal] = ACTIONS(2208), + [sym_bin_literal] = ACTIONS(2208), + [anon_sym_true] = ACTIONS(2211), + [anon_sym_false] = ACTIONS(2211), + [anon_sym_SQUOTE] = ACTIONS(2214), + [sym_null_literal] = ACTIONS(2217), [sym__backtick_identifier] = ACTIONS(2220), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2223), @@ -84607,15 +84607,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2064), [anon_sym_if] = ACTIONS(2280), - [anon_sym_when] = ACTIONS(2070), - [anon_sym_try] = ACTIONS(2073), + [anon_sym_when] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2070), [anon_sym_throw] = ACTIONS(2283), [anon_sym_return] = ACTIONS(2286), - [anon_sym_continue] = ACTIONS(2082), - [anon_sym_break] = ACTIONS(2082), - [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_continue] = ACTIONS(2079), + [anon_sym_break] = ACTIONS(2079), + [anon_sym_COLON_COLON] = ACTIONS(2082), [anon_sym_PLUS] = ACTIONS(2277), [anon_sym_DASH] = ACTIONS(2277), [anon_sym_PLUS_PLUS] = ACTIONS(2289), @@ -84648,18 +84647,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(2046), [anon_sym_actual] = ACTIONS(2046), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2091), - [anon_sym_continue_AT] = ACTIONS(2094), - [anon_sym_break_AT] = ACTIONS(2097), - [anon_sym_this_AT] = ACTIONS(2100), - [anon_sym_super_AT] = ACTIONS(2103), - [sym_real_literal] = ACTIONS(2106), - [sym_integer_literal] = ACTIONS(2109), - [sym_hex_literal] = ACTIONS(2112), - [sym_bin_literal] = ACTIONS(2112), - [anon_sym_true] = ACTIONS(2115), - [anon_sym_false] = ACTIONS(2115), - [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_return_AT] = ACTIONS(2088), + [anon_sym_continue_AT] = ACTIONS(2091), + [anon_sym_break_AT] = ACTIONS(2094), + [anon_sym_this_AT] = ACTIONS(2097), + [anon_sym_super_AT] = ACTIONS(2100), + [sym_real_literal] = ACTIONS(2103), + [sym_integer_literal] = ACTIONS(2106), + [sym_hex_literal] = ACTIONS(2109), + [sym_bin_literal] = ACTIONS(2109), + [anon_sym_true] = ACTIONS(2112), + [anon_sym_false] = ACTIONS(2112), + [anon_sym_SQUOTE] = ACTIONS(2115), + [sym_null_literal] = ACTIONS(2118), [sym__backtick_identifier] = ACTIONS(2121), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2124), @@ -84738,20 +84738,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2328), - [anon_sym_if] = ACTIONS(2331), - [anon_sym_when] = ACTIONS(2334), - [anon_sym_try] = ACTIONS(2337), - [anon_sym_throw] = ACTIONS(2340), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_continue] = ACTIONS(2346), - [anon_sym_break] = ACTIONS(2346), - [anon_sym_COLON_COLON] = ACTIONS(2349), + [anon_sym_if] = ACTIONS(2328), + [anon_sym_when] = ACTIONS(2331), + [anon_sym_try] = ACTIONS(2334), + [anon_sym_throw] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2340), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_break] = ACTIONS(2343), + [anon_sym_COLON_COLON] = ACTIONS(2346), [anon_sym_PLUS] = ACTIONS(2325), [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_PLUS_PLUS] = ACTIONS(2352), - [anon_sym_DASH_DASH] = ACTIONS(2352), - [anon_sym_BANG] = ACTIONS(2352), + [anon_sym_PLUS_PLUS] = ACTIONS(2349), + [anon_sym_DASH_DASH] = ACTIONS(2349), + [anon_sym_BANG] = ACTIONS(2349), [anon_sym_suspend] = ACTIONS(2030), [anon_sym_sealed] = ACTIONS(2030), [anon_sym_annotation] = ACTIONS(2030), @@ -84779,18 +84778,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(2312), [anon_sym_actual] = ACTIONS(2312), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2190), - [anon_sym_continue_AT] = ACTIONS(2355), - [anon_sym_break_AT] = ACTIONS(2358), - [anon_sym_this_AT] = ACTIONS(2361), - [anon_sym_super_AT] = ACTIONS(2364), - [sym_real_literal] = ACTIONS(2367), - [sym_integer_literal] = ACTIONS(2370), - [sym_hex_literal] = ACTIONS(2373), - [sym_bin_literal] = ACTIONS(2373), - [anon_sym_true] = ACTIONS(2376), - [anon_sym_false] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(2379), + [anon_sym_return_AT] = ACTIONS(2187), + [anon_sym_continue_AT] = ACTIONS(2352), + [anon_sym_break_AT] = ACTIONS(2355), + [anon_sym_this_AT] = ACTIONS(2358), + [anon_sym_super_AT] = ACTIONS(2361), + [sym_real_literal] = ACTIONS(2364), + [sym_integer_literal] = ACTIONS(2367), + [sym_hex_literal] = ACTIONS(2370), + [sym_bin_literal] = ACTIONS(2370), + [anon_sym_true] = ACTIONS(2373), + [anon_sym_false] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2376), + [sym_null_literal] = ACTIONS(2379), [sym__backtick_identifier] = ACTIONS(2382), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2385), @@ -84869,15 +84869,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2328), [anon_sym_if] = ACTIONS(2398), - [anon_sym_when] = ACTIONS(2334), - [anon_sym_try] = ACTIONS(2337), + [anon_sym_when] = ACTIONS(2331), + [anon_sym_try] = ACTIONS(2334), [anon_sym_throw] = ACTIONS(2401), [anon_sym_return] = ACTIONS(2404), - [anon_sym_continue] = ACTIONS(2346), - [anon_sym_break] = ACTIONS(2346), - [anon_sym_COLON_COLON] = ACTIONS(2349), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_break] = ACTIONS(2343), + [anon_sym_COLON_COLON] = ACTIONS(2346), [anon_sym_PLUS] = ACTIONS(2395), [anon_sym_DASH] = ACTIONS(2395), [anon_sym_PLUS_PLUS] = ACTIONS(2407), @@ -84910,18 +84909,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(2312), [anon_sym_actual] = ACTIONS(2312), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2190), - [anon_sym_continue_AT] = ACTIONS(2355), - [anon_sym_break_AT] = ACTIONS(2358), - [anon_sym_this_AT] = ACTIONS(2361), - [anon_sym_super_AT] = ACTIONS(2364), - [sym_real_literal] = ACTIONS(2367), - [sym_integer_literal] = ACTIONS(2370), - [sym_hex_literal] = ACTIONS(2373), - [sym_bin_literal] = ACTIONS(2373), - [anon_sym_true] = ACTIONS(2376), - [anon_sym_false] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(2379), + [anon_sym_return_AT] = ACTIONS(2187), + [anon_sym_continue_AT] = ACTIONS(2352), + [anon_sym_break_AT] = ACTIONS(2355), + [anon_sym_this_AT] = ACTIONS(2358), + [anon_sym_super_AT] = ACTIONS(2361), + [sym_real_literal] = ACTIONS(2364), + [sym_integer_literal] = ACTIONS(2367), + [sym_hex_literal] = ACTIONS(2370), + [sym_bin_literal] = ACTIONS(2370), + [anon_sym_true] = ACTIONS(2373), + [anon_sym_false] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2376), + [sym_null_literal] = ACTIONS(2379), [sym__backtick_identifier] = ACTIONS(2382), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2385), @@ -85000,20 +85000,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2446), - [anon_sym_if] = ACTIONS(2449), - [anon_sym_when] = ACTIONS(2452), - [anon_sym_try] = ACTIONS(2455), - [anon_sym_throw] = ACTIONS(2458), - [anon_sym_return] = ACTIONS(2461), - [anon_sym_continue] = ACTIONS(2464), - [anon_sym_break] = ACTIONS(2464), - [anon_sym_COLON_COLON] = ACTIONS(2467), + [anon_sym_if] = ACTIONS(2446), + [anon_sym_when] = ACTIONS(2449), + [anon_sym_try] = ACTIONS(2452), + [anon_sym_throw] = ACTIONS(2455), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2461), + [anon_sym_break] = ACTIONS(2461), + [anon_sym_COLON_COLON] = ACTIONS(2464), [anon_sym_PLUS] = ACTIONS(2443), [anon_sym_DASH] = ACTIONS(2443), - [anon_sym_PLUS_PLUS] = ACTIONS(2470), - [anon_sym_DASH_DASH] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2467), + [anon_sym_DASH_DASH] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2467), [anon_sym_suspend] = ACTIONS(2030), [anon_sym_sealed] = ACTIONS(2030), [anon_sym_annotation] = ACTIONS(2030), @@ -85041,18 +85040,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(2430), [anon_sym_actual] = ACTIONS(2430), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2473), - [anon_sym_continue_AT] = ACTIONS(2476), - [anon_sym_break_AT] = ACTIONS(2479), - [anon_sym_this_AT] = ACTIONS(2482), - [anon_sym_super_AT] = ACTIONS(2485), - [sym_real_literal] = ACTIONS(2488), - [sym_integer_literal] = ACTIONS(2491), - [sym_hex_literal] = ACTIONS(2494), - [sym_bin_literal] = ACTIONS(2494), - [anon_sym_true] = ACTIONS(2497), - [anon_sym_false] = ACTIONS(2497), - [anon_sym_SQUOTE] = ACTIONS(2500), + [anon_sym_return_AT] = ACTIONS(2470), + [anon_sym_continue_AT] = ACTIONS(2473), + [anon_sym_break_AT] = ACTIONS(2476), + [anon_sym_this_AT] = ACTIONS(2479), + [anon_sym_super_AT] = ACTIONS(2482), + [sym_real_literal] = ACTIONS(2485), + [sym_integer_literal] = ACTIONS(2488), + [sym_hex_literal] = ACTIONS(2491), + [sym_bin_literal] = ACTIONS(2491), + [anon_sym_true] = ACTIONS(2494), + [anon_sym_false] = ACTIONS(2494), + [anon_sym_SQUOTE] = ACTIONS(2497), + [sym_null_literal] = ACTIONS(2500), [sym__backtick_identifier] = ACTIONS(2503), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2506), @@ -85131,20 +85131,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2545), - [anon_sym_if] = ACTIONS(2548), - [anon_sym_when] = ACTIONS(2551), - [anon_sym_try] = ACTIONS(2554), - [anon_sym_throw] = ACTIONS(2557), - [anon_sym_return] = ACTIONS(2560), - [anon_sym_continue] = ACTIONS(2563), - [anon_sym_break] = ACTIONS(2563), - [anon_sym_COLON_COLON] = ACTIONS(2566), + [anon_sym_if] = ACTIONS(2545), + [anon_sym_when] = ACTIONS(2548), + [anon_sym_try] = ACTIONS(2551), + [anon_sym_throw] = ACTIONS(2554), + [anon_sym_return] = ACTIONS(2557), + [anon_sym_continue] = ACTIONS(2560), + [anon_sym_break] = ACTIONS(2560), + [anon_sym_COLON_COLON] = ACTIONS(2563), [anon_sym_PLUS] = ACTIONS(2542), [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_PLUS_PLUS] = ACTIONS(2569), - [anon_sym_DASH_DASH] = ACTIONS(2569), - [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), [anon_sym_suspend] = ACTIONS(2030), [anon_sym_sealed] = ACTIONS(2030), [anon_sym_annotation] = ACTIONS(2030), @@ -85172,18 +85171,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(2529), [anon_sym_actual] = ACTIONS(2529), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2091), - [anon_sym_continue_AT] = ACTIONS(2572), - [anon_sym_break_AT] = ACTIONS(2575), - [anon_sym_this_AT] = ACTIONS(2578), - [anon_sym_super_AT] = ACTIONS(2581), - [sym_real_literal] = ACTIONS(2584), - [sym_integer_literal] = ACTIONS(2587), - [sym_hex_literal] = ACTIONS(2590), - [sym_bin_literal] = ACTIONS(2590), - [anon_sym_true] = ACTIONS(2593), - [anon_sym_false] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_return_AT] = ACTIONS(2088), + [anon_sym_continue_AT] = ACTIONS(2569), + [anon_sym_break_AT] = ACTIONS(2572), + [anon_sym_this_AT] = ACTIONS(2575), + [anon_sym_super_AT] = ACTIONS(2578), + [sym_real_literal] = ACTIONS(2581), + [sym_integer_literal] = ACTIONS(2584), + [sym_hex_literal] = ACTIONS(2587), + [sym_bin_literal] = ACTIONS(2587), + [anon_sym_true] = ACTIONS(2590), + [anon_sym_false] = ACTIONS(2590), + [anon_sym_SQUOTE] = ACTIONS(2593), + [sym_null_literal] = ACTIONS(2596), [sym__backtick_identifier] = ACTIONS(2599), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2602), @@ -85262,20 +85262,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2641), - [anon_sym_if] = ACTIONS(2644), - [anon_sym_when] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2650), - [anon_sym_throw] = ACTIONS(2653), - [anon_sym_return] = ACTIONS(2656), - [anon_sym_continue] = ACTIONS(2659), - [anon_sym_break] = ACTIONS(2659), - [anon_sym_COLON_COLON] = ACTIONS(2662), + [anon_sym_if] = ACTIONS(2641), + [anon_sym_when] = ACTIONS(2644), + [anon_sym_try] = ACTIONS(2647), + [anon_sym_throw] = ACTIONS(2650), + [anon_sym_return] = ACTIONS(2653), + [anon_sym_continue] = ACTIONS(2656), + [anon_sym_break] = ACTIONS(2656), + [anon_sym_COLON_COLON] = ACTIONS(2659), [anon_sym_PLUS] = ACTIONS(2638), [anon_sym_DASH] = ACTIONS(2638), - [anon_sym_PLUS_PLUS] = ACTIONS(2665), - [anon_sym_DASH_DASH] = ACTIONS(2665), - [anon_sym_BANG] = ACTIONS(2665), + [anon_sym_PLUS_PLUS] = ACTIONS(2662), + [anon_sym_DASH_DASH] = ACTIONS(2662), + [anon_sym_BANG] = ACTIONS(2662), [anon_sym_suspend] = ACTIONS(2030), [anon_sym_sealed] = ACTIONS(2030), [anon_sym_annotation] = ACTIONS(2030), @@ -85303,18 +85302,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(2625), [anon_sym_actual] = ACTIONS(2625), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2668), - [anon_sym_continue_AT] = ACTIONS(2671), - [anon_sym_break_AT] = ACTIONS(2674), - [anon_sym_this_AT] = ACTIONS(2677), - [anon_sym_super_AT] = ACTIONS(2680), - [sym_real_literal] = ACTIONS(2683), - [sym_integer_literal] = ACTIONS(2686), - [sym_hex_literal] = ACTIONS(2689), - [sym_bin_literal] = ACTIONS(2689), - [anon_sym_true] = ACTIONS(2692), - [anon_sym_false] = ACTIONS(2692), - [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_return_AT] = ACTIONS(2665), + [anon_sym_continue_AT] = ACTIONS(2668), + [anon_sym_break_AT] = ACTIONS(2671), + [anon_sym_this_AT] = ACTIONS(2674), + [anon_sym_super_AT] = ACTIONS(2677), + [sym_real_literal] = ACTIONS(2680), + [sym_integer_literal] = ACTIONS(2683), + [sym_hex_literal] = ACTIONS(2686), + [sym_bin_literal] = ACTIONS(2686), + [anon_sym_true] = ACTIONS(2689), + [anon_sym_false] = ACTIONS(2689), + [anon_sym_SQUOTE] = ACTIONS(2692), + [sym_null_literal] = ACTIONS(2695), [sym__backtick_identifier] = ACTIONS(2698), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2701), @@ -85393,15 +85393,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2641), [anon_sym_if] = ACTIONS(2714), - [anon_sym_when] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2650), + [anon_sym_when] = ACTIONS(2644), + [anon_sym_try] = ACTIONS(2647), [anon_sym_throw] = ACTIONS(2717), [anon_sym_return] = ACTIONS(2720), - [anon_sym_continue] = ACTIONS(2659), - [anon_sym_break] = ACTIONS(2659), - [anon_sym_COLON_COLON] = ACTIONS(2662), + [anon_sym_continue] = ACTIONS(2656), + [anon_sym_break] = ACTIONS(2656), + [anon_sym_COLON_COLON] = ACTIONS(2659), [anon_sym_PLUS] = ACTIONS(2711), [anon_sym_DASH] = ACTIONS(2711), [anon_sym_PLUS_PLUS] = ACTIONS(2723), @@ -85434,18 +85433,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(2625), [anon_sym_actual] = ACTIONS(2625), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2668), - [anon_sym_continue_AT] = ACTIONS(2671), - [anon_sym_break_AT] = ACTIONS(2674), - [anon_sym_this_AT] = ACTIONS(2677), - [anon_sym_super_AT] = ACTIONS(2680), - [sym_real_literal] = ACTIONS(2683), - [sym_integer_literal] = ACTIONS(2686), - [sym_hex_literal] = ACTIONS(2689), - [sym_bin_literal] = ACTIONS(2689), - [anon_sym_true] = ACTIONS(2692), - [anon_sym_false] = ACTIONS(2692), - [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_return_AT] = ACTIONS(2665), + [anon_sym_continue_AT] = ACTIONS(2668), + [anon_sym_break_AT] = ACTIONS(2671), + [anon_sym_this_AT] = ACTIONS(2674), + [anon_sym_super_AT] = ACTIONS(2677), + [sym_real_literal] = ACTIONS(2680), + [sym_integer_literal] = ACTIONS(2683), + [sym_hex_literal] = ACTIONS(2686), + [sym_bin_literal] = ACTIONS(2686), + [anon_sym_true] = ACTIONS(2689), + [anon_sym_false] = ACTIONS(2689), + [anon_sym_SQUOTE] = ACTIONS(2692), + [sym_null_literal] = ACTIONS(2695), [sym__backtick_identifier] = ACTIONS(2698), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2701), @@ -85524,15 +85524,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2545), [anon_sym_if] = ACTIONS(2736), - [anon_sym_when] = ACTIONS(2551), - [anon_sym_try] = ACTIONS(2554), + [anon_sym_when] = ACTIONS(2548), + [anon_sym_try] = ACTIONS(2551), [anon_sym_throw] = ACTIONS(2739), [anon_sym_return] = ACTIONS(2742), - [anon_sym_continue] = ACTIONS(2563), - [anon_sym_break] = ACTIONS(2563), - [anon_sym_COLON_COLON] = ACTIONS(2566), + [anon_sym_continue] = ACTIONS(2560), + [anon_sym_break] = ACTIONS(2560), + [anon_sym_COLON_COLON] = ACTIONS(2563), [anon_sym_PLUS] = ACTIONS(2733), [anon_sym_DASH] = ACTIONS(2733), [anon_sym_PLUS_PLUS] = ACTIONS(2745), @@ -85565,18 +85564,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(2529), [anon_sym_actual] = ACTIONS(2529), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2091), - [anon_sym_continue_AT] = ACTIONS(2572), - [anon_sym_break_AT] = ACTIONS(2575), - [anon_sym_this_AT] = ACTIONS(2578), - [anon_sym_super_AT] = ACTIONS(2581), - [sym_real_literal] = ACTIONS(2584), - [sym_integer_literal] = ACTIONS(2587), - [sym_hex_literal] = ACTIONS(2590), - [sym_bin_literal] = ACTIONS(2590), - [anon_sym_true] = ACTIONS(2593), - [anon_sym_false] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_return_AT] = ACTIONS(2088), + [anon_sym_continue_AT] = ACTIONS(2569), + [anon_sym_break_AT] = ACTIONS(2572), + [anon_sym_this_AT] = ACTIONS(2575), + [anon_sym_super_AT] = ACTIONS(2578), + [sym_real_literal] = ACTIONS(2581), + [sym_integer_literal] = ACTIONS(2584), + [sym_hex_literal] = ACTIONS(2587), + [sym_bin_literal] = ACTIONS(2587), + [anon_sym_true] = ACTIONS(2590), + [anon_sym_false] = ACTIONS(2590), + [anon_sym_SQUOTE] = ACTIONS(2593), + [sym_null_literal] = ACTIONS(2596), [sym__backtick_identifier] = ACTIONS(2599), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2602), @@ -85655,15 +85655,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2446), [anon_sym_if] = ACTIONS(2758), - [anon_sym_when] = ACTIONS(2452), - [anon_sym_try] = ACTIONS(2455), + [anon_sym_when] = ACTIONS(2449), + [anon_sym_try] = ACTIONS(2452), [anon_sym_throw] = ACTIONS(2761), [anon_sym_return] = ACTIONS(2764), - [anon_sym_continue] = ACTIONS(2464), - [anon_sym_break] = ACTIONS(2464), - [anon_sym_COLON_COLON] = ACTIONS(2467), + [anon_sym_continue] = ACTIONS(2461), + [anon_sym_break] = ACTIONS(2461), + [anon_sym_COLON_COLON] = ACTIONS(2464), [anon_sym_PLUS] = ACTIONS(2755), [anon_sym_DASH] = ACTIONS(2755), [anon_sym_PLUS_PLUS] = ACTIONS(2767), @@ -85696,18 +85695,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(2430), [anon_sym_actual] = ACTIONS(2430), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2473), - [anon_sym_continue_AT] = ACTIONS(2476), - [anon_sym_break_AT] = ACTIONS(2479), - [anon_sym_this_AT] = ACTIONS(2482), - [anon_sym_super_AT] = ACTIONS(2485), - [sym_real_literal] = ACTIONS(2488), - [sym_integer_literal] = ACTIONS(2491), - [sym_hex_literal] = ACTIONS(2494), - [sym_bin_literal] = ACTIONS(2494), - [anon_sym_true] = ACTIONS(2497), - [anon_sym_false] = ACTIONS(2497), - [anon_sym_SQUOTE] = ACTIONS(2500), + [anon_sym_return_AT] = ACTIONS(2470), + [anon_sym_continue_AT] = ACTIONS(2473), + [anon_sym_break_AT] = ACTIONS(2476), + [anon_sym_this_AT] = ACTIONS(2479), + [anon_sym_super_AT] = ACTIONS(2482), + [sym_real_literal] = ACTIONS(2485), + [sym_integer_literal] = ACTIONS(2488), + [sym_hex_literal] = ACTIONS(2491), + [sym_bin_literal] = ACTIONS(2491), + [anon_sym_true] = ACTIONS(2494), + [anon_sym_false] = ACTIONS(2494), + [anon_sym_SQUOTE] = ACTIONS(2497), + [sym_null_literal] = ACTIONS(2500), [sym__backtick_identifier] = ACTIONS(2503), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2506), @@ -85786,15 +85786,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2163), [anon_sym_if] = ACTIONS(2780), - [anon_sym_when] = ACTIONS(2169), - [anon_sym_try] = ACTIONS(2172), + [anon_sym_when] = ACTIONS(2166), + [anon_sym_try] = ACTIONS(2169), [anon_sym_throw] = ACTIONS(2783), [anon_sym_return] = ACTIONS(2786), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_COLON_COLON] = ACTIONS(2181), [anon_sym_PLUS] = ACTIONS(2777), [anon_sym_DASH] = ACTIONS(2777), [anon_sym_PLUS_PLUS] = ACTIONS(2789), @@ -85827,18 +85826,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(2147), [anon_sym_actual] = ACTIONS(2147), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2190), - [anon_sym_continue_AT] = ACTIONS(2193), - [anon_sym_break_AT] = ACTIONS(2196), - [anon_sym_this_AT] = ACTIONS(2199), - [anon_sym_super_AT] = ACTIONS(2202), - [sym_real_literal] = ACTIONS(2205), - [sym_integer_literal] = ACTIONS(2208), - [sym_hex_literal] = ACTIONS(2211), - [sym_bin_literal] = ACTIONS(2211), - [anon_sym_true] = ACTIONS(2214), - [anon_sym_false] = ACTIONS(2214), - [anon_sym_SQUOTE] = ACTIONS(2217), + [anon_sym_return_AT] = ACTIONS(2187), + [anon_sym_continue_AT] = ACTIONS(2190), + [anon_sym_break_AT] = ACTIONS(2193), + [anon_sym_this_AT] = ACTIONS(2196), + [anon_sym_super_AT] = ACTIONS(2199), + [sym_real_literal] = ACTIONS(2202), + [sym_integer_literal] = ACTIONS(2205), + [sym_hex_literal] = ACTIONS(2208), + [sym_bin_literal] = ACTIONS(2208), + [anon_sym_true] = ACTIONS(2211), + [anon_sym_false] = ACTIONS(2211), + [anon_sym_SQUOTE] = ACTIONS(2214), + [sym_null_literal] = ACTIONS(2217), [sym__backtick_identifier] = ACTIONS(2220), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2223), @@ -85917,15 +85917,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2446), [anon_sym_if] = ACTIONS(2802), - [anon_sym_when] = ACTIONS(2452), - [anon_sym_try] = ACTIONS(2455), + [anon_sym_when] = ACTIONS(2449), + [anon_sym_try] = ACTIONS(2452), [anon_sym_throw] = ACTIONS(2805), [anon_sym_return] = ACTIONS(2808), - [anon_sym_continue] = ACTIONS(2464), - [anon_sym_break] = ACTIONS(2464), - [anon_sym_COLON_COLON] = ACTIONS(2467), + [anon_sym_continue] = ACTIONS(2461), + [anon_sym_break] = ACTIONS(2461), + [anon_sym_COLON_COLON] = ACTIONS(2464), [anon_sym_PLUS] = ACTIONS(2799), [anon_sym_DASH] = ACTIONS(2799), [anon_sym_PLUS_PLUS] = ACTIONS(2811), @@ -85958,18 +85957,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(2430), [anon_sym_actual] = ACTIONS(2430), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2473), - [anon_sym_continue_AT] = ACTIONS(2476), - [anon_sym_break_AT] = ACTIONS(2479), - [anon_sym_this_AT] = ACTIONS(2482), - [anon_sym_super_AT] = ACTIONS(2485), - [sym_real_literal] = ACTIONS(2488), - [sym_integer_literal] = ACTIONS(2491), - [sym_hex_literal] = ACTIONS(2494), - [sym_bin_literal] = ACTIONS(2494), - [anon_sym_true] = ACTIONS(2497), - [anon_sym_false] = ACTIONS(2497), - [anon_sym_SQUOTE] = ACTIONS(2500), + [anon_sym_return_AT] = ACTIONS(2470), + [anon_sym_continue_AT] = ACTIONS(2473), + [anon_sym_break_AT] = ACTIONS(2476), + [anon_sym_this_AT] = ACTIONS(2479), + [anon_sym_super_AT] = ACTIONS(2482), + [sym_real_literal] = ACTIONS(2485), + [sym_integer_literal] = ACTIONS(2488), + [sym_hex_literal] = ACTIONS(2491), + [sym_bin_literal] = ACTIONS(2491), + [anon_sym_true] = ACTIONS(2494), + [anon_sym_false] = ACTIONS(2494), + [anon_sym_SQUOTE] = ACTIONS(2497), + [sym_null_literal] = ACTIONS(2500), [sym__backtick_identifier] = ACTIONS(2503), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2506), @@ -86048,15 +86048,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2163), [anon_sym_if] = ACTIONS(2824), - [anon_sym_when] = ACTIONS(2169), - [anon_sym_try] = ACTIONS(2172), + [anon_sym_when] = ACTIONS(2166), + [anon_sym_try] = ACTIONS(2169), [anon_sym_throw] = ACTIONS(2827), [anon_sym_return] = ACTIONS(2830), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_COLON_COLON] = ACTIONS(2181), [anon_sym_PLUS] = ACTIONS(2821), [anon_sym_DASH] = ACTIONS(2821), [anon_sym_PLUS_PLUS] = ACTIONS(2833), @@ -86089,18 +86088,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(2147), [anon_sym_actual] = ACTIONS(2147), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2190), - [anon_sym_continue_AT] = ACTIONS(2193), - [anon_sym_break_AT] = ACTIONS(2196), - [anon_sym_this_AT] = ACTIONS(2199), - [anon_sym_super_AT] = ACTIONS(2202), - [sym_real_literal] = ACTIONS(2205), - [sym_integer_literal] = ACTIONS(2208), - [sym_hex_literal] = ACTIONS(2211), - [sym_bin_literal] = ACTIONS(2211), - [anon_sym_true] = ACTIONS(2214), - [anon_sym_false] = ACTIONS(2214), - [anon_sym_SQUOTE] = ACTIONS(2217), + [anon_sym_return_AT] = ACTIONS(2187), + [anon_sym_continue_AT] = ACTIONS(2190), + [anon_sym_break_AT] = ACTIONS(2193), + [anon_sym_this_AT] = ACTIONS(2196), + [anon_sym_super_AT] = ACTIONS(2199), + [sym_real_literal] = ACTIONS(2202), + [sym_integer_literal] = ACTIONS(2205), + [sym_hex_literal] = ACTIONS(2208), + [sym_bin_literal] = ACTIONS(2208), + [anon_sym_true] = ACTIONS(2211), + [anon_sym_false] = ACTIONS(2211), + [anon_sym_SQUOTE] = ACTIONS(2214), + [sym_null_literal] = ACTIONS(2217), [sym__backtick_identifier] = ACTIONS(2220), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2223), @@ -86179,15 +86179,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2328), [anon_sym_if] = ACTIONS(2846), - [anon_sym_when] = ACTIONS(2334), - [anon_sym_try] = ACTIONS(2337), + [anon_sym_when] = ACTIONS(2331), + [anon_sym_try] = ACTIONS(2334), [anon_sym_throw] = ACTIONS(2849), [anon_sym_return] = ACTIONS(2852), - [anon_sym_continue] = ACTIONS(2346), - [anon_sym_break] = ACTIONS(2346), - [anon_sym_COLON_COLON] = ACTIONS(2349), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_break] = ACTIONS(2343), + [anon_sym_COLON_COLON] = ACTIONS(2346), [anon_sym_PLUS] = ACTIONS(2843), [anon_sym_DASH] = ACTIONS(2843), [anon_sym_PLUS_PLUS] = ACTIONS(2855), @@ -86220,18 +86219,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(2312), [anon_sym_actual] = ACTIONS(2312), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2190), - [anon_sym_continue_AT] = ACTIONS(2355), - [anon_sym_break_AT] = ACTIONS(2358), - [anon_sym_this_AT] = ACTIONS(2361), - [anon_sym_super_AT] = ACTIONS(2364), - [sym_real_literal] = ACTIONS(2367), - [sym_integer_literal] = ACTIONS(2370), - [sym_hex_literal] = ACTIONS(2373), - [sym_bin_literal] = ACTIONS(2373), - [anon_sym_true] = ACTIONS(2376), - [anon_sym_false] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(2379), + [anon_sym_return_AT] = ACTIONS(2187), + [anon_sym_continue_AT] = ACTIONS(2352), + [anon_sym_break_AT] = ACTIONS(2355), + [anon_sym_this_AT] = ACTIONS(2358), + [anon_sym_super_AT] = ACTIONS(2361), + [sym_real_literal] = ACTIONS(2364), + [sym_integer_literal] = ACTIONS(2367), + [sym_hex_literal] = ACTIONS(2370), + [sym_bin_literal] = ACTIONS(2370), + [anon_sym_true] = ACTIONS(2373), + [anon_sym_false] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2376), + [sym_null_literal] = ACTIONS(2379), [sym__backtick_identifier] = ACTIONS(2382), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2385), @@ -86310,15 +86310,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2641), [anon_sym_if] = ACTIONS(2868), - [anon_sym_when] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2650), + [anon_sym_when] = ACTIONS(2644), + [anon_sym_try] = ACTIONS(2647), [anon_sym_throw] = ACTIONS(2871), [anon_sym_return] = ACTIONS(2874), - [anon_sym_continue] = ACTIONS(2659), - [anon_sym_break] = ACTIONS(2659), - [anon_sym_COLON_COLON] = ACTIONS(2662), + [anon_sym_continue] = ACTIONS(2656), + [anon_sym_break] = ACTIONS(2656), + [anon_sym_COLON_COLON] = ACTIONS(2659), [anon_sym_PLUS] = ACTIONS(2865), [anon_sym_DASH] = ACTIONS(2865), [anon_sym_PLUS_PLUS] = ACTIONS(2877), @@ -86351,18 +86350,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(2625), [anon_sym_actual] = ACTIONS(2625), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2668), - [anon_sym_continue_AT] = ACTIONS(2671), - [anon_sym_break_AT] = ACTIONS(2674), - [anon_sym_this_AT] = ACTIONS(2677), - [anon_sym_super_AT] = ACTIONS(2680), - [sym_real_literal] = ACTIONS(2683), - [sym_integer_literal] = ACTIONS(2686), - [sym_hex_literal] = ACTIONS(2689), - [sym_bin_literal] = ACTIONS(2689), - [anon_sym_true] = ACTIONS(2692), - [anon_sym_false] = ACTIONS(2692), - [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_return_AT] = ACTIONS(2665), + [anon_sym_continue_AT] = ACTIONS(2668), + [anon_sym_break_AT] = ACTIONS(2671), + [anon_sym_this_AT] = ACTIONS(2674), + [anon_sym_super_AT] = ACTIONS(2677), + [sym_real_literal] = ACTIONS(2680), + [sym_integer_literal] = ACTIONS(2683), + [sym_hex_literal] = ACTIONS(2686), + [sym_bin_literal] = ACTIONS(2686), + [anon_sym_true] = ACTIONS(2689), + [anon_sym_false] = ACTIONS(2689), + [anon_sym_SQUOTE] = ACTIONS(2692), + [sym_null_literal] = ACTIONS(2695), [sym__backtick_identifier] = ACTIONS(2698), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2701), @@ -86441,15 +86441,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2328), [anon_sym_if] = ACTIONS(2890), - [anon_sym_when] = ACTIONS(2334), - [anon_sym_try] = ACTIONS(2337), + [anon_sym_when] = ACTIONS(2331), + [anon_sym_try] = ACTIONS(2334), [anon_sym_throw] = ACTIONS(2893), [anon_sym_return] = ACTIONS(2896), - [anon_sym_continue] = ACTIONS(2346), - [anon_sym_break] = ACTIONS(2346), - [anon_sym_COLON_COLON] = ACTIONS(2349), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_break] = ACTIONS(2343), + [anon_sym_COLON_COLON] = ACTIONS(2346), [anon_sym_PLUS] = ACTIONS(2887), [anon_sym_DASH] = ACTIONS(2887), [anon_sym_PLUS_PLUS] = ACTIONS(2899), @@ -86482,18 +86481,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(2312), [anon_sym_actual] = ACTIONS(2312), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2190), - [anon_sym_continue_AT] = ACTIONS(2355), - [anon_sym_break_AT] = ACTIONS(2358), - [anon_sym_this_AT] = ACTIONS(2361), - [anon_sym_super_AT] = ACTIONS(2364), - [sym_real_literal] = ACTIONS(2367), - [sym_integer_literal] = ACTIONS(2370), - [sym_hex_literal] = ACTIONS(2373), - [sym_bin_literal] = ACTIONS(2373), - [anon_sym_true] = ACTIONS(2376), - [anon_sym_false] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(2379), + [anon_sym_return_AT] = ACTIONS(2187), + [anon_sym_continue_AT] = ACTIONS(2352), + [anon_sym_break_AT] = ACTIONS(2355), + [anon_sym_this_AT] = ACTIONS(2358), + [anon_sym_super_AT] = ACTIONS(2361), + [sym_real_literal] = ACTIONS(2364), + [sym_integer_literal] = ACTIONS(2367), + [sym_hex_literal] = ACTIONS(2370), + [sym_bin_literal] = ACTIONS(2370), + [anon_sym_true] = ACTIONS(2373), + [anon_sym_false] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2376), + [sym_null_literal] = ACTIONS(2379), [sym__backtick_identifier] = ACTIONS(2382), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2385), @@ -86572,15 +86572,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2641), [anon_sym_if] = ACTIONS(2912), - [anon_sym_when] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2650), + [anon_sym_when] = ACTIONS(2644), + [anon_sym_try] = ACTIONS(2647), [anon_sym_throw] = ACTIONS(2915), [anon_sym_return] = ACTIONS(2918), - [anon_sym_continue] = ACTIONS(2659), - [anon_sym_break] = ACTIONS(2659), - [anon_sym_COLON_COLON] = ACTIONS(2662), + [anon_sym_continue] = ACTIONS(2656), + [anon_sym_break] = ACTIONS(2656), + [anon_sym_COLON_COLON] = ACTIONS(2659), [anon_sym_PLUS] = ACTIONS(2909), [anon_sym_DASH] = ACTIONS(2909), [anon_sym_PLUS_PLUS] = ACTIONS(2921), @@ -86613,18 +86612,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(2625), [anon_sym_actual] = ACTIONS(2625), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2668), - [anon_sym_continue_AT] = ACTIONS(2671), - [anon_sym_break_AT] = ACTIONS(2674), - [anon_sym_this_AT] = ACTIONS(2677), - [anon_sym_super_AT] = ACTIONS(2680), - [sym_real_literal] = ACTIONS(2683), - [sym_integer_literal] = ACTIONS(2686), - [sym_hex_literal] = ACTIONS(2689), - [sym_bin_literal] = ACTIONS(2689), - [anon_sym_true] = ACTIONS(2692), - [anon_sym_false] = ACTIONS(2692), - [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_return_AT] = ACTIONS(2665), + [anon_sym_continue_AT] = ACTIONS(2668), + [anon_sym_break_AT] = ACTIONS(2671), + [anon_sym_this_AT] = ACTIONS(2674), + [anon_sym_super_AT] = ACTIONS(2677), + [sym_real_literal] = ACTIONS(2680), + [sym_integer_literal] = ACTIONS(2683), + [sym_hex_literal] = ACTIONS(2686), + [sym_bin_literal] = ACTIONS(2686), + [anon_sym_true] = ACTIONS(2689), + [anon_sym_false] = ACTIONS(2689), + [anon_sym_SQUOTE] = ACTIONS(2692), + [sym_null_literal] = ACTIONS(2695), [sym__backtick_identifier] = ACTIONS(2698), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2701), @@ -86703,15 +86703,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2446), [anon_sym_if] = ACTIONS(2934), - [anon_sym_when] = ACTIONS(2452), - [anon_sym_try] = ACTIONS(2455), + [anon_sym_when] = ACTIONS(2449), + [anon_sym_try] = ACTIONS(2452), [anon_sym_throw] = ACTIONS(2937), [anon_sym_return] = ACTIONS(2940), - [anon_sym_continue] = ACTIONS(2464), - [anon_sym_break] = ACTIONS(2464), - [anon_sym_COLON_COLON] = ACTIONS(2467), + [anon_sym_continue] = ACTIONS(2461), + [anon_sym_break] = ACTIONS(2461), + [anon_sym_COLON_COLON] = ACTIONS(2464), [anon_sym_PLUS] = ACTIONS(2931), [anon_sym_DASH] = ACTIONS(2931), [anon_sym_PLUS_PLUS] = ACTIONS(2943), @@ -86744,18 +86743,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(2430), [anon_sym_actual] = ACTIONS(2430), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2473), - [anon_sym_continue_AT] = ACTIONS(2476), - [anon_sym_break_AT] = ACTIONS(2479), - [anon_sym_this_AT] = ACTIONS(2482), - [anon_sym_super_AT] = ACTIONS(2485), - [sym_real_literal] = ACTIONS(2488), - [sym_integer_literal] = ACTIONS(2491), - [sym_hex_literal] = ACTIONS(2494), - [sym_bin_literal] = ACTIONS(2494), - [anon_sym_true] = ACTIONS(2497), - [anon_sym_false] = ACTIONS(2497), - [anon_sym_SQUOTE] = ACTIONS(2500), + [anon_sym_return_AT] = ACTIONS(2470), + [anon_sym_continue_AT] = ACTIONS(2473), + [anon_sym_break_AT] = ACTIONS(2476), + [anon_sym_this_AT] = ACTIONS(2479), + [anon_sym_super_AT] = ACTIONS(2482), + [sym_real_literal] = ACTIONS(2485), + [sym_integer_literal] = ACTIONS(2488), + [sym_hex_literal] = ACTIONS(2491), + [sym_bin_literal] = ACTIONS(2491), + [anon_sym_true] = ACTIONS(2494), + [anon_sym_false] = ACTIONS(2494), + [anon_sym_SQUOTE] = ACTIONS(2497), + [sym_null_literal] = ACTIONS(2500), [sym__backtick_identifier] = ACTIONS(2503), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2506), @@ -86834,15 +86834,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2545), [anon_sym_if] = ACTIONS(2956), - [anon_sym_when] = ACTIONS(2551), - [anon_sym_try] = ACTIONS(2554), + [anon_sym_when] = ACTIONS(2548), + [anon_sym_try] = ACTIONS(2551), [anon_sym_throw] = ACTIONS(2959), [anon_sym_return] = ACTIONS(2962), - [anon_sym_continue] = ACTIONS(2563), - [anon_sym_break] = ACTIONS(2563), - [anon_sym_COLON_COLON] = ACTIONS(2566), + [anon_sym_continue] = ACTIONS(2560), + [anon_sym_break] = ACTIONS(2560), + [anon_sym_COLON_COLON] = ACTIONS(2563), [anon_sym_PLUS] = ACTIONS(2953), [anon_sym_DASH] = ACTIONS(2953), [anon_sym_PLUS_PLUS] = ACTIONS(2965), @@ -86875,18 +86874,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(2529), [anon_sym_actual] = ACTIONS(2529), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2091), - [anon_sym_continue_AT] = ACTIONS(2572), - [anon_sym_break_AT] = ACTIONS(2575), - [anon_sym_this_AT] = ACTIONS(2578), - [anon_sym_super_AT] = ACTIONS(2581), - [sym_real_literal] = ACTIONS(2584), - [sym_integer_literal] = ACTIONS(2587), - [sym_hex_literal] = ACTIONS(2590), - [sym_bin_literal] = ACTIONS(2590), - [anon_sym_true] = ACTIONS(2593), - [anon_sym_false] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_return_AT] = ACTIONS(2088), + [anon_sym_continue_AT] = ACTIONS(2569), + [anon_sym_break_AT] = ACTIONS(2572), + [anon_sym_this_AT] = ACTIONS(2575), + [anon_sym_super_AT] = ACTIONS(2578), + [sym_real_literal] = ACTIONS(2581), + [sym_integer_literal] = ACTIONS(2584), + [sym_hex_literal] = ACTIONS(2587), + [sym_bin_literal] = ACTIONS(2587), + [anon_sym_true] = ACTIONS(2590), + [anon_sym_false] = ACTIONS(2590), + [anon_sym_SQUOTE] = ACTIONS(2593), + [sym_null_literal] = ACTIONS(2596), [sym__backtick_identifier] = ACTIONS(2599), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2602), @@ -86965,15 +86965,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2545), [anon_sym_if] = ACTIONS(2978), - [anon_sym_when] = ACTIONS(2551), - [anon_sym_try] = ACTIONS(2554), + [anon_sym_when] = ACTIONS(2548), + [anon_sym_try] = ACTIONS(2551), [anon_sym_throw] = ACTIONS(2981), [anon_sym_return] = ACTIONS(2984), - [anon_sym_continue] = ACTIONS(2563), - [anon_sym_break] = ACTIONS(2563), - [anon_sym_COLON_COLON] = ACTIONS(2566), + [anon_sym_continue] = ACTIONS(2560), + [anon_sym_break] = ACTIONS(2560), + [anon_sym_COLON_COLON] = ACTIONS(2563), [anon_sym_PLUS] = ACTIONS(2975), [anon_sym_DASH] = ACTIONS(2975), [anon_sym_PLUS_PLUS] = ACTIONS(2987), @@ -87006,18 +87005,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(2529), [anon_sym_actual] = ACTIONS(2529), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2091), - [anon_sym_continue_AT] = ACTIONS(2572), - [anon_sym_break_AT] = ACTIONS(2575), - [anon_sym_this_AT] = ACTIONS(2578), - [anon_sym_super_AT] = ACTIONS(2581), - [sym_real_literal] = ACTIONS(2584), - [sym_integer_literal] = ACTIONS(2587), - [sym_hex_literal] = ACTIONS(2590), - [sym_bin_literal] = ACTIONS(2590), - [anon_sym_true] = ACTIONS(2593), - [anon_sym_false] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_return_AT] = ACTIONS(2088), + [anon_sym_continue_AT] = ACTIONS(2569), + [anon_sym_break_AT] = ACTIONS(2572), + [anon_sym_this_AT] = ACTIONS(2575), + [anon_sym_super_AT] = ACTIONS(2578), + [sym_real_literal] = ACTIONS(2581), + [sym_integer_literal] = ACTIONS(2584), + [sym_hex_literal] = ACTIONS(2587), + [sym_bin_literal] = ACTIONS(2587), + [anon_sym_true] = ACTIONS(2590), + [anon_sym_false] = ACTIONS(2590), + [anon_sym_SQUOTE] = ACTIONS(2593), + [sym_null_literal] = ACTIONS(2596), [sym__backtick_identifier] = ACTIONS(2599), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2602), @@ -87096,15 +87096,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2064), [anon_sym_if] = ACTIONS(3000), - [anon_sym_when] = ACTIONS(2070), - [anon_sym_try] = ACTIONS(2073), + [anon_sym_when] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2070), [anon_sym_throw] = ACTIONS(3003), [anon_sym_return] = ACTIONS(3006), - [anon_sym_continue] = ACTIONS(2082), - [anon_sym_break] = ACTIONS(2082), - [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_continue] = ACTIONS(2079), + [anon_sym_break] = ACTIONS(2079), + [anon_sym_COLON_COLON] = ACTIONS(2082), [anon_sym_PLUS] = ACTIONS(2997), [anon_sym_DASH] = ACTIONS(2997), [anon_sym_PLUS_PLUS] = ACTIONS(3009), @@ -87137,18 +87136,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(2046), [anon_sym_actual] = ACTIONS(2046), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2091), - [anon_sym_continue_AT] = ACTIONS(2094), - [anon_sym_break_AT] = ACTIONS(2097), - [anon_sym_this_AT] = ACTIONS(2100), - [anon_sym_super_AT] = ACTIONS(2103), - [sym_real_literal] = ACTIONS(2106), - [sym_integer_literal] = ACTIONS(2109), - [sym_hex_literal] = ACTIONS(2112), - [sym_bin_literal] = ACTIONS(2112), - [anon_sym_true] = ACTIONS(2115), - [anon_sym_false] = ACTIONS(2115), - [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_return_AT] = ACTIONS(2088), + [anon_sym_continue_AT] = ACTIONS(2091), + [anon_sym_break_AT] = ACTIONS(2094), + [anon_sym_this_AT] = ACTIONS(2097), + [anon_sym_super_AT] = ACTIONS(2100), + [sym_real_literal] = ACTIONS(2103), + [sym_integer_literal] = ACTIONS(2106), + [sym_hex_literal] = ACTIONS(2109), + [sym_bin_literal] = ACTIONS(2109), + [anon_sym_true] = ACTIONS(2112), + [anon_sym_false] = ACTIONS(2112), + [anon_sym_SQUOTE] = ACTIONS(2115), + [sym_null_literal] = ACTIONS(2118), [sym__backtick_identifier] = ACTIONS(2121), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2124), @@ -87231,16 +87231,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1578), [anon_sym_AMP_AMP] = ACTIONS(1578), [anon_sym_PIPE_PIPE] = ACTIONS(1578), - [anon_sym_null] = ACTIONS(1870), [anon_sym_if] = ACTIONS(3014), [anon_sym_else] = ACTIONS(1580), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3016), [anon_sym_return] = ACTIONS(3018), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_BANG_EQ] = ACTIONS(1580), [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), [anon_sym_EQ_EQ] = ACTIONS(1580), @@ -87265,18 +87264,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym__automatic_semicolon] = ACTIONS(1578), [sym_safe_nav] = ACTIONS(1578), @@ -87355,22 +87355,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), + [sym_label] = ACTIONS(873), [anon_sym_in] = ACTIONS(1580), [anon_sym_DOT_DOT] = ACTIONS(1578), [anon_sym_QMARK_COLON] = ACTIONS(1578), [anon_sym_AMP_AMP] = ACTIONS(1578), [anon_sym_PIPE_PIPE] = ACTIONS(1578), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3022), [anon_sym_else] = ACTIONS(1580), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3024), [anon_sym_return] = ACTIONS(3026), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_BANG_EQ] = ACTIONS(1580), [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), [anon_sym_EQ_EQ] = ACTIONS(1580), @@ -87380,14 +87379,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(1578), [anon_sym_is] = ACTIONS(1580), [anon_sym_BANGis] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), [anon_sym_SLASH] = ACTIONS(1580), [anon_sym_PERCENT] = ACTIONS(1578), [anon_sym_as_QMARK] = ACTIONS(1578), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(875), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(873), [anon_sym_BANG_BANG] = ACTIONS(1578), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), @@ -87395,18 +87394,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym__automatic_semicolon] = ACTIONS(1578), [sym_safe_nav] = ACTIONS(1578), @@ -87484,23 +87484,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), + [sym_label] = ACTIONS(331), [anon_sym_in] = ACTIONS(1580), [anon_sym_while] = ACTIONS(1580), [anon_sym_DOT_DOT] = ACTIONS(1578), [anon_sym_QMARK_COLON] = ACTIONS(1578), [anon_sym_AMP_AMP] = ACTIONS(1578), [anon_sym_PIPE_PIPE] = ACTIONS(1578), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(3030), [anon_sym_else] = ACTIONS(1580), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_BANG_EQ] = ACTIONS(1580), [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), [anon_sym_EQ_EQ] = ACTIONS(1580), @@ -87510,14 +87509,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(1578), [anon_sym_is] = ACTIONS(1580), [anon_sym_BANGis] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), [anon_sym_SLASH] = ACTIONS(1580), [anon_sym_PERCENT] = ACTIONS(1578), [anon_sym_as_QMARK] = ACTIONS(1578), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(331), [anon_sym_BANG_BANG] = ACTIONS(1578), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), @@ -87525,18 +87524,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_safe_nav] = ACTIONS(1578), [sym_multiline_comment] = ACTIONS(3), @@ -87612,22 +87612,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), + [sym_label] = ACTIONS(67), [anon_sym_in] = ACTIONS(1580), [anon_sym_DOT_DOT] = ACTIONS(1578), [anon_sym_QMARK_COLON] = ACTIONS(1578), [anon_sym_AMP_AMP] = ACTIONS(1578), [anon_sym_PIPE_PIPE] = ACTIONS(1578), - [anon_sym_null] = ACTIONS(1870), [anon_sym_if] = ACTIONS(3038), [anon_sym_else] = ACTIONS(1580), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3040), [anon_sym_return] = ACTIONS(3042), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_BANG_EQ] = ACTIONS(1580), [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), [anon_sym_EQ_EQ] = ACTIONS(1580), @@ -87637,14 +87636,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(1578), [anon_sym_is] = ACTIONS(1580), [anon_sym_BANGis] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), [anon_sym_SLASH] = ACTIONS(1580), [anon_sym_PERCENT] = ACTIONS(1578), [anon_sym_as_QMARK] = ACTIONS(1578), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(67), [anon_sym_BANG_BANG] = ACTIONS(1578), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), @@ -87652,18 +87651,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym__automatic_semicolon] = ACTIONS(1578), [sym_safe_nav] = ACTIONS(1578), @@ -87720,7 +87720,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1706), [anon_sym_AMP_AMP] = ACTIONS(1708), [anon_sym_PIPE_PIPE] = ACTIONS(1710), - [anon_sym_null] = ACTIONS(3044), [anon_sym_if] = ACTIONS(3044), [anon_sym_else] = ACTIONS(3044), [anon_sym_when] = ACTIONS(3044), @@ -87792,6 +87791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3044), [anon_sym_false] = ACTIONS(3044), [anon_sym_SQUOTE] = ACTIONS(3046), + [sym_null_literal] = ACTIONS(3044), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3046), [sym_safe_nav] = ACTIONS(1712), @@ -87848,7 +87848,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3052), [anon_sym_AMP_AMP] = ACTIONS(3052), [anon_sym_PIPE_PIPE] = ACTIONS(3052), - [anon_sym_null] = ACTIONS(3050), [anon_sym_if] = ACTIONS(3050), [anon_sym_else] = ACTIONS(3050), [anon_sym_when] = ACTIONS(3050), @@ -87920,6 +87919,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3050), [anon_sym_false] = ACTIONS(3050), [anon_sym_SQUOTE] = ACTIONS(3052), + [sym_null_literal] = ACTIONS(3050), [sym__backtick_identifier] = ACTIONS(3052), [sym__automatic_semicolon] = ACTIONS(3052), [sym_safe_nav] = ACTIONS(1712), @@ -87976,7 +87976,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1706), [anon_sym_AMP_AMP] = ACTIONS(3059), [anon_sym_PIPE_PIPE] = ACTIONS(3059), - [anon_sym_null] = ACTIONS(3057), [anon_sym_if] = ACTIONS(3057), [anon_sym_else] = ACTIONS(3057), [anon_sym_when] = ACTIONS(3057), @@ -88048,6 +88047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3057), [anon_sym_false] = ACTIONS(3057), [anon_sym_SQUOTE] = ACTIONS(3059), + [sym_null_literal] = ACTIONS(3057), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3059), [sym_safe_nav] = ACTIONS(1712), @@ -88104,7 +88104,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1706), [anon_sym_AMP_AMP] = ACTIONS(1708), [anon_sym_PIPE_PIPE] = ACTIONS(1710), - [anon_sym_null] = ACTIONS(3061), [anon_sym_if] = ACTIONS(3061), [anon_sym_else] = ACTIONS(3061), [anon_sym_when] = ACTIONS(3061), @@ -88176,6 +88175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3061), [anon_sym_false] = ACTIONS(3061), [anon_sym_SQUOTE] = ACTIONS(3063), + [sym_null_literal] = ACTIONS(3061), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3063), [sym_safe_nav] = ACTIONS(1712), @@ -88232,7 +88232,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1706), [anon_sym_AMP_AMP] = ACTIONS(3067), [anon_sym_PIPE_PIPE] = ACTIONS(3067), - [anon_sym_null] = ACTIONS(3065), [anon_sym_if] = ACTIONS(3065), [anon_sym_else] = ACTIONS(3065), [anon_sym_when] = ACTIONS(3065), @@ -88304,6 +88303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3065), [anon_sym_false] = ACTIONS(3065), [anon_sym_SQUOTE] = ACTIONS(3067), + [sym_null_literal] = ACTIONS(3065), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3067), [sym_safe_nav] = ACTIONS(1712), @@ -88360,7 +88360,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1706), [anon_sym_AMP_AMP] = ACTIONS(1708), [anon_sym_PIPE_PIPE] = ACTIONS(1710), - [anon_sym_null] = ACTIONS(3072), [anon_sym_if] = ACTIONS(3072), [anon_sym_else] = ACTIONS(3072), [anon_sym_when] = ACTIONS(3072), @@ -88432,6 +88431,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3072), [anon_sym_false] = ACTIONS(3072), [anon_sym_SQUOTE] = ACTIONS(3074), + [sym_null_literal] = ACTIONS(3072), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3074), [sym_safe_nav] = ACTIONS(1712), @@ -88488,7 +88488,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1706), [anon_sym_AMP_AMP] = ACTIONS(3078), [anon_sym_PIPE_PIPE] = ACTIONS(3078), - [anon_sym_null] = ACTIONS(3076), [anon_sym_if] = ACTIONS(3076), [anon_sym_else] = ACTIONS(3076), [anon_sym_when] = ACTIONS(3076), @@ -88560,6 +88559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3076), [anon_sym_false] = ACTIONS(3076), [anon_sym_SQUOTE] = ACTIONS(3078), + [sym_null_literal] = ACTIONS(3076), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3078), [sym_safe_nav] = ACTIONS(1712), @@ -88616,7 +88616,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1706), [anon_sym_AMP_AMP] = ACTIONS(1708), [anon_sym_PIPE_PIPE] = ACTIONS(1710), - [anon_sym_null] = ACTIONS(3080), [anon_sym_if] = ACTIONS(3080), [anon_sym_else] = ACTIONS(3080), [anon_sym_when] = ACTIONS(3080), @@ -88688,6 +88687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3080), [anon_sym_false] = ACTIONS(3080), [anon_sym_SQUOTE] = ACTIONS(3082), + [sym_null_literal] = ACTIONS(3080), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3082), [sym_safe_nav] = ACTIONS(1712), @@ -88744,7 +88744,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1706), [anon_sym_AMP_AMP] = ACTIONS(3086), [anon_sym_PIPE_PIPE] = ACTIONS(3086), - [anon_sym_null] = ACTIONS(3084), [anon_sym_if] = ACTIONS(3084), [anon_sym_else] = ACTIONS(3084), [anon_sym_when] = ACTIONS(3084), @@ -88816,6 +88815,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3084), [anon_sym_false] = ACTIONS(3084), [anon_sym_SQUOTE] = ACTIONS(3086), + [sym_null_literal] = ACTIONS(3084), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3086), [sym_safe_nav] = ACTIONS(1712), @@ -88898,16 +88898,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1578), [anon_sym_AMP_AMP] = ACTIONS(1578), [anon_sym_PIPE_PIPE] = ACTIONS(1578), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3090), [anon_sym_else] = ACTIONS(1580), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3092), [anon_sym_return] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_BANG_EQ] = ACTIONS(1580), [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), [anon_sym_EQ_EQ] = ACTIONS(1580), @@ -88932,18 +88931,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym__automatic_semicolon] = ACTIONS(1578), [sym_safe_nav] = ACTIONS(1578), @@ -89000,7 +89000,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1706), [anon_sym_AMP_AMP] = ACTIONS(1708), [anon_sym_PIPE_PIPE] = ACTIONS(1710), - [anon_sym_null] = ACTIONS(3096), [anon_sym_if] = ACTIONS(3096), [anon_sym_else] = ACTIONS(3096), [anon_sym_when] = ACTIONS(3096), @@ -89072,6 +89071,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3096), [anon_sym_false] = ACTIONS(3096), [anon_sym_SQUOTE] = ACTIONS(3098), + [sym_null_literal] = ACTIONS(3096), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3098), [sym_safe_nav] = ACTIONS(1712), @@ -89128,7 +89128,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3102), [anon_sym_AMP_AMP] = ACTIONS(3102), [anon_sym_PIPE_PIPE] = ACTIONS(3102), - [anon_sym_null] = ACTIONS(3100), [anon_sym_if] = ACTIONS(3100), [anon_sym_else] = ACTIONS(3100), [anon_sym_when] = ACTIONS(3100), @@ -89200,6 +89199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3100), [anon_sym_false] = ACTIONS(3100), [anon_sym_SQUOTE] = ACTIONS(3102), + [sym_null_literal] = ACTIONS(3100), [sym__backtick_identifier] = ACTIONS(3102), [sym__automatic_semicolon] = ACTIONS(3102), [sym_safe_nav] = ACTIONS(1712), @@ -89256,7 +89256,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1706), [anon_sym_AMP_AMP] = ACTIONS(1708), [anon_sym_PIPE_PIPE] = ACTIONS(1710), - [anon_sym_null] = ACTIONS(3107), [anon_sym_if] = ACTIONS(3107), [anon_sym_else] = ACTIONS(3107), [anon_sym_when] = ACTIONS(3107), @@ -89328,6 +89327,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3107), [anon_sym_false] = ACTIONS(3107), [anon_sym_SQUOTE] = ACTIONS(3109), + [sym_null_literal] = ACTIONS(3107), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3109), [sym_safe_nav] = ACTIONS(1712), @@ -89384,7 +89384,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1706), [anon_sym_AMP_AMP] = ACTIONS(1708), [anon_sym_PIPE_PIPE] = ACTIONS(1710), - [anon_sym_null] = ACTIONS(3111), [anon_sym_if] = ACTIONS(3111), [anon_sym_else] = ACTIONS(3111), [anon_sym_when] = ACTIONS(3111), @@ -89456,6 +89455,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3111), [anon_sym_false] = ACTIONS(3111), [anon_sym_SQUOTE] = ACTIONS(3113), + [sym_null_literal] = ACTIONS(3111), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3113), [sym_safe_nav] = ACTIONS(1712), @@ -89512,7 +89512,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3117), [anon_sym_AMP_AMP] = ACTIONS(3117), [anon_sym_PIPE_PIPE] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3115), [anon_sym_if] = ACTIONS(3115), [anon_sym_else] = ACTIONS(3115), [anon_sym_when] = ACTIONS(3115), @@ -89584,6 +89583,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3115), [anon_sym_false] = ACTIONS(3115), [anon_sym_SQUOTE] = ACTIONS(3117), + [sym_null_literal] = ACTIONS(3115), [sym__backtick_identifier] = ACTIONS(3117), [sym__automatic_semicolon] = ACTIONS(3117), [sym_safe_nav] = ACTIONS(1712), @@ -89640,7 +89640,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1706), [anon_sym_AMP_AMP] = ACTIONS(1708), [anon_sym_PIPE_PIPE] = ACTIONS(1710), - [anon_sym_null] = ACTIONS(3122), [anon_sym_if] = ACTIONS(3122), [anon_sym_else] = ACTIONS(3122), [anon_sym_when] = ACTIONS(3122), @@ -89712,6 +89711,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3122), [anon_sym_false] = ACTIONS(3122), [anon_sym_SQUOTE] = ACTIONS(3124), + [sym_null_literal] = ACTIONS(3122), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3124), [sym_safe_nav] = ACTIONS(1712), @@ -89768,7 +89768,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1706), [anon_sym_AMP_AMP] = ACTIONS(1708), [anon_sym_PIPE_PIPE] = ACTIONS(1710), - [anon_sym_null] = ACTIONS(3126), [anon_sym_if] = ACTIONS(3126), [anon_sym_else] = ACTIONS(3126), [anon_sym_when] = ACTIONS(3126), @@ -89840,6 +89839,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3126), [anon_sym_false] = ACTIONS(3126), [anon_sym_SQUOTE] = ACTIONS(3128), + [sym_null_literal] = ACTIONS(3126), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3128), [sym_safe_nav] = ACTIONS(1712), @@ -89896,7 +89896,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3132), [anon_sym_AMP_AMP] = ACTIONS(3132), [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), [anon_sym_if] = ACTIONS(3130), [anon_sym_else] = ACTIONS(3130), [anon_sym_when] = ACTIONS(3130), @@ -89968,6 +89967,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3130), [anon_sym_false] = ACTIONS(3130), [anon_sym_SQUOTE] = ACTIONS(3132), + [sym_null_literal] = ACTIONS(3130), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3132), [sym_safe_nav] = ACTIONS(1712), @@ -90024,7 +90024,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1706), [anon_sym_AMP_AMP] = ACTIONS(1708), [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_null] = ACTIONS(3137), [anon_sym_if] = ACTIONS(3137), [anon_sym_else] = ACTIONS(3137), [anon_sym_when] = ACTIONS(3137), @@ -90096,6 +90095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3137), [anon_sym_false] = ACTIONS(3137), [anon_sym_SQUOTE] = ACTIONS(3139), + [sym_null_literal] = ACTIONS(3137), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3139), [sym_safe_nav] = ACTIONS(1712), @@ -90152,7 +90152,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3143), [anon_sym_AMP_AMP] = ACTIONS(3143), [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_null] = ACTIONS(3141), [anon_sym_if] = ACTIONS(3141), [anon_sym_else] = ACTIONS(3141), [anon_sym_when] = ACTIONS(3141), @@ -90224,6 +90223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3141), [anon_sym_false] = ACTIONS(3141), [anon_sym_SQUOTE] = ACTIONS(3143), + [sym_null_literal] = ACTIONS(3141), [sym__backtick_identifier] = ACTIONS(3143), [sym__automatic_semicolon] = ACTIONS(3143), [sym_safe_nav] = ACTIONS(1712), @@ -90278,7 +90278,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3154), [anon_sym_AMP_AMP] = ACTIONS(3154), [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3148), [anon_sym_if] = ACTIONS(3148), [anon_sym_else] = ACTIONS(3148), [anon_sym_when] = ACTIONS(3148), @@ -90350,6 +90349,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3148), [anon_sym_false] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(3154), + [sym_null_literal] = ACTIONS(3148), [sym__backtick_identifier] = ACTIONS(3154), [sym__automatic_semicolon] = ACTIONS(3154), [sym_safe_nav] = ACTIONS(3154), @@ -90404,7 +90404,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3052), [anon_sym_AMP_AMP] = ACTIONS(3052), [anon_sym_PIPE_PIPE] = ACTIONS(3052), - [anon_sym_null] = ACTIONS(3050), [anon_sym_if] = ACTIONS(3050), [anon_sym_else] = ACTIONS(3050), [anon_sym_when] = ACTIONS(3050), @@ -90476,6 +90475,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3050), [anon_sym_false] = ACTIONS(3050), [anon_sym_SQUOTE] = ACTIONS(3052), + [sym_null_literal] = ACTIONS(3050), [sym__backtick_identifier] = ACTIONS(3052), [sym__automatic_semicolon] = ACTIONS(3052), [sym_safe_nav] = ACTIONS(1712), @@ -90530,7 +90530,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3186), [anon_sym_AMP_AMP] = ACTIONS(3186), [anon_sym_PIPE_PIPE] = ACTIONS(3186), - [anon_sym_null] = ACTIONS(3182), [anon_sym_if] = ACTIONS(3182), [anon_sym_else] = ACTIONS(3182), [anon_sym_when] = ACTIONS(3182), @@ -90602,6 +90601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3182), [anon_sym_false] = ACTIONS(3182), [anon_sym_SQUOTE] = ACTIONS(3186), + [sym_null_literal] = ACTIONS(3182), [sym__backtick_identifier] = ACTIONS(3186), [sym__automatic_semicolon] = ACTIONS(3186), [sym_safe_nav] = ACTIONS(3186), @@ -90656,7 +90656,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3200), [anon_sym_AMP_AMP] = ACTIONS(3200), [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_null] = ACTIONS(3196), [anon_sym_if] = ACTIONS(3196), [anon_sym_else] = ACTIONS(3196), [anon_sym_when] = ACTIONS(3196), @@ -90728,6 +90727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3196), [anon_sym_false] = ACTIONS(3196), [anon_sym_SQUOTE] = ACTIONS(3200), + [sym_null_literal] = ACTIONS(3196), [sym__backtick_identifier] = ACTIONS(3200), [sym__automatic_semicolon] = ACTIONS(3200), [sym_safe_nav] = ACTIONS(3200), @@ -90782,7 +90782,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1810), [anon_sym_AMP_AMP] = ACTIONS(1812), [anon_sym_PIPE_PIPE] = ACTIONS(1814), - [anon_sym_null] = ACTIONS(3096), [anon_sym_if] = ACTIONS(3096), [anon_sym_else] = ACTIONS(3096), [anon_sym_when] = ACTIONS(3096), @@ -90854,6 +90853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3096), [anon_sym_false] = ACTIONS(3096), [anon_sym_SQUOTE] = ACTIONS(3098), + [sym_null_literal] = ACTIONS(3096), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3098), [sym_safe_nav] = ACTIONS(1712), @@ -90908,7 +90908,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3186), [anon_sym_AMP_AMP] = ACTIONS(3186), [anon_sym_PIPE_PIPE] = ACTIONS(3186), - [anon_sym_null] = ACTIONS(3182), [anon_sym_if] = ACTIONS(3182), [anon_sym_else] = ACTIONS(3182), [anon_sym_when] = ACTIONS(3182), @@ -90980,6 +90979,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3182), [anon_sym_false] = ACTIONS(3182), [anon_sym_SQUOTE] = ACTIONS(3186), + [sym_null_literal] = ACTIONS(3182), [sym__backtick_identifier] = ACTIONS(3186), [sym__automatic_semicolon] = ACTIONS(3186), [sym_safe_nav] = ACTIONS(3186), @@ -91034,7 +91034,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1810), [anon_sym_AMP_AMP] = ACTIONS(3059), [anon_sym_PIPE_PIPE] = ACTIONS(3059), - [anon_sym_null] = ACTIONS(3057), [anon_sym_if] = ACTIONS(3057), [anon_sym_else] = ACTIONS(3057), [anon_sym_when] = ACTIONS(3057), @@ -91106,6 +91105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3057), [anon_sym_false] = ACTIONS(3057), [anon_sym_SQUOTE] = ACTIONS(3059), + [sym_null_literal] = ACTIONS(3057), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3059), [sym_safe_nav] = ACTIONS(1712), @@ -91160,7 +91160,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1810), [anon_sym_AMP_AMP] = ACTIONS(1812), [anon_sym_PIPE_PIPE] = ACTIONS(1814), - [anon_sym_null] = ACTIONS(3111), [anon_sym_if] = ACTIONS(3111), [anon_sym_else] = ACTIONS(3111), [anon_sym_when] = ACTIONS(3111), @@ -91232,6 +91231,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3111), [anon_sym_false] = ACTIONS(3111), [anon_sym_SQUOTE] = ACTIONS(3113), + [sym_null_literal] = ACTIONS(3111), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3113), [sym_safe_nav] = ACTIONS(1712), @@ -91286,7 +91286,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3132), [anon_sym_AMP_AMP] = ACTIONS(3132), [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), [anon_sym_if] = ACTIONS(3130), [anon_sym_else] = ACTIONS(3130), [anon_sym_when] = ACTIONS(3130), @@ -91358,6 +91357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3130), [anon_sym_false] = ACTIONS(3130), [anon_sym_SQUOTE] = ACTIONS(3132), + [sym_null_literal] = ACTIONS(3130), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3132), [sym_safe_nav] = ACTIONS(1712), @@ -91412,7 +91412,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1810), [anon_sym_AMP_AMP] = ACTIONS(1812), [anon_sym_PIPE_PIPE] = ACTIONS(1814), - [anon_sym_null] = ACTIONS(3107), [anon_sym_if] = ACTIONS(3107), [anon_sym_else] = ACTIONS(3107), [anon_sym_when] = ACTIONS(3107), @@ -91484,6 +91483,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3107), [anon_sym_false] = ACTIONS(3107), [anon_sym_SQUOTE] = ACTIONS(3109), + [sym_null_literal] = ACTIONS(3107), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3109), [sym_safe_nav] = ACTIONS(1712), @@ -91538,7 +91538,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3154), [anon_sym_AMP_AMP] = ACTIONS(3154), [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3148), [anon_sym_if] = ACTIONS(3148), [anon_sym_else] = ACTIONS(3148), [anon_sym_when] = ACTIONS(3148), @@ -91610,6 +91609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3148), [anon_sym_false] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(3154), + [sym_null_literal] = ACTIONS(3148), [sym__backtick_identifier] = ACTIONS(3154), [sym__automatic_semicolon] = ACTIONS(3154), [sym_safe_nav] = ACTIONS(3154), @@ -91664,7 +91664,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1810), [anon_sym_AMP_AMP] = ACTIONS(3078), [anon_sym_PIPE_PIPE] = ACTIONS(3078), - [anon_sym_null] = ACTIONS(3076), [anon_sym_if] = ACTIONS(3076), [anon_sym_else] = ACTIONS(3076), [anon_sym_when] = ACTIONS(3076), @@ -91736,6 +91735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3076), [anon_sym_false] = ACTIONS(3076), [anon_sym_SQUOTE] = ACTIONS(3078), + [sym_null_literal] = ACTIONS(3076), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3078), [sym_safe_nav] = ACTIONS(1712), @@ -91790,7 +91790,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3117), [anon_sym_AMP_AMP] = ACTIONS(3117), [anon_sym_PIPE_PIPE] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3115), [anon_sym_if] = ACTIONS(3115), [anon_sym_else] = ACTIONS(3115), [anon_sym_when] = ACTIONS(3115), @@ -91862,6 +91861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3115), [anon_sym_false] = ACTIONS(3115), [anon_sym_SQUOTE] = ACTIONS(3117), + [sym_null_literal] = ACTIONS(3115), [sym__backtick_identifier] = ACTIONS(3117), [sym__automatic_semicolon] = ACTIONS(3117), [sym_safe_nav] = ACTIONS(1712), @@ -91916,7 +91916,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1810), [anon_sym_AMP_AMP] = ACTIONS(3086), [anon_sym_PIPE_PIPE] = ACTIONS(3086), - [anon_sym_null] = ACTIONS(3084), [anon_sym_if] = ACTIONS(3084), [anon_sym_else] = ACTIONS(3084), [anon_sym_when] = ACTIONS(3084), @@ -91988,6 +91987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3084), [anon_sym_false] = ACTIONS(3084), [anon_sym_SQUOTE] = ACTIONS(3086), + [sym_null_literal] = ACTIONS(3084), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3086), [sym_safe_nav] = ACTIONS(1712), @@ -92042,7 +92042,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1810), [anon_sym_AMP_AMP] = ACTIONS(1812), [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_null] = ACTIONS(3137), [anon_sym_if] = ACTIONS(3137), [anon_sym_else] = ACTIONS(3137), [anon_sym_when] = ACTIONS(3137), @@ -92114,6 +92113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3137), [anon_sym_false] = ACTIONS(3137), [anon_sym_SQUOTE] = ACTIONS(3139), + [sym_null_literal] = ACTIONS(3137), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3139), [sym_safe_nav] = ACTIONS(1712), @@ -92168,7 +92168,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1810), [anon_sym_AMP_AMP] = ACTIONS(1812), [anon_sym_PIPE_PIPE] = ACTIONS(1814), - [anon_sym_null] = ACTIONS(3122), [anon_sym_if] = ACTIONS(3122), [anon_sym_else] = ACTIONS(3122), [anon_sym_when] = ACTIONS(3122), @@ -92240,6 +92239,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3122), [anon_sym_false] = ACTIONS(3122), [anon_sym_SQUOTE] = ACTIONS(3124), + [sym_null_literal] = ACTIONS(3122), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3124), [sym_safe_nav] = ACTIONS(1712), @@ -92294,7 +92294,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1810), [anon_sym_AMP_AMP] = ACTIONS(1812), [anon_sym_PIPE_PIPE] = ACTIONS(1814), - [anon_sym_null] = ACTIONS(3080), [anon_sym_if] = ACTIONS(3080), [anon_sym_else] = ACTIONS(3080), [anon_sym_when] = ACTIONS(3080), @@ -92366,6 +92365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3080), [anon_sym_false] = ACTIONS(3080), [anon_sym_SQUOTE] = ACTIONS(3082), + [sym_null_literal] = ACTIONS(3080), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3082), [sym_safe_nav] = ACTIONS(1712), @@ -92420,7 +92420,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3143), [anon_sym_AMP_AMP] = ACTIONS(3143), [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_null] = ACTIONS(3141), [anon_sym_if] = ACTIONS(3141), [anon_sym_else] = ACTIONS(3141), [anon_sym_when] = ACTIONS(3141), @@ -92492,6 +92491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3141), [anon_sym_false] = ACTIONS(3141), [anon_sym_SQUOTE] = ACTIONS(3143), + [sym_null_literal] = ACTIONS(3141), [sym__backtick_identifier] = ACTIONS(3143), [sym__automatic_semicolon] = ACTIONS(3143), [sym_safe_nav] = ACTIONS(1712), @@ -92546,7 +92546,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1810), [anon_sym_AMP_AMP] = ACTIONS(1812), [anon_sym_PIPE_PIPE] = ACTIONS(1814), - [anon_sym_null] = ACTIONS(3061), [anon_sym_if] = ACTIONS(3061), [anon_sym_else] = ACTIONS(3061), [anon_sym_when] = ACTIONS(3061), @@ -92618,6 +92617,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3061), [anon_sym_false] = ACTIONS(3061), [anon_sym_SQUOTE] = ACTIONS(3063), + [sym_null_literal] = ACTIONS(3061), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3063), [sym_safe_nav] = ACTIONS(1712), @@ -92672,7 +92672,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3200), [anon_sym_AMP_AMP] = ACTIONS(3200), [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_null] = ACTIONS(3196), [anon_sym_if] = ACTIONS(3196), [anon_sym_else] = ACTIONS(3196), [anon_sym_when] = ACTIONS(3196), @@ -92744,6 +92743,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3196), [anon_sym_false] = ACTIONS(3196), [anon_sym_SQUOTE] = ACTIONS(3200), + [sym_null_literal] = ACTIONS(3196), [sym__backtick_identifier] = ACTIONS(3200), [sym__automatic_semicolon] = ACTIONS(3200), [sym_safe_nav] = ACTIONS(3200), @@ -92798,7 +92798,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1810), [anon_sym_AMP_AMP] = ACTIONS(1812), [anon_sym_PIPE_PIPE] = ACTIONS(1814), - [anon_sym_null] = ACTIONS(3126), [anon_sym_if] = ACTIONS(3126), [anon_sym_else] = ACTIONS(3126), [anon_sym_when] = ACTIONS(3126), @@ -92870,6 +92869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3126), [anon_sym_false] = ACTIONS(3126), [anon_sym_SQUOTE] = ACTIONS(3128), + [sym_null_literal] = ACTIONS(3126), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3128), [sym_safe_nav] = ACTIONS(1712), @@ -92924,7 +92924,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3154), [anon_sym_AMP_AMP] = ACTIONS(3154), [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3148), [anon_sym_if] = ACTIONS(3148), [anon_sym_else] = ACTIONS(3148), [anon_sym_when] = ACTIONS(3148), @@ -92996,6 +92995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3148), [anon_sym_false] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(3154), + [sym_null_literal] = ACTIONS(3148), [sym__backtick_identifier] = ACTIONS(3154), [sym__automatic_semicolon] = ACTIONS(3154), [sym_safe_nav] = ACTIONS(3154), @@ -93050,7 +93050,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3154), [anon_sym_AMP_AMP] = ACTIONS(3154), [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3148), [anon_sym_if] = ACTIONS(3148), [anon_sym_else] = ACTIONS(3148), [anon_sym_when] = ACTIONS(3148), @@ -93122,6 +93121,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3148), [anon_sym_false] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(3154), + [sym_null_literal] = ACTIONS(3148), [sym__backtick_identifier] = ACTIONS(3154), [sym__automatic_semicolon] = ACTIONS(3154), [sym_safe_nav] = ACTIONS(3154), @@ -93176,7 +93176,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3102), [anon_sym_AMP_AMP] = ACTIONS(3102), [anon_sym_PIPE_PIPE] = ACTIONS(3102), - [anon_sym_null] = ACTIONS(3100), [anon_sym_if] = ACTIONS(3100), [anon_sym_else] = ACTIONS(3100), [anon_sym_when] = ACTIONS(3100), @@ -93248,6 +93247,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3100), [anon_sym_false] = ACTIONS(3100), [anon_sym_SQUOTE] = ACTIONS(3102), + [sym_null_literal] = ACTIONS(3100), [sym__backtick_identifier] = ACTIONS(3102), [sym__automatic_semicolon] = ACTIONS(3102), [sym_safe_nav] = ACTIONS(1712), @@ -93302,7 +93302,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1810), [anon_sym_AMP_AMP] = ACTIONS(1812), [anon_sym_PIPE_PIPE] = ACTIONS(1814), - [anon_sym_null] = ACTIONS(3044), [anon_sym_if] = ACTIONS(3044), [anon_sym_else] = ACTIONS(3044), [anon_sym_when] = ACTIONS(3044), @@ -93374,6 +93373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3044), [anon_sym_false] = ACTIONS(3044), [anon_sym_SQUOTE] = ACTIONS(3046), + [sym_null_literal] = ACTIONS(3044), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3046), [sym_safe_nav] = ACTIONS(1712), @@ -93428,7 +93428,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1810), [anon_sym_AMP_AMP] = ACTIONS(3067), [anon_sym_PIPE_PIPE] = ACTIONS(3067), - [anon_sym_null] = ACTIONS(3065), [anon_sym_if] = ACTIONS(3065), [anon_sym_else] = ACTIONS(3065), [anon_sym_when] = ACTIONS(3065), @@ -93500,6 +93499,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3065), [anon_sym_false] = ACTIONS(3065), [anon_sym_SQUOTE] = ACTIONS(3067), + [sym_null_literal] = ACTIONS(3065), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3067), [sym_safe_nav] = ACTIONS(1712), @@ -93553,7 +93553,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3154), [anon_sym_AMP_AMP] = ACTIONS(3154), [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3148), [anon_sym_if] = ACTIONS(3148), [anon_sym_else] = ACTIONS(3148), [anon_sym_when] = ACTIONS(3148), @@ -93625,6 +93624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3148), [anon_sym_false] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(3154), + [sym_null_literal] = ACTIONS(3148), [sym__backtick_identifier] = ACTIONS(3154), [sym__automatic_semicolon] = ACTIONS(3154), [sym_safe_nav] = ACTIONS(3154), @@ -93678,7 +93678,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -93750,6 +93749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -93803,7 +93803,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3200), [anon_sym_AMP_AMP] = ACTIONS(3200), [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_null] = ACTIONS(3196), [anon_sym_if] = ACTIONS(3196), [anon_sym_else] = ACTIONS(3196), [anon_sym_when] = ACTIONS(3196), @@ -93875,6 +93874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3196), [anon_sym_false] = ACTIONS(3196), [anon_sym_SQUOTE] = ACTIONS(3200), + [sym_null_literal] = ACTIONS(3196), [sym__backtick_identifier] = ACTIONS(3200), [sym__automatic_semicolon] = ACTIONS(3200), [sym_safe_nav] = ACTIONS(3200), @@ -93928,7 +93928,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3230), [anon_sym_AMP_AMP] = ACTIONS(3230), [anon_sym_PIPE_PIPE] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3226), [anon_sym_if] = ACTIONS(3226), [anon_sym_else] = ACTIONS(3226), [anon_sym_when] = ACTIONS(3226), @@ -94000,6 +93999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3226), [anon_sym_false] = ACTIONS(3226), [anon_sym_SQUOTE] = ACTIONS(3230), + [sym_null_literal] = ACTIONS(3226), [sym__backtick_identifier] = ACTIONS(3230), [sym__automatic_semicolon] = ACTIONS(3230), [sym_safe_nav] = ACTIONS(3230), @@ -94053,7 +94053,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -94125,6 +94124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -94178,7 +94178,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -94250,6 +94249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -94303,7 +94303,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3240), [anon_sym_AMP_AMP] = ACTIONS(3240), [anon_sym_PIPE_PIPE] = ACTIONS(3240), - [anon_sym_null] = ACTIONS(3236), [anon_sym_if] = ACTIONS(3236), [anon_sym_else] = ACTIONS(3236), [anon_sym_when] = ACTIONS(3236), @@ -94375,6 +94374,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3236), [anon_sym_false] = ACTIONS(3236), [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), [sym__backtick_identifier] = ACTIONS(3240), [sym__automatic_semicolon] = ACTIONS(3240), [sym_safe_nav] = ACTIONS(3240), @@ -94428,7 +94428,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3200), [anon_sym_AMP_AMP] = ACTIONS(3200), [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_null] = ACTIONS(3196), [anon_sym_if] = ACTIONS(3196), [anon_sym_else] = ACTIONS(3196), [anon_sym_when] = ACTIONS(3196), @@ -94500,6 +94499,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3196), [anon_sym_false] = ACTIONS(3196), [anon_sym_SQUOTE] = ACTIONS(3200), + [sym_null_literal] = ACTIONS(3196), [sym__backtick_identifier] = ACTIONS(3200), [sym__automatic_semicolon] = ACTIONS(3200), [sym_safe_nav] = ACTIONS(3200), @@ -94553,7 +94553,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3230), [anon_sym_AMP_AMP] = ACTIONS(3230), [anon_sym_PIPE_PIPE] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3226), [anon_sym_if] = ACTIONS(3226), [anon_sym_else] = ACTIONS(3226), [anon_sym_when] = ACTIONS(3226), @@ -94625,6 +94624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3226), [anon_sym_false] = ACTIONS(3226), [anon_sym_SQUOTE] = ACTIONS(3230), + [sym_null_literal] = ACTIONS(3226), [sym__backtick_identifier] = ACTIONS(3230), [sym__automatic_semicolon] = ACTIONS(3230), [sym_safe_nav] = ACTIONS(3230), @@ -94678,7 +94678,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -94750,6 +94749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -94803,7 +94803,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3186), [anon_sym_AMP_AMP] = ACTIONS(3186), [anon_sym_PIPE_PIPE] = ACTIONS(3186), - [anon_sym_null] = ACTIONS(3182), [anon_sym_if] = ACTIONS(3182), [anon_sym_else] = ACTIONS(3182), [anon_sym_when] = ACTIONS(3182), @@ -94875,6 +94874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3182), [anon_sym_false] = ACTIONS(3182), [anon_sym_SQUOTE] = ACTIONS(3186), + [sym_null_literal] = ACTIONS(3182), [sym__backtick_identifier] = ACTIONS(3186), [sym__automatic_semicolon] = ACTIONS(3186), [sym_safe_nav] = ACTIONS(3186), @@ -94928,7 +94928,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3240), [anon_sym_AMP_AMP] = ACTIONS(3240), [anon_sym_PIPE_PIPE] = ACTIONS(3240), - [anon_sym_null] = ACTIONS(3236), [anon_sym_if] = ACTIONS(3236), [anon_sym_else] = ACTIONS(3236), [anon_sym_when] = ACTIONS(3236), @@ -95000,6 +94999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3236), [anon_sym_false] = ACTIONS(3236), [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), [sym__backtick_identifier] = ACTIONS(3240), [sym__automatic_semicolon] = ACTIONS(3240), [sym_safe_nav] = ACTIONS(3240), @@ -95053,7 +95053,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3186), [anon_sym_AMP_AMP] = ACTIONS(3186), [anon_sym_PIPE_PIPE] = ACTIONS(3186), - [anon_sym_null] = ACTIONS(3182), [anon_sym_if] = ACTIONS(3182), [anon_sym_else] = ACTIONS(3182), [anon_sym_when] = ACTIONS(3182), @@ -95125,6 +95124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3182), [anon_sym_false] = ACTIONS(3182), [anon_sym_SQUOTE] = ACTIONS(3186), + [sym_null_literal] = ACTIONS(3182), [sym__backtick_identifier] = ACTIONS(3186), [sym__automatic_semicolon] = ACTIONS(3186), [sym_safe_nav] = ACTIONS(3186), @@ -95178,7 +95178,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3154), [anon_sym_AMP_AMP] = ACTIONS(3154), [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3148), [anon_sym_if] = ACTIONS(3148), [anon_sym_else] = ACTIONS(3148), [anon_sym_when] = ACTIONS(3148), @@ -95250,6 +95249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3148), [anon_sym_false] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(3154), + [sym_null_literal] = ACTIONS(3148), [sym__backtick_identifier] = ACTIONS(3154), [sym__automatic_semicolon] = ACTIONS(3154), [sym_safe_nav] = ACTIONS(3154), @@ -95303,7 +95303,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3154), [anon_sym_AMP_AMP] = ACTIONS(3154), [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3148), [anon_sym_if] = ACTIONS(3148), [anon_sym_else] = ACTIONS(3148), [anon_sym_when] = ACTIONS(3148), @@ -95375,6 +95374,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3148), [anon_sym_false] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(3154), + [sym_null_literal] = ACTIONS(3148), [sym__backtick_identifier] = ACTIONS(3154), [sym__automatic_semicolon] = ACTIONS(3154), [sym_safe_nav] = ACTIONS(3154), @@ -95428,7 +95428,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3154), [anon_sym_AMP_AMP] = ACTIONS(3154), [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3148), [anon_sym_if] = ACTIONS(3148), [anon_sym_else] = ACTIONS(3148), [anon_sym_when] = ACTIONS(3148), @@ -95500,6 +95499,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3148), [anon_sym_false] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(3154), + [sym_null_literal] = ACTIONS(3148), [sym__backtick_identifier] = ACTIONS(3154), [sym__automatic_semicolon] = ACTIONS(3154), [sym_safe_nav] = ACTIONS(3154), @@ -95552,7 +95552,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3240), [anon_sym_AMP_AMP] = ACTIONS(3240), [anon_sym_PIPE_PIPE] = ACTIONS(3240), - [anon_sym_null] = ACTIONS(3236), [anon_sym_if] = ACTIONS(3236), [anon_sym_else] = ACTIONS(3236), [anon_sym_when] = ACTIONS(3236), @@ -95624,6 +95623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3236), [anon_sym_false] = ACTIONS(3236), [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), [sym__backtick_identifier] = ACTIONS(3240), [sym__automatic_semicolon] = ACTIONS(3240), [sym_safe_nav] = ACTIONS(3240), @@ -95676,7 +95676,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3230), [anon_sym_AMP_AMP] = ACTIONS(3230), [anon_sym_PIPE_PIPE] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3226), [anon_sym_if] = ACTIONS(3226), [anon_sym_else] = ACTIONS(3226), [anon_sym_when] = ACTIONS(3226), @@ -95748,6 +95747,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3226), [anon_sym_false] = ACTIONS(3226), [anon_sym_SQUOTE] = ACTIONS(3230), + [sym_null_literal] = ACTIONS(3226), [sym__backtick_identifier] = ACTIONS(3230), [sym__automatic_semicolon] = ACTIONS(3230), [sym_safe_nav] = ACTIONS(3230), @@ -95800,7 +95800,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3230), [anon_sym_AMP_AMP] = ACTIONS(3230), [anon_sym_PIPE_PIPE] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3226), [anon_sym_if] = ACTIONS(3226), [anon_sym_else] = ACTIONS(3226), [anon_sym_when] = ACTIONS(3226), @@ -95872,6 +95871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3226), [anon_sym_false] = ACTIONS(3226), [anon_sym_SQUOTE] = ACTIONS(3230), + [sym_null_literal] = ACTIONS(3226), [sym__backtick_identifier] = ACTIONS(3230), [sym__automatic_semicolon] = ACTIONS(3230), [sym_safe_nav] = ACTIONS(3230), @@ -95924,7 +95924,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -95957,30 +95956,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -95996,6 +95995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -96048,7 +96048,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -96081,30 +96080,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -96120,6 +96119,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -96172,7 +96172,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3286), [anon_sym_AMP_AMP] = ACTIONS(3286), [anon_sym_PIPE_PIPE] = ACTIONS(3286), - [anon_sym_null] = ACTIONS(3284), [anon_sym_if] = ACTIONS(3284), [anon_sym_else] = ACTIONS(3284), [anon_sym_when] = ACTIONS(3284), @@ -96205,30 +96204,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3286), [anon_sym_BANG] = ACTIONS(3284), [anon_sym_BANG_BANG] = ACTIONS(3286), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -96244,6 +96243,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3284), [anon_sym_false] = ACTIONS(3284), [anon_sym_SQUOTE] = ACTIONS(3286), + [sym_null_literal] = ACTIONS(3284), [sym__backtick_identifier] = ACTIONS(3286), [sym__automatic_semicolon] = ACTIONS(3286), [sym_safe_nav] = ACTIONS(3286), @@ -96296,7 +96296,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -96368,6 +96367,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -96420,7 +96420,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -96453,30 +96452,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -96492,6 +96491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -96544,7 +96544,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -96577,30 +96576,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -96616,6 +96615,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -96668,7 +96668,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -96740,6 +96739,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -96792,7 +96792,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -96864,6 +96863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -96916,7 +96916,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3286), [anon_sym_AMP_AMP] = ACTIONS(3286), [anon_sym_PIPE_PIPE] = ACTIONS(3286), - [anon_sym_null] = ACTIONS(3284), [anon_sym_if] = ACTIONS(3284), [anon_sym_else] = ACTIONS(3284), [anon_sym_when] = ACTIONS(3284), @@ -96949,30 +96948,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3286), [anon_sym_BANG] = ACTIONS(3284), [anon_sym_BANG_BANG] = ACTIONS(3286), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -96988,6 +96987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3284), [anon_sym_false] = ACTIONS(3284), [anon_sym_SQUOTE] = ACTIONS(3286), + [sym_null_literal] = ACTIONS(3284), [sym__backtick_identifier] = ACTIONS(3286), [sym__automatic_semicolon] = ACTIONS(3286), [sym_safe_nav] = ACTIONS(3286), @@ -97040,7 +97040,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -97073,30 +97072,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -97112,6 +97111,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -97164,7 +97164,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3240), [anon_sym_AMP_AMP] = ACTIONS(3240), [anon_sym_PIPE_PIPE] = ACTIONS(3240), - [anon_sym_null] = ACTIONS(3236), [anon_sym_if] = ACTIONS(3236), [anon_sym_else] = ACTIONS(3236), [anon_sym_when] = ACTIONS(3236), @@ -97236,6 +97235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3236), [anon_sym_false] = ACTIONS(3236), [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), [sym__backtick_identifier] = ACTIONS(3240), [sym__automatic_semicolon] = ACTIONS(3240), [sym_safe_nav] = ACTIONS(3240), @@ -97288,7 +97288,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -97321,30 +97320,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -97360,6 +97359,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -97412,7 +97412,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -97484,6 +97483,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -97536,7 +97536,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -97569,30 +97568,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -97608,6 +97607,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -97660,7 +97660,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -97693,30 +97692,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -97732,6 +97731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -97783,7 +97783,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -97816,30 +97815,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -97855,6 +97854,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -97906,7 +97906,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -97939,30 +97938,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -97978,6 +97977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -98029,7 +98029,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -98062,30 +98061,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -98101,6 +98100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -98152,7 +98152,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -98185,30 +98184,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -98224,6 +98223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -98275,7 +98275,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -98308,30 +98307,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -98347,6 +98346,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -98398,7 +98398,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -98431,30 +98430,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -98470,6 +98469,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -98521,7 +98521,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -98554,30 +98553,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -98593,6 +98592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -98644,7 +98644,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3286), [anon_sym_AMP_AMP] = ACTIONS(3286), [anon_sym_PIPE_PIPE] = ACTIONS(3286), - [anon_sym_null] = ACTIONS(3284), [anon_sym_if] = ACTIONS(3284), [anon_sym_else] = ACTIONS(3284), [anon_sym_when] = ACTIONS(3284), @@ -98677,30 +98676,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3286), [anon_sym_BANG] = ACTIONS(3284), [anon_sym_BANG_BANG] = ACTIONS(3286), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -98716,6 +98715,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3284), [anon_sym_false] = ACTIONS(3284), [anon_sym_SQUOTE] = ACTIONS(3286), + [sym_null_literal] = ACTIONS(3284), [sym__backtick_identifier] = ACTIONS(3286), [sym__automatic_semicolon] = ACTIONS(3286), [sym_safe_nav] = ACTIONS(3286), @@ -98767,7 +98767,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1756), [anon_sym_AMP_AMP] = ACTIONS(1756), [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -98800,30 +98799,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -98839,6 +98838,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1756), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1756), @@ -98890,7 +98890,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -98923,30 +98922,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -98962,6 +98961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -99013,7 +99013,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -99046,30 +99045,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -99085,6 +99084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -99136,7 +99136,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -99169,30 +99168,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -99208,6 +99207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -99259,7 +99259,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -99292,30 +99291,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -99331,6 +99330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -99382,7 +99382,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -99415,30 +99414,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -99454,6 +99453,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -99505,7 +99505,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1756), [anon_sym_AMP_AMP] = ACTIONS(1756), [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -99538,30 +99537,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -99577,6 +99576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1756), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1756), @@ -99628,7 +99628,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -99661,30 +99660,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -99700,6 +99699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -99751,7 +99751,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3286), [anon_sym_AMP_AMP] = ACTIONS(3286), [anon_sym_PIPE_PIPE] = ACTIONS(3286), - [anon_sym_null] = ACTIONS(3284), [anon_sym_if] = ACTIONS(3284), [anon_sym_else] = ACTIONS(3284), [anon_sym_when] = ACTIONS(3284), @@ -99784,30 +99783,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3286), [anon_sym_BANG] = ACTIONS(3284), [anon_sym_BANG_BANG] = ACTIONS(3286), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -99823,6 +99822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3284), [anon_sym_false] = ACTIONS(3284), [anon_sym_SQUOTE] = ACTIONS(3286), + [sym_null_literal] = ACTIONS(3284), [sym__backtick_identifier] = ACTIONS(3286), [sym__automatic_semicolon] = ACTIONS(3286), [sym_safe_nav] = ACTIONS(3286), @@ -99874,7 +99874,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -99907,30 +99906,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -99946,6 +99945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -99997,7 +99997,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -100030,30 +100029,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -100069,6 +100068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -100120,7 +100120,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -100153,30 +100152,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -100192,6 +100191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -100247,7 +100247,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1892), [anon_sym_AMP_AMP] = ACTIONS(1894), [anon_sym_PIPE_PIPE] = ACTIONS(1896), - [anon_sym_null] = ACTIONS(3107), [anon_sym_if] = ACTIONS(3107), [anon_sym_else] = ACTIONS(3107), [anon_sym_when] = ACTIONS(3107), @@ -100314,6 +100313,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3107), [anon_sym_false] = ACTIONS(3107), [anon_sym_SQUOTE] = ACTIONS(3109), + [sym_null_literal] = ACTIONS(3107), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3109), [sym_safe_nav] = ACTIONS(1712), @@ -100369,7 +100369,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1892), [anon_sym_AMP_AMP] = ACTIONS(1894), [anon_sym_PIPE_PIPE] = ACTIONS(1896), - [anon_sym_null] = ACTIONS(3044), [anon_sym_if] = ACTIONS(3044), [anon_sym_else] = ACTIONS(3044), [anon_sym_when] = ACTIONS(3044), @@ -100436,6 +100435,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3044), [anon_sym_false] = ACTIONS(3044), [anon_sym_SQUOTE] = ACTIONS(3046), + [sym_null_literal] = ACTIONS(3044), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3046), [sym_safe_nav] = ACTIONS(1712), @@ -100491,7 +100491,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1892), [anon_sym_AMP_AMP] = ACTIONS(1894), [anon_sym_PIPE_PIPE] = ACTIONS(1896), - [anon_sym_null] = ACTIONS(3061), [anon_sym_if] = ACTIONS(3061), [anon_sym_else] = ACTIONS(3061), [anon_sym_when] = ACTIONS(3061), @@ -100558,6 +100557,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3061), [anon_sym_false] = ACTIONS(3061), [anon_sym_SQUOTE] = ACTIONS(3063), + [sym_null_literal] = ACTIONS(3061), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3063), [sym_safe_nav] = ACTIONS(1712), @@ -100613,7 +100613,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1892), [anon_sym_AMP_AMP] = ACTIONS(3086), [anon_sym_PIPE_PIPE] = ACTIONS(3086), - [anon_sym_null] = ACTIONS(3084), [anon_sym_if] = ACTIONS(3084), [anon_sym_else] = ACTIONS(3084), [anon_sym_when] = ACTIONS(3084), @@ -100680,6 +100679,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3084), [anon_sym_false] = ACTIONS(3084), [anon_sym_SQUOTE] = ACTIONS(3086), + [sym_null_literal] = ACTIONS(3084), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3086), [sym_safe_nav] = ACTIONS(1712), @@ -100735,7 +100735,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1892), [anon_sym_AMP_AMP] = ACTIONS(3067), [anon_sym_PIPE_PIPE] = ACTIONS(3067), - [anon_sym_null] = ACTIONS(3065), [anon_sym_if] = ACTIONS(3065), [anon_sym_else] = ACTIONS(3065), [anon_sym_when] = ACTIONS(3065), @@ -100802,6 +100801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3065), [anon_sym_false] = ACTIONS(3065), [anon_sym_SQUOTE] = ACTIONS(3067), + [sym_null_literal] = ACTIONS(3065), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3067), [sym_safe_nav] = ACTIONS(1712), @@ -100857,7 +100857,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3143), [anon_sym_AMP_AMP] = ACTIONS(3143), [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_null] = ACTIONS(3141), [anon_sym_if] = ACTIONS(3141), [anon_sym_else] = ACTIONS(3141), [anon_sym_when] = ACTIONS(3141), @@ -100924,6 +100923,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3141), [anon_sym_false] = ACTIONS(3141), [anon_sym_SQUOTE] = ACTIONS(3143), + [sym_null_literal] = ACTIONS(3141), [sym__backtick_identifier] = ACTIONS(3143), [sym__automatic_semicolon] = ACTIONS(3143), [sym_safe_nav] = ACTIONS(1712), @@ -100979,7 +100979,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3102), [anon_sym_AMP_AMP] = ACTIONS(3102), [anon_sym_PIPE_PIPE] = ACTIONS(3102), - [anon_sym_null] = ACTIONS(3100), [anon_sym_if] = ACTIONS(3100), [anon_sym_else] = ACTIONS(3100), [anon_sym_when] = ACTIONS(3100), @@ -101046,6 +101045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3100), [anon_sym_false] = ACTIONS(3100), [anon_sym_SQUOTE] = ACTIONS(3102), + [sym_null_literal] = ACTIONS(3100), [sym__backtick_identifier] = ACTIONS(3102), [sym__automatic_semicolon] = ACTIONS(3102), [sym_safe_nav] = ACTIONS(1712), @@ -101101,7 +101101,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1892), [anon_sym_AMP_AMP] = ACTIONS(1894), [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_null] = ACTIONS(3137), [anon_sym_if] = ACTIONS(3137), [anon_sym_else] = ACTIONS(3137), [anon_sym_when] = ACTIONS(3137), @@ -101168,6 +101167,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3137), [anon_sym_false] = ACTIONS(3137), [anon_sym_SQUOTE] = ACTIONS(3139), + [sym_null_literal] = ACTIONS(3137), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3139), [sym_safe_nav] = ACTIONS(1712), @@ -101223,7 +101223,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1892), [anon_sym_AMP_AMP] = ACTIONS(3078), [anon_sym_PIPE_PIPE] = ACTIONS(3078), - [anon_sym_null] = ACTIONS(3076), [anon_sym_if] = ACTIONS(3076), [anon_sym_else] = ACTIONS(3076), [anon_sym_when] = ACTIONS(3076), @@ -101290,6 +101289,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3076), [anon_sym_false] = ACTIONS(3076), [anon_sym_SQUOTE] = ACTIONS(3078), + [sym_null_literal] = ACTIONS(3076), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3078), [sym_safe_nav] = ACTIONS(1712), @@ -101345,7 +101345,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3052), [anon_sym_AMP_AMP] = ACTIONS(3052), [anon_sym_PIPE_PIPE] = ACTIONS(3052), - [anon_sym_null] = ACTIONS(3050), [anon_sym_if] = ACTIONS(3050), [anon_sym_else] = ACTIONS(3050), [anon_sym_when] = ACTIONS(3050), @@ -101412,6 +101411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3050), [anon_sym_false] = ACTIONS(3050), [anon_sym_SQUOTE] = ACTIONS(3052), + [sym_null_literal] = ACTIONS(3050), [sym__backtick_identifier] = ACTIONS(3052), [sym__automatic_semicolon] = ACTIONS(3052), [sym_safe_nav] = ACTIONS(1712), @@ -101467,7 +101467,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1892), [anon_sym_AMP_AMP] = ACTIONS(1894), [anon_sym_PIPE_PIPE] = ACTIONS(1896), - [anon_sym_null] = ACTIONS(3080), [anon_sym_if] = ACTIONS(3080), [anon_sym_else] = ACTIONS(3080), [anon_sym_when] = ACTIONS(3080), @@ -101534,6 +101533,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3080), [anon_sym_false] = ACTIONS(3080), [anon_sym_SQUOTE] = ACTIONS(3082), + [sym_null_literal] = ACTIONS(3080), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3082), [sym_safe_nav] = ACTIONS(1712), @@ -101589,7 +101589,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1892), [anon_sym_AMP_AMP] = ACTIONS(1894), [anon_sym_PIPE_PIPE] = ACTIONS(1896), - [anon_sym_null] = ACTIONS(3072), [anon_sym_if] = ACTIONS(3072), [anon_sym_else] = ACTIONS(3072), [anon_sym_when] = ACTIONS(3072), @@ -101656,6 +101655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3072), [anon_sym_false] = ACTIONS(3072), [anon_sym_SQUOTE] = ACTIONS(3074), + [sym_null_literal] = ACTIONS(3072), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3074), [sym_safe_nav] = ACTIONS(1712), @@ -101711,7 +101711,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1892), [anon_sym_AMP_AMP] = ACTIONS(1894), [anon_sym_PIPE_PIPE] = ACTIONS(1896), - [anon_sym_null] = ACTIONS(3096), [anon_sym_if] = ACTIONS(3096), [anon_sym_else] = ACTIONS(3096), [anon_sym_when] = ACTIONS(3096), @@ -101778,6 +101777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3096), [anon_sym_false] = ACTIONS(3096), [anon_sym_SQUOTE] = ACTIONS(3098), + [sym_null_literal] = ACTIONS(3096), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3098), [sym_safe_nav] = ACTIONS(1712), @@ -101833,7 +101833,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3132), [anon_sym_AMP_AMP] = ACTIONS(3132), [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), [anon_sym_if] = ACTIONS(3130), [anon_sym_else] = ACTIONS(3130), [anon_sym_when] = ACTIONS(3130), @@ -101900,6 +101899,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3130), [anon_sym_false] = ACTIONS(3130), [anon_sym_SQUOTE] = ACTIONS(3132), + [sym_null_literal] = ACTIONS(3130), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3132), [sym_safe_nav] = ACTIONS(1712), @@ -101955,7 +101955,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3117), [anon_sym_AMP_AMP] = ACTIONS(3117), [anon_sym_PIPE_PIPE] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3115), [anon_sym_if] = ACTIONS(3115), [anon_sym_else] = ACTIONS(3115), [anon_sym_when] = ACTIONS(3115), @@ -102022,6 +102021,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3115), [anon_sym_false] = ACTIONS(3115), [anon_sym_SQUOTE] = ACTIONS(3117), + [sym_null_literal] = ACTIONS(3115), [sym__backtick_identifier] = ACTIONS(3117), [sym__automatic_semicolon] = ACTIONS(3117), [sym_safe_nav] = ACTIONS(1712), @@ -102077,7 +102077,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1892), [anon_sym_AMP_AMP] = ACTIONS(1894), [anon_sym_PIPE_PIPE] = ACTIONS(1896), - [anon_sym_null] = ACTIONS(3111), [anon_sym_if] = ACTIONS(3111), [anon_sym_else] = ACTIONS(3111), [anon_sym_when] = ACTIONS(3111), @@ -102144,6 +102143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3111), [anon_sym_false] = ACTIONS(3111), [anon_sym_SQUOTE] = ACTIONS(3113), + [sym_null_literal] = ACTIONS(3111), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3113), [sym_safe_nav] = ACTIONS(1712), @@ -102199,7 +102199,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1892), [anon_sym_AMP_AMP] = ACTIONS(1894), [anon_sym_PIPE_PIPE] = ACTIONS(1896), - [anon_sym_null] = ACTIONS(3122), [anon_sym_if] = ACTIONS(3122), [anon_sym_else] = ACTIONS(3122), [anon_sym_when] = ACTIONS(3122), @@ -102266,6 +102265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3122), [anon_sym_false] = ACTIONS(3122), [anon_sym_SQUOTE] = ACTIONS(3124), + [sym_null_literal] = ACTIONS(3122), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3124), [sym_safe_nav] = ACTIONS(1712), @@ -102321,7 +102321,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1892), [anon_sym_AMP_AMP] = ACTIONS(3059), [anon_sym_PIPE_PIPE] = ACTIONS(3059), - [anon_sym_null] = ACTIONS(3057), [anon_sym_if] = ACTIONS(3057), [anon_sym_else] = ACTIONS(3057), [anon_sym_when] = ACTIONS(3057), @@ -102388,6 +102387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3057), [anon_sym_false] = ACTIONS(3057), [anon_sym_SQUOTE] = ACTIONS(3059), + [sym_null_literal] = ACTIONS(3057), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3059), [sym_safe_nav] = ACTIONS(1712), @@ -102443,7 +102443,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1892), [anon_sym_AMP_AMP] = ACTIONS(1894), [anon_sym_PIPE_PIPE] = ACTIONS(1896), - [anon_sym_null] = ACTIONS(3126), [anon_sym_if] = ACTIONS(3126), [anon_sym_else] = ACTIONS(3126), [anon_sym_when] = ACTIONS(3126), @@ -102510,6 +102509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3126), [anon_sym_false] = ACTIONS(3126), [anon_sym_SQUOTE] = ACTIONS(3128), + [sym_null_literal] = ACTIONS(3126), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3128), [sym_safe_nav] = ACTIONS(1712), @@ -102559,7 +102559,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1684), [anon_sym_AMP_AMP] = ACTIONS(1684), [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_null] = ACTIONS(1682), [anon_sym_if] = ACTIONS(1682), [anon_sym_else] = ACTIONS(1682), [anon_sym_when] = ACTIONS(1682), @@ -102592,30 +102591,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG] = ACTIONS(1682), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -102631,6 +102630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1682), [anon_sym_false] = ACTIONS(1682), [anon_sym_SQUOTE] = ACTIONS(1684), + [sym_null_literal] = ACTIONS(1682), [sym__backtick_identifier] = ACTIONS(1684), [sym__automatic_semicolon] = ACTIONS(1684), [sym_safe_nav] = ACTIONS(1684), @@ -102680,7 +102680,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3370), [anon_sym_AMP_AMP] = ACTIONS(3370), [anon_sym_PIPE_PIPE] = ACTIONS(3370), - [anon_sym_null] = ACTIONS(3368), [anon_sym_if] = ACTIONS(3368), [anon_sym_else] = ACTIONS(3368), [anon_sym_when] = ACTIONS(3368), @@ -102713,30 +102712,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3370), [anon_sym_BANG] = ACTIONS(3368), [anon_sym_BANG_BANG] = ACTIONS(3370), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -102752,6 +102751,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3368), [anon_sym_false] = ACTIONS(3368), [anon_sym_SQUOTE] = ACTIONS(3370), + [sym_null_literal] = ACTIONS(3368), [sym__backtick_identifier] = ACTIONS(3370), [sym__automatic_semicolon] = ACTIONS(3370), [sym_safe_nav] = ACTIONS(3370), @@ -102801,7 +102801,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1756), [anon_sym_AMP_AMP] = ACTIONS(1756), [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -102834,30 +102833,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -102873,6 +102872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1756), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1756), @@ -102922,7 +102922,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -102955,30 +102954,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -102994,6 +102993,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -103043,7 +103043,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -103076,30 +103075,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -103115,6 +103114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -103164,7 +103164,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -103197,30 +103196,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -103236,6 +103235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -103285,7 +103285,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -103318,30 +103317,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -103357,6 +103356,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -103406,7 +103406,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -103439,30 +103438,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -103478,6 +103477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -103527,7 +103527,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -103560,30 +103559,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -103599,6 +103598,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -103648,7 +103648,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -103681,30 +103680,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -103720,6 +103719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -103769,7 +103769,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -103802,30 +103801,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -103841,6 +103840,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -103890,7 +103890,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1756), [anon_sym_AMP_AMP] = ACTIONS(1756), [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -103923,30 +103922,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -103962,6 +103961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1756), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1756), @@ -104011,7 +104011,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1756), [anon_sym_AMP_AMP] = ACTIONS(1756), [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -104044,30 +104043,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -104083,6 +104082,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1756), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1756), @@ -104132,7 +104132,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -104165,30 +104164,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -104204,6 +104203,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -104253,7 +104253,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1684), [anon_sym_AMP_AMP] = ACTIONS(1684), [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_null] = ACTIONS(1682), [anon_sym_if] = ACTIONS(1682), [anon_sym_else] = ACTIONS(1682), [anon_sym_when] = ACTIONS(1682), @@ -104286,30 +104285,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG] = ACTIONS(1682), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -104325,6 +104324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1682), [anon_sym_false] = ACTIONS(1682), [anon_sym_SQUOTE] = ACTIONS(1684), + [sym_null_literal] = ACTIONS(1682), [sym__backtick_identifier] = ACTIONS(1684), [sym__automatic_semicolon] = ACTIONS(1684), [sym_safe_nav] = ACTIONS(1684), @@ -104374,7 +104374,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1684), [anon_sym_AMP_AMP] = ACTIONS(1684), [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_null] = ACTIONS(1682), [anon_sym_if] = ACTIONS(1682), [anon_sym_else] = ACTIONS(1682), [anon_sym_when] = ACTIONS(1682), @@ -104407,30 +104406,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG] = ACTIONS(1682), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -104446,6 +104445,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1682), [anon_sym_false] = ACTIONS(1682), [anon_sym_SQUOTE] = ACTIONS(1684), + [sym_null_literal] = ACTIONS(1682), [sym__backtick_identifier] = ACTIONS(1684), [sym__automatic_semicolon] = ACTIONS(1684), [sym_safe_nav] = ACTIONS(1684), @@ -104495,7 +104495,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -104528,30 +104527,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -104567,6 +104566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -104616,7 +104616,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1766), [anon_sym_AMP_AMP] = ACTIONS(1766), [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), [anon_sym_if] = ACTIONS(1764), [anon_sym_else] = ACTIONS(1764), [anon_sym_when] = ACTIONS(1764), @@ -104649,30 +104648,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1766), [anon_sym_BANG] = ACTIONS(1764), [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -104688,6 +104687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1764), [anon_sym_false] = ACTIONS(1764), [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_null_literal] = ACTIONS(1764), [sym__backtick_identifier] = ACTIONS(1766), [sym__automatic_semicolon] = ACTIONS(1766), [sym_safe_nav] = ACTIONS(1766), @@ -104737,7 +104737,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3370), [anon_sym_AMP_AMP] = ACTIONS(3370), [anon_sym_PIPE_PIPE] = ACTIONS(3370), - [anon_sym_null] = ACTIONS(3368), [anon_sym_if] = ACTIONS(3368), [anon_sym_else] = ACTIONS(3368), [anon_sym_when] = ACTIONS(3368), @@ -104770,30 +104769,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3370), [anon_sym_BANG] = ACTIONS(3368), [anon_sym_BANG_BANG] = ACTIONS(3370), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -104809,6 +104808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3368), [anon_sym_false] = ACTIONS(3368), [anon_sym_SQUOTE] = ACTIONS(3370), + [sym_null_literal] = ACTIONS(3368), [sym__backtick_identifier] = ACTIONS(3370), [sym__automatic_semicolon] = ACTIONS(3370), [sym_safe_nav] = ACTIONS(3370), @@ -104858,7 +104858,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -104891,30 +104890,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -104930,6 +104929,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -104979,7 +104979,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -105012,30 +105011,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -105051,6 +105050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -105100,7 +105100,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -105133,30 +105132,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -105172,6 +105171,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -105221,7 +105221,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1756), [anon_sym_AMP_AMP] = ACTIONS(1756), [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -105254,30 +105253,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -105293,6 +105292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1756), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1756), @@ -105342,7 +105342,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -105375,30 +105374,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -105414,6 +105413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -105463,7 +105463,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -105496,30 +105495,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -105535,6 +105534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -105584,7 +105584,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -105617,30 +105616,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -105656,6 +105655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -105705,7 +105705,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -105738,30 +105737,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -105777,6 +105776,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -105826,7 +105826,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1756), [anon_sym_AMP_AMP] = ACTIONS(1756), [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -105859,30 +105858,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -105898,6 +105897,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1756), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1756), @@ -105947,7 +105947,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -105980,30 +105979,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -106019,6 +106018,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -106068,7 +106068,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -106101,30 +106100,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -106140,6 +106139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -106189,7 +106189,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1756), [anon_sym_AMP_AMP] = ACTIONS(1756), [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -106222,30 +106221,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -106261,6 +106260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1756), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1756), @@ -106310,7 +106310,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -106343,30 +106342,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -106382,6 +106381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -106431,7 +106431,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1766), [anon_sym_AMP_AMP] = ACTIONS(1766), [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), [anon_sym_if] = ACTIONS(1764), [anon_sym_else] = ACTIONS(1764), [anon_sym_when] = ACTIONS(1764), @@ -106464,30 +106463,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1766), [anon_sym_BANG] = ACTIONS(1764), [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -106503,6 +106502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1764), [anon_sym_false] = ACTIONS(1764), [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_null_literal] = ACTIONS(1764), [sym__backtick_identifier] = ACTIONS(1766), [sym__automatic_semicolon] = ACTIONS(1766), [sym_safe_nav] = ACTIONS(1766), @@ -106552,7 +106552,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -106585,30 +106584,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -106624,6 +106623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -106673,7 +106673,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -106706,30 +106705,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -106745,6 +106744,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -106794,7 +106794,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -106827,30 +106826,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -106866,6 +106865,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -106915,7 +106915,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -106948,30 +106947,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -106987,6 +106986,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -107036,7 +107036,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1684), [anon_sym_AMP_AMP] = ACTIONS(1684), [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_null] = ACTIONS(1682), [anon_sym_if] = ACTIONS(1682), [anon_sym_else] = ACTIONS(1682), [anon_sym_when] = ACTIONS(1682), @@ -107069,30 +107068,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG] = ACTIONS(1682), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -107108,6 +107107,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1682), [anon_sym_false] = ACTIONS(1682), [anon_sym_SQUOTE] = ACTIONS(1684), + [sym_null_literal] = ACTIONS(1682), [sym__backtick_identifier] = ACTIONS(1684), [sym__automatic_semicolon] = ACTIONS(1684), [sym_safe_nav] = ACTIONS(1684), @@ -107161,7 +107161,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3143), [anon_sym_AMP_AMP] = ACTIONS(3143), [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_null] = ACTIONS(3141), [anon_sym_if] = ACTIONS(3141), [anon_sym_else] = ACTIONS(3141), [anon_sym_when] = ACTIONS(3141), @@ -107228,6 +107227,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3141), [anon_sym_false] = ACTIONS(3141), [anon_sym_SQUOTE] = ACTIONS(3143), + [sym_null_literal] = ACTIONS(3141), [sym__backtick_identifier] = ACTIONS(3143), [sym__automatic_semicolon] = ACTIONS(3143), [sym_safe_nav] = ACTIONS(1712), @@ -107281,7 +107281,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1960), [anon_sym_AMP_AMP] = ACTIONS(1962), [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_null] = ACTIONS(3137), [anon_sym_if] = ACTIONS(3137), [anon_sym_else] = ACTIONS(3137), [anon_sym_when] = ACTIONS(3137), @@ -107348,6 +107347,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3137), [anon_sym_false] = ACTIONS(3137), [anon_sym_SQUOTE] = ACTIONS(3139), + [sym_null_literal] = ACTIONS(3137), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3139), [sym_safe_nav] = ACTIONS(1712), @@ -107401,7 +107401,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1960), [anon_sym_AMP_AMP] = ACTIONS(1962), [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_null] = ACTIONS(3122), [anon_sym_if] = ACTIONS(3122), [anon_sym_else] = ACTIONS(3122), [anon_sym_when] = ACTIONS(3122), @@ -107468,6 +107467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3122), [anon_sym_false] = ACTIONS(3122), [anon_sym_SQUOTE] = ACTIONS(3124), + [sym_null_literal] = ACTIONS(3122), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3124), [sym_safe_nav] = ACTIONS(1712), @@ -107521,7 +107521,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3186), [anon_sym_AMP_AMP] = ACTIONS(3186), [anon_sym_PIPE_PIPE] = ACTIONS(3186), - [anon_sym_null] = ACTIONS(3182), [anon_sym_if] = ACTIONS(3182), [anon_sym_else] = ACTIONS(3182), [anon_sym_when] = ACTIONS(3182), @@ -107588,6 +107587,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3182), [anon_sym_false] = ACTIONS(3182), [anon_sym_SQUOTE] = ACTIONS(3186), + [sym_null_literal] = ACTIONS(3182), [sym__backtick_identifier] = ACTIONS(3186), [sym__automatic_semicolon] = ACTIONS(3186), [sym_safe_nav] = ACTIONS(3186), @@ -107641,7 +107641,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1960), [anon_sym_AMP_AMP] = ACTIONS(1962), [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_null] = ACTIONS(3111), [anon_sym_if] = ACTIONS(3111), [anon_sym_else] = ACTIONS(3111), [anon_sym_when] = ACTIONS(3111), @@ -107708,6 +107707,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3111), [anon_sym_false] = ACTIONS(3111), [anon_sym_SQUOTE] = ACTIONS(3113), + [sym_null_literal] = ACTIONS(3111), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3113), [sym_safe_nav] = ACTIONS(1712), @@ -107761,7 +107761,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1960), [anon_sym_AMP_AMP] = ACTIONS(1962), [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_null] = ACTIONS(3044), [anon_sym_if] = ACTIONS(3044), [anon_sym_else] = ACTIONS(3044), [anon_sym_when] = ACTIONS(3044), @@ -107828,6 +107827,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3044), [anon_sym_false] = ACTIONS(3044), [anon_sym_SQUOTE] = ACTIONS(3046), + [sym_null_literal] = ACTIONS(3044), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3046), [sym_safe_nav] = ACTIONS(1712), @@ -107881,7 +107881,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1960), [anon_sym_AMP_AMP] = ACTIONS(1962), [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_null] = ACTIONS(3107), [anon_sym_if] = ACTIONS(3107), [anon_sym_else] = ACTIONS(3107), [anon_sym_when] = ACTIONS(3107), @@ -107948,6 +107947,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3107), [anon_sym_false] = ACTIONS(3107), [anon_sym_SQUOTE] = ACTIONS(3109), + [sym_null_literal] = ACTIONS(3107), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3109), [sym_safe_nav] = ACTIONS(1712), @@ -108001,7 +108001,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3052), [anon_sym_AMP_AMP] = ACTIONS(3052), [anon_sym_PIPE_PIPE] = ACTIONS(3052), - [anon_sym_null] = ACTIONS(3050), [anon_sym_if] = ACTIONS(3050), [anon_sym_else] = ACTIONS(3050), [anon_sym_when] = ACTIONS(3050), @@ -108068,6 +108067,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3050), [anon_sym_false] = ACTIONS(3050), [anon_sym_SQUOTE] = ACTIONS(3052), + [sym_null_literal] = ACTIONS(3050), [sym__backtick_identifier] = ACTIONS(3052), [sym__automatic_semicolon] = ACTIONS(3052), [sym_safe_nav] = ACTIONS(1712), @@ -108121,7 +108121,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3102), [anon_sym_AMP_AMP] = ACTIONS(3102), [anon_sym_PIPE_PIPE] = ACTIONS(3102), - [anon_sym_null] = ACTIONS(3100), [anon_sym_if] = ACTIONS(3100), [anon_sym_else] = ACTIONS(3100), [anon_sym_when] = ACTIONS(3100), @@ -108188,6 +108187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3100), [anon_sym_false] = ACTIONS(3100), [anon_sym_SQUOTE] = ACTIONS(3102), + [sym_null_literal] = ACTIONS(3100), [sym__backtick_identifier] = ACTIONS(3102), [sym__automatic_semicolon] = ACTIONS(3102), [sym_safe_nav] = ACTIONS(1712), @@ -108241,7 +108241,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1960), [anon_sym_AMP_AMP] = ACTIONS(1962), [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_null] = ACTIONS(3096), [anon_sym_if] = ACTIONS(3096), [anon_sym_else] = ACTIONS(3096), [anon_sym_when] = ACTIONS(3096), @@ -108308,6 +108307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3096), [anon_sym_false] = ACTIONS(3096), [anon_sym_SQUOTE] = ACTIONS(3098), + [sym_null_literal] = ACTIONS(3096), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3098), [sym_safe_nav] = ACTIONS(1712), @@ -108361,7 +108361,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3154), [anon_sym_AMP_AMP] = ACTIONS(3154), [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3148), [anon_sym_if] = ACTIONS(3148), [anon_sym_else] = ACTIONS(3148), [anon_sym_when] = ACTIONS(3148), @@ -108428,6 +108427,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3148), [anon_sym_false] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(3154), + [sym_null_literal] = ACTIONS(3148), [sym__backtick_identifier] = ACTIONS(3154), [sym__automatic_semicolon] = ACTIONS(3154), [sym_safe_nav] = ACTIONS(3154), @@ -108481,7 +108481,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3117), [anon_sym_AMP_AMP] = ACTIONS(3117), [anon_sym_PIPE_PIPE] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3115), [anon_sym_if] = ACTIONS(3115), [anon_sym_else] = ACTIONS(3115), [anon_sym_when] = ACTIONS(3115), @@ -108548,6 +108547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3115), [anon_sym_false] = ACTIONS(3115), [anon_sym_SQUOTE] = ACTIONS(3117), + [sym_null_literal] = ACTIONS(3115), [sym__backtick_identifier] = ACTIONS(3117), [sym__automatic_semicolon] = ACTIONS(3117), [sym_safe_nav] = ACTIONS(1712), @@ -108601,7 +108601,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3200), [anon_sym_AMP_AMP] = ACTIONS(3200), [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_null] = ACTIONS(3196), [anon_sym_if] = ACTIONS(3196), [anon_sym_else] = ACTIONS(3196), [anon_sym_when] = ACTIONS(3196), @@ -108668,6 +108667,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3196), [anon_sym_false] = ACTIONS(3196), [anon_sym_SQUOTE] = ACTIONS(3200), + [sym_null_literal] = ACTIONS(3196), [sym__backtick_identifier] = ACTIONS(3200), [sym__automatic_semicolon] = ACTIONS(3200), [sym_safe_nav] = ACTIONS(3200), @@ -108721,7 +108721,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1960), [anon_sym_AMP_AMP] = ACTIONS(1962), [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_null] = ACTIONS(3126), [anon_sym_if] = ACTIONS(3126), [anon_sym_else] = ACTIONS(3126), [anon_sym_when] = ACTIONS(3126), @@ -108788,6 +108787,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3126), [anon_sym_false] = ACTIONS(3126), [anon_sym_SQUOTE] = ACTIONS(3128), + [sym_null_literal] = ACTIONS(3126), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3128), [sym_safe_nav] = ACTIONS(1712), @@ -108841,7 +108841,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1960), [anon_sym_AMP_AMP] = ACTIONS(3086), [anon_sym_PIPE_PIPE] = ACTIONS(3086), - [anon_sym_null] = ACTIONS(3084), [anon_sym_if] = ACTIONS(3084), [anon_sym_else] = ACTIONS(3084), [anon_sym_when] = ACTIONS(3084), @@ -108908,6 +108907,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3084), [anon_sym_false] = ACTIONS(3084), [anon_sym_SQUOTE] = ACTIONS(3086), + [sym_null_literal] = ACTIONS(3084), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3086), [sym_safe_nav] = ACTIONS(1712), @@ -108961,7 +108961,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1960), [anon_sym_AMP_AMP] = ACTIONS(1962), [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_null] = ACTIONS(3080), [anon_sym_if] = ACTIONS(3080), [anon_sym_else] = ACTIONS(3080), [anon_sym_when] = ACTIONS(3080), @@ -109028,6 +109027,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3080), [anon_sym_false] = ACTIONS(3080), [anon_sym_SQUOTE] = ACTIONS(3082), + [sym_null_literal] = ACTIONS(3080), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3082), [sym_safe_nav] = ACTIONS(1712), @@ -109081,7 +109081,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1960), [anon_sym_AMP_AMP] = ACTIONS(3067), [anon_sym_PIPE_PIPE] = ACTIONS(3067), - [anon_sym_null] = ACTIONS(3065), [anon_sym_if] = ACTIONS(3065), [anon_sym_else] = ACTIONS(3065), [anon_sym_when] = ACTIONS(3065), @@ -109148,6 +109147,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3065), [anon_sym_false] = ACTIONS(3065), [anon_sym_SQUOTE] = ACTIONS(3067), + [sym_null_literal] = ACTIONS(3065), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3067), [sym_safe_nav] = ACTIONS(1712), @@ -109201,7 +109201,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1960), [anon_sym_AMP_AMP] = ACTIONS(3059), [anon_sym_PIPE_PIPE] = ACTIONS(3059), - [anon_sym_null] = ACTIONS(3057), [anon_sym_if] = ACTIONS(3057), [anon_sym_else] = ACTIONS(3057), [anon_sym_when] = ACTIONS(3057), @@ -109268,6 +109267,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3057), [anon_sym_false] = ACTIONS(3057), [anon_sym_SQUOTE] = ACTIONS(3059), + [sym_null_literal] = ACTIONS(3057), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3059), [sym_safe_nav] = ACTIONS(1712), @@ -109321,7 +109321,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3154), [anon_sym_AMP_AMP] = ACTIONS(3154), [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3148), [anon_sym_if] = ACTIONS(3148), [anon_sym_else] = ACTIONS(3148), [anon_sym_when] = ACTIONS(3148), @@ -109388,6 +109387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3148), [anon_sym_false] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(3154), + [sym_null_literal] = ACTIONS(3148), [sym__backtick_identifier] = ACTIONS(3154), [sym__automatic_semicolon] = ACTIONS(3154), [sym_safe_nav] = ACTIONS(3154), @@ -109441,7 +109441,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3132), [anon_sym_AMP_AMP] = ACTIONS(3132), [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), [anon_sym_if] = ACTIONS(3130), [anon_sym_else] = ACTIONS(3130), [anon_sym_when] = ACTIONS(3130), @@ -109508,6 +109507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3130), [anon_sym_false] = ACTIONS(3130), [anon_sym_SQUOTE] = ACTIONS(3132), + [sym_null_literal] = ACTIONS(3130), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3132), [sym_safe_nav] = ACTIONS(1712), @@ -109561,7 +109561,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1960), [anon_sym_AMP_AMP] = ACTIONS(1962), [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_null] = ACTIONS(3061), [anon_sym_if] = ACTIONS(3061), [anon_sym_else] = ACTIONS(3061), [anon_sym_when] = ACTIONS(3061), @@ -109628,6 +109627,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3061), [anon_sym_false] = ACTIONS(3061), [anon_sym_SQUOTE] = ACTIONS(3063), + [sym_null_literal] = ACTIONS(3061), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3063), [sym_safe_nav] = ACTIONS(1712), @@ -109681,7 +109681,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3154), [anon_sym_AMP_AMP] = ACTIONS(3154), [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3148), [anon_sym_if] = ACTIONS(3148), [anon_sym_else] = ACTIONS(3148), [anon_sym_when] = ACTIONS(3148), @@ -109748,6 +109747,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3148), [anon_sym_false] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(3154), + [sym_null_literal] = ACTIONS(3148), [sym__backtick_identifier] = ACTIONS(3154), [sym__automatic_semicolon] = ACTIONS(3154), [sym_safe_nav] = ACTIONS(3154), @@ -109801,7 +109801,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3154), [anon_sym_AMP_AMP] = ACTIONS(3154), [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3148), [anon_sym_if] = ACTIONS(3148), [anon_sym_else] = ACTIONS(3148), [anon_sym_when] = ACTIONS(3148), @@ -109868,6 +109867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3148), [anon_sym_false] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(3154), + [sym_null_literal] = ACTIONS(3148), [sym__backtick_identifier] = ACTIONS(3154), [sym__automatic_semicolon] = ACTIONS(3154), [sym_safe_nav] = ACTIONS(3154), @@ -109921,7 +109921,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3186), [anon_sym_AMP_AMP] = ACTIONS(3186), [anon_sym_PIPE_PIPE] = ACTIONS(3186), - [anon_sym_null] = ACTIONS(3182), [anon_sym_if] = ACTIONS(3182), [anon_sym_else] = ACTIONS(3182), [anon_sym_when] = ACTIONS(3182), @@ -109988,6 +109987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3182), [anon_sym_false] = ACTIONS(3182), [anon_sym_SQUOTE] = ACTIONS(3186), + [sym_null_literal] = ACTIONS(3182), [sym__backtick_identifier] = ACTIONS(3186), [sym__automatic_semicolon] = ACTIONS(3186), [sym_safe_nav] = ACTIONS(3186), @@ -110041,7 +110041,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1960), [anon_sym_AMP_AMP] = ACTIONS(3078), [anon_sym_PIPE_PIPE] = ACTIONS(3078), - [anon_sym_null] = ACTIONS(3076), [anon_sym_if] = ACTIONS(3076), [anon_sym_else] = ACTIONS(3076), [anon_sym_when] = ACTIONS(3076), @@ -110108,6 +110107,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3076), [anon_sym_false] = ACTIONS(3076), [anon_sym_SQUOTE] = ACTIONS(3078), + [sym_null_literal] = ACTIONS(3076), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3078), [sym_safe_nav] = ACTIONS(1712), @@ -110161,7 +110161,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3200), [anon_sym_AMP_AMP] = ACTIONS(3200), [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_null] = ACTIONS(3196), [anon_sym_if] = ACTIONS(3196), [anon_sym_else] = ACTIONS(3196), [anon_sym_when] = ACTIONS(3196), @@ -110228,6 +110227,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3196), [anon_sym_false] = ACTIONS(3196), [anon_sym_SQUOTE] = ACTIONS(3200), + [sym_null_literal] = ACTIONS(3196), [sym__backtick_identifier] = ACTIONS(3200), [sym__automatic_semicolon] = ACTIONS(3200), [sym_safe_nav] = ACTIONS(3200), @@ -110275,7 +110275,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -110308,30 +110307,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -110347,6 +110346,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -110394,7 +110394,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -110427,30 +110426,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -110466,6 +110465,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -110513,7 +110513,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -110546,30 +110545,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -110585,6 +110584,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -110632,7 +110632,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -110665,30 +110664,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -110704,6 +110703,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -110751,7 +110751,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -110784,30 +110783,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -110823,6 +110822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -110870,7 +110870,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1756), [anon_sym_AMP_AMP] = ACTIONS(1756), [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -110903,30 +110902,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -110942,6 +110941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1756), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1756), @@ -110989,7 +110989,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1756), [anon_sym_AMP_AMP] = ACTIONS(1756), [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -111022,30 +111021,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -111061,6 +111060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1756), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1756), @@ -111113,7 +111113,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3286), [anon_sym_AMP_AMP] = ACTIONS(3286), [anon_sym_PIPE_PIPE] = ACTIONS(3286), - [anon_sym_null] = ACTIONS(3284), [anon_sym_if] = ACTIONS(3284), [anon_sym_else] = ACTIONS(3284), [anon_sym_when] = ACTIONS(3284), @@ -111141,30 +111140,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3286), [anon_sym_BANG] = ACTIONS(3284), [anon_sym_BANG_BANG] = ACTIONS(3286), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -111180,6 +111179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3284), [anon_sym_false] = ACTIONS(3284), [anon_sym_SQUOTE] = ACTIONS(3286), + [sym_null_literal] = ACTIONS(3284), [sym__backtick_identifier] = ACTIONS(3286), [sym__automatic_semicolon] = ACTIONS(3286), [sym_safe_nav] = ACTIONS(3286), @@ -111232,7 +111232,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -111299,6 +111298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -111351,7 +111351,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3186), [anon_sym_AMP_AMP] = ACTIONS(3186), [anon_sym_PIPE_PIPE] = ACTIONS(3186), - [anon_sym_null] = ACTIONS(3182), [anon_sym_if] = ACTIONS(3182), [anon_sym_else] = ACTIONS(3182), [anon_sym_when] = ACTIONS(3182), @@ -111418,6 +111417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3182), [anon_sym_false] = ACTIONS(3182), [anon_sym_SQUOTE] = ACTIONS(3186), + [sym_null_literal] = ACTIONS(3182), [sym__backtick_identifier] = ACTIONS(3186), [sym__automatic_semicolon] = ACTIONS(3186), [sym_safe_nav] = ACTIONS(3186), @@ -111465,7 +111465,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1684), [anon_sym_AMP_AMP] = ACTIONS(1684), [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_null] = ACTIONS(1682), [anon_sym_if] = ACTIONS(1682), [anon_sym_else] = ACTIONS(1682), [anon_sym_when] = ACTIONS(1682), @@ -111498,30 +111497,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG] = ACTIONS(1682), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -111537,6 +111536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1682), [anon_sym_false] = ACTIONS(1682), [anon_sym_SQUOTE] = ACTIONS(1684), + [sym_null_literal] = ACTIONS(1682), [sym__backtick_identifier] = ACTIONS(1684), [sym__automatic_semicolon] = ACTIONS(1684), [sym_safe_nav] = ACTIONS(1684), @@ -111589,7 +111589,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3154), [anon_sym_AMP_AMP] = ACTIONS(3154), [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3148), [anon_sym_if] = ACTIONS(3148), [anon_sym_else] = ACTIONS(3148), [anon_sym_when] = ACTIONS(3148), @@ -111656,6 +111655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3148), [anon_sym_false] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(3154), + [sym_null_literal] = ACTIONS(3148), [sym__backtick_identifier] = ACTIONS(3154), [sym__automatic_semicolon] = ACTIONS(3154), [sym_safe_nav] = ACTIONS(3154), @@ -111708,7 +111708,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -111736,30 +111735,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -111775,6 +111774,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -111822,7 +111822,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1684), [anon_sym_AMP_AMP] = ACTIONS(1684), [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_null] = ACTIONS(1682), [anon_sym_if] = ACTIONS(1682), [anon_sym_else] = ACTIONS(1682), [anon_sym_when] = ACTIONS(1682), @@ -111855,30 +111854,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG] = ACTIONS(1682), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -111894,6 +111893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1682), [anon_sym_false] = ACTIONS(1682), [anon_sym_SQUOTE] = ACTIONS(1684), + [sym_null_literal] = ACTIONS(1682), [sym__backtick_identifier] = ACTIONS(1684), [sym__automatic_semicolon] = ACTIONS(1684), [sym_safe_nav] = ACTIONS(1684), @@ -111941,7 +111941,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1766), [anon_sym_AMP_AMP] = ACTIONS(1766), [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), [anon_sym_if] = ACTIONS(1764), [anon_sym_else] = ACTIONS(1764), [anon_sym_when] = ACTIONS(1764), @@ -111974,30 +111973,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1766), [anon_sym_BANG] = ACTIONS(1764), [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -112013,6 +112012,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1764), [anon_sym_false] = ACTIONS(1764), [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_null_literal] = ACTIONS(1764), [sym__backtick_identifier] = ACTIONS(1766), [sym__automatic_semicolon] = ACTIONS(1766), [sym_safe_nav] = ACTIONS(1766), @@ -112060,7 +112060,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3370), [anon_sym_AMP_AMP] = ACTIONS(3370), [anon_sym_PIPE_PIPE] = ACTIONS(3370), - [anon_sym_null] = ACTIONS(3368), [anon_sym_if] = ACTIONS(3368), [anon_sym_else] = ACTIONS(3368), [anon_sym_when] = ACTIONS(3368), @@ -112093,30 +112092,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3370), [anon_sym_BANG] = ACTIONS(3368), [anon_sym_BANG_BANG] = ACTIONS(3370), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -112132,6 +112131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3368), [anon_sym_false] = ACTIONS(3368), [anon_sym_SQUOTE] = ACTIONS(3370), + [sym_null_literal] = ACTIONS(3368), [sym__backtick_identifier] = ACTIONS(3370), [sym__automatic_semicolon] = ACTIONS(3370), [sym_safe_nav] = ACTIONS(3370), @@ -112184,7 +112184,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -112212,30 +112211,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -112251,6 +112250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -112298,7 +112298,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -112331,30 +112330,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -112370,6 +112369,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -112422,7 +112422,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -112450,30 +112449,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -112489,6 +112488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -112541,7 +112541,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3186), [anon_sym_AMP_AMP] = ACTIONS(3186), [anon_sym_PIPE_PIPE] = ACTIONS(3186), - [anon_sym_null] = ACTIONS(3182), [anon_sym_if] = ACTIONS(3182), [anon_sym_else] = ACTIONS(3182), [anon_sym_when] = ACTIONS(3182), @@ -112608,6 +112607,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3182), [anon_sym_false] = ACTIONS(3182), [anon_sym_SQUOTE] = ACTIONS(3186), + [sym_null_literal] = ACTIONS(3182), [sym__backtick_identifier] = ACTIONS(3186), [sym__automatic_semicolon] = ACTIONS(3186), [sym_safe_nav] = ACTIONS(3186), @@ -112660,7 +112660,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3154), [anon_sym_AMP_AMP] = ACTIONS(3154), [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3148), [anon_sym_if] = ACTIONS(3148), [anon_sym_else] = ACTIONS(3148), [anon_sym_when] = ACTIONS(3148), @@ -112727,6 +112726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3148), [anon_sym_false] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(3154), + [sym_null_literal] = ACTIONS(3148), [sym__backtick_identifier] = ACTIONS(3154), [sym__automatic_semicolon] = ACTIONS(3154), [sym_safe_nav] = ACTIONS(3154), @@ -112779,7 +112779,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3154), [anon_sym_AMP_AMP] = ACTIONS(3154), [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3148), [anon_sym_if] = ACTIONS(3148), [anon_sym_else] = ACTIONS(3148), [anon_sym_when] = ACTIONS(3148), @@ -112846,6 +112845,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3148), [anon_sym_false] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(3154), + [sym_null_literal] = ACTIONS(3148), [sym__backtick_identifier] = ACTIONS(3154), [sym__automatic_semicolon] = ACTIONS(3154), [sym_safe_nav] = ACTIONS(3154), @@ -112898,7 +112898,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -112926,30 +112925,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -112965,6 +112964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -113017,7 +113017,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3240), [anon_sym_AMP_AMP] = ACTIONS(3240), [anon_sym_PIPE_PIPE] = ACTIONS(3240), - [anon_sym_null] = ACTIONS(3236), [anon_sym_if] = ACTIONS(3236), [anon_sym_else] = ACTIONS(3236), [anon_sym_when] = ACTIONS(3236), @@ -113084,6 +113083,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3236), [anon_sym_false] = ACTIONS(3236), [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), [sym__backtick_identifier] = ACTIONS(3240), [sym__automatic_semicolon] = ACTIONS(3240), [sym_safe_nav] = ACTIONS(3240), @@ -113136,7 +113136,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -113203,6 +113202,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -113255,7 +113255,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3200), [anon_sym_AMP_AMP] = ACTIONS(3200), [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_null] = ACTIONS(3196), [anon_sym_if] = ACTIONS(3196), [anon_sym_else] = ACTIONS(3196), [anon_sym_when] = ACTIONS(3196), @@ -113322,6 +113321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3196), [anon_sym_false] = ACTIONS(3196), [anon_sym_SQUOTE] = ACTIONS(3200), + [sym_null_literal] = ACTIONS(3196), [sym__backtick_identifier] = ACTIONS(3200), [sym__automatic_semicolon] = ACTIONS(3200), [sym_safe_nav] = ACTIONS(3200), @@ -113374,7 +113374,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3200), [anon_sym_AMP_AMP] = ACTIONS(3200), [anon_sym_PIPE_PIPE] = ACTIONS(3200), - [anon_sym_null] = ACTIONS(3196), [anon_sym_if] = ACTIONS(3196), [anon_sym_else] = ACTIONS(3196), [anon_sym_when] = ACTIONS(3196), @@ -113441,6 +113440,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3196), [anon_sym_false] = ACTIONS(3196), [anon_sym_SQUOTE] = ACTIONS(3200), + [sym_null_literal] = ACTIONS(3196), [sym__backtick_identifier] = ACTIONS(3200), [sym__automatic_semicolon] = ACTIONS(3200), [sym_safe_nav] = ACTIONS(3200), @@ -113493,7 +113493,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -113521,30 +113520,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -113560,6 +113559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -113612,7 +113612,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3230), [anon_sym_AMP_AMP] = ACTIONS(3230), [anon_sym_PIPE_PIPE] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3226), [anon_sym_if] = ACTIONS(3226), [anon_sym_else] = ACTIONS(3226), [anon_sym_when] = ACTIONS(3226), @@ -113679,6 +113678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3226), [anon_sym_false] = ACTIONS(3226), [anon_sym_SQUOTE] = ACTIONS(3230), + [sym_null_literal] = ACTIONS(3226), [sym__backtick_identifier] = ACTIONS(3230), [sym__automatic_semicolon] = ACTIONS(3230), [sym_safe_nav] = ACTIONS(3230), @@ -113731,7 +113731,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3240), [anon_sym_AMP_AMP] = ACTIONS(3240), [anon_sym_PIPE_PIPE] = ACTIONS(3240), - [anon_sym_null] = ACTIONS(3236), [anon_sym_if] = ACTIONS(3236), [anon_sym_else] = ACTIONS(3236), [anon_sym_when] = ACTIONS(3236), @@ -113798,6 +113797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3236), [anon_sym_false] = ACTIONS(3236), [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), [sym__backtick_identifier] = ACTIONS(3240), [sym__automatic_semicolon] = ACTIONS(3240), [sym_safe_nav] = ACTIONS(3240), @@ -113845,7 +113845,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -113878,30 +113877,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -113917,6 +113916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -113964,7 +113964,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -113997,30 +113996,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -114036,6 +114035,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -114088,7 +114088,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3286), [anon_sym_AMP_AMP] = ACTIONS(3286), [anon_sym_PIPE_PIPE] = ACTIONS(3286), - [anon_sym_null] = ACTIONS(3284), [anon_sym_if] = ACTIONS(3284), [anon_sym_else] = ACTIONS(3284), [anon_sym_when] = ACTIONS(3284), @@ -114116,30 +114115,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3286), [anon_sym_BANG] = ACTIONS(3284), [anon_sym_BANG_BANG] = ACTIONS(3286), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -114155,6 +114154,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3284), [anon_sym_false] = ACTIONS(3284), [anon_sym_SQUOTE] = ACTIONS(3286), + [sym_null_literal] = ACTIONS(3284), [sym__backtick_identifier] = ACTIONS(3286), [sym__automatic_semicolon] = ACTIONS(3286), [sym_safe_nav] = ACTIONS(3286), @@ -114202,7 +114202,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3370), [anon_sym_AMP_AMP] = ACTIONS(3370), [anon_sym_PIPE_PIPE] = ACTIONS(3370), - [anon_sym_null] = ACTIONS(3368), [anon_sym_if] = ACTIONS(3368), [anon_sym_else] = ACTIONS(3368), [anon_sym_when] = ACTIONS(3368), @@ -114235,30 +114234,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3370), [anon_sym_BANG] = ACTIONS(3368), [anon_sym_BANG_BANG] = ACTIONS(3370), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -114274,6 +114273,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3368), [anon_sym_false] = ACTIONS(3368), [anon_sym_SQUOTE] = ACTIONS(3370), + [sym_null_literal] = ACTIONS(3368), [sym__backtick_identifier] = ACTIONS(3370), [sym__automatic_semicolon] = ACTIONS(3370), [sym_safe_nav] = ACTIONS(3370), @@ -114326,7 +114326,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3230), [anon_sym_AMP_AMP] = ACTIONS(3230), [anon_sym_PIPE_PIPE] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3226), [anon_sym_if] = ACTIONS(3226), [anon_sym_else] = ACTIONS(3226), [anon_sym_when] = ACTIONS(3226), @@ -114393,6 +114392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3226), [anon_sym_false] = ACTIONS(3226), [anon_sym_SQUOTE] = ACTIONS(3230), + [sym_null_literal] = ACTIONS(3226), [sym__backtick_identifier] = ACTIONS(3230), [sym__automatic_semicolon] = ACTIONS(3230), [sym_safe_nav] = ACTIONS(3230), @@ -114440,7 +114440,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1766), [anon_sym_AMP_AMP] = ACTIONS(1766), [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), [anon_sym_if] = ACTIONS(1764), [anon_sym_else] = ACTIONS(1764), [anon_sym_when] = ACTIONS(1764), @@ -114473,30 +114472,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1766), [anon_sym_BANG] = ACTIONS(1764), [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -114512,6 +114511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1764), [anon_sym_false] = ACTIONS(1764), [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_null_literal] = ACTIONS(1764), [sym__backtick_identifier] = ACTIONS(1766), [sym__automatic_semicolon] = ACTIONS(1766), [sym_safe_nav] = ACTIONS(1766), @@ -114564,7 +114564,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3154), [anon_sym_AMP_AMP] = ACTIONS(3154), [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3148), [anon_sym_if] = ACTIONS(3148), [anon_sym_else] = ACTIONS(3148), [anon_sym_when] = ACTIONS(3148), @@ -114631,6 +114630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3148), [anon_sym_false] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(3154), + [sym_null_literal] = ACTIONS(3148), [sym__backtick_identifier] = ACTIONS(3154), [sym__automatic_semicolon] = ACTIONS(3154), [sym_safe_nav] = ACTIONS(3154), @@ -114678,7 +114678,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1684), [anon_sym_AMP_AMP] = ACTIONS(1684), [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_null] = ACTIONS(1682), [anon_sym_if] = ACTIONS(1682), [anon_sym_else] = ACTIONS(1682), [anon_sym_when] = ACTIONS(1682), @@ -114711,30 +114710,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG] = ACTIONS(1682), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -114750,6 +114749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1682), [anon_sym_false] = ACTIONS(1682), [anon_sym_SQUOTE] = ACTIONS(1684), + [sym_null_literal] = ACTIONS(1682), [sym__backtick_identifier] = ACTIONS(1684), [sym__automatic_semicolon] = ACTIONS(1684), [sym_safe_nav] = ACTIONS(1684), @@ -114797,7 +114797,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1684), [anon_sym_AMP_AMP] = ACTIONS(1684), [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_null] = ACTIONS(1682), [anon_sym_if] = ACTIONS(1682), [anon_sym_else] = ACTIONS(1682), [anon_sym_when] = ACTIONS(1682), @@ -114830,30 +114829,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG] = ACTIONS(1682), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -114869,6 +114868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1682), [anon_sym_false] = ACTIONS(1682), [anon_sym_SQUOTE] = ACTIONS(1684), + [sym_null_literal] = ACTIONS(1682), [sym__backtick_identifier] = ACTIONS(1684), [sym__automatic_semicolon] = ACTIONS(1684), [sym_safe_nav] = ACTIONS(1684), @@ -114916,7 +114916,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1756), [anon_sym_AMP_AMP] = ACTIONS(1756), [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -114949,30 +114948,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -114988,6 +114987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1756), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1756), @@ -115035,7 +115035,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1756), [anon_sym_AMP_AMP] = ACTIONS(1756), [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -115068,30 +115067,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -115107,6 +115106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1756), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1756), @@ -115154,7 +115154,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -115187,30 +115186,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -115226,6 +115225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -115278,7 +115278,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -115306,30 +115305,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -115345,6 +115344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -115392,7 +115392,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -115425,30 +115424,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -115464,6 +115463,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -115511,7 +115511,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -115544,30 +115543,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -115583,6 +115582,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -115630,7 +115630,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -115663,30 +115662,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -115702,6 +115701,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -115754,7 +115754,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -115782,30 +115781,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -115821,6 +115820,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -115868,7 +115868,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -115901,30 +115900,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -115940,6 +115939,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -115987,7 +115987,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -116020,30 +116019,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -116059,6 +116058,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -116111,7 +116111,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -116178,6 +116177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -116230,7 +116230,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -116258,30 +116257,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -116297,6 +116296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -116349,7 +116349,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -116416,6 +116415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -116463,7 +116463,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -116496,30 +116495,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -116535,6 +116534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -116582,7 +116582,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -116615,30 +116614,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -116654,6 +116653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -116705,7 +116705,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3240), [anon_sym_AMP_AMP] = ACTIONS(3240), [anon_sym_PIPE_PIPE] = ACTIONS(3240), - [anon_sym_null] = ACTIONS(3236), [anon_sym_if] = ACTIONS(3236), [anon_sym_else] = ACTIONS(3236), [anon_sym_when] = ACTIONS(3236), @@ -116772,6 +116771,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3236), [anon_sym_false] = ACTIONS(3236), [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), [sym__backtick_identifier] = ACTIONS(3240), [sym__automatic_semicolon] = ACTIONS(3240), [sym_safe_nav] = ACTIONS(3240), @@ -116823,7 +116823,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1756), [anon_sym_AMP_AMP] = ACTIONS(1756), [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -116851,30 +116850,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -116890,6 +116889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1756), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1756), @@ -116941,7 +116941,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -117008,6 +117007,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -117059,7 +117059,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3230), [anon_sym_AMP_AMP] = ACTIONS(3230), [anon_sym_PIPE_PIPE] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3226), [anon_sym_if] = ACTIONS(3226), [anon_sym_else] = ACTIONS(3226), [anon_sym_when] = ACTIONS(3226), @@ -117126,6 +117125,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3226), [anon_sym_false] = ACTIONS(3226), [anon_sym_SQUOTE] = ACTIONS(3230), + [sym_null_literal] = ACTIONS(3226), [sym__backtick_identifier] = ACTIONS(3230), [sym__automatic_semicolon] = ACTIONS(3230), [sym_safe_nav] = ACTIONS(3230), @@ -117177,7 +117177,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -117205,30 +117204,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -117244,6 +117243,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -117295,7 +117295,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -117323,30 +117322,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -117362,6 +117361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -117413,7 +117413,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -117441,30 +117440,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -117480,6 +117479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -117531,7 +117531,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -117559,30 +117558,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -117598,6 +117597,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -117649,7 +117649,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -117716,6 +117715,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -117767,7 +117767,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -117834,6 +117833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -117885,7 +117885,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -117913,30 +117912,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -117952,6 +117951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -118003,7 +118003,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -118031,30 +118030,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -118070,6 +118069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -118121,7 +118121,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -118149,30 +118148,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -118188,6 +118187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -118239,7 +118239,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -118267,30 +118266,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -118306,6 +118305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -118357,7 +118357,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -118385,30 +118384,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -118424,6 +118423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -118475,7 +118475,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -118503,30 +118502,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -118542,6 +118541,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -118593,7 +118593,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -118621,30 +118620,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -118660,6 +118659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -118711,7 +118711,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3230), [anon_sym_AMP_AMP] = ACTIONS(3230), [anon_sym_PIPE_PIPE] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3226), [anon_sym_if] = ACTIONS(3226), [anon_sym_else] = ACTIONS(3226), [anon_sym_when] = ACTIONS(3226), @@ -118778,6 +118777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3226), [anon_sym_false] = ACTIONS(3226), [anon_sym_SQUOTE] = ACTIONS(3230), + [sym_null_literal] = ACTIONS(3226), [sym__backtick_identifier] = ACTIONS(3230), [sym__automatic_semicolon] = ACTIONS(3230), [sym_safe_nav] = ACTIONS(3230), @@ -118829,7 +118829,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -118857,30 +118856,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -118896,6 +118895,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -118947,7 +118947,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -118975,30 +118974,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -119014,6 +119013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -119065,7 +119065,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -119093,30 +119092,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -119132,6 +119131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -119183,7 +119183,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1756), [anon_sym_AMP_AMP] = ACTIONS(1756), [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -119211,30 +119210,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -119250,6 +119249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1756), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1756), @@ -119301,7 +119301,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -119329,30 +119328,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -119368,6 +119367,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -119419,7 +119419,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -119486,6 +119485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -119537,7 +119537,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3240), [anon_sym_AMP_AMP] = ACTIONS(3240), [anon_sym_PIPE_PIPE] = ACTIONS(3240), - [anon_sym_null] = ACTIONS(3236), [anon_sym_if] = ACTIONS(3236), [anon_sym_else] = ACTIONS(3236), [anon_sym_when] = ACTIONS(3236), @@ -119604,6 +119603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3236), [anon_sym_false] = ACTIONS(3236), [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), [sym__backtick_identifier] = ACTIONS(3240), [sym__automatic_semicolon] = ACTIONS(3240), [sym_safe_nav] = ACTIONS(3240), @@ -119655,7 +119655,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3286), [anon_sym_AMP_AMP] = ACTIONS(3286), [anon_sym_PIPE_PIPE] = ACTIONS(3286), - [anon_sym_null] = ACTIONS(3284), [anon_sym_if] = ACTIONS(3284), [anon_sym_else] = ACTIONS(3284), [anon_sym_when] = ACTIONS(3284), @@ -119683,30 +119682,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3286), [anon_sym_BANG] = ACTIONS(3284), [anon_sym_BANG_BANG] = ACTIONS(3286), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -119722,6 +119721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3284), [anon_sym_false] = ACTIONS(3284), [anon_sym_SQUOTE] = ACTIONS(3286), + [sym_null_literal] = ACTIONS(3284), [sym__backtick_identifier] = ACTIONS(3286), [sym__automatic_semicolon] = ACTIONS(3286), [sym_safe_nav] = ACTIONS(3286), @@ -119773,7 +119773,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3286), [anon_sym_AMP_AMP] = ACTIONS(3286), [anon_sym_PIPE_PIPE] = ACTIONS(3286), - [anon_sym_null] = ACTIONS(3284), [anon_sym_if] = ACTIONS(3284), [anon_sym_else] = ACTIONS(3284), [anon_sym_when] = ACTIONS(3284), @@ -119801,30 +119800,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3286), [anon_sym_BANG] = ACTIONS(3284), [anon_sym_BANG_BANG] = ACTIONS(3286), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -119840,6 +119839,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3284), [anon_sym_false] = ACTIONS(3284), [anon_sym_SQUOTE] = ACTIONS(3286), + [sym_null_literal] = ACTIONS(3284), [sym__backtick_identifier] = ACTIONS(3286), [sym__automatic_semicolon] = ACTIONS(3286), [sym_safe_nav] = ACTIONS(3286), @@ -119891,7 +119891,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -119919,30 +119918,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -119958,6 +119957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -120050,30 +120050,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -120167,30 +120167,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -120284,30 +120284,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -120401,30 +120401,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -120518,30 +120518,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -120635,30 +120635,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -120752,30 +120752,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -120869,30 +120869,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -120986,30 +120986,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -121103,30 +121103,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -121220,30 +121220,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -121337,30 +121337,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -121411,7 +121411,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -121439,30 +121438,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -121478,6 +121477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -121527,7 +121527,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -121555,30 +121554,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -121594,6 +121593,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -121643,7 +121643,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1756), [anon_sym_AMP_AMP] = ACTIONS(1756), [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -121671,30 +121670,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -121710,6 +121709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1756), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1756), @@ -121759,7 +121759,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -121787,30 +121786,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -121826,6 +121825,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -121875,7 +121875,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -121903,30 +121902,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -121942,6 +121941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -121991,7 +121991,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -122019,30 +122018,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -122058,6 +122057,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -122107,7 +122107,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -122135,30 +122134,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -122174,6 +122173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -122223,7 +122223,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -122251,30 +122250,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -122290,6 +122289,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -122339,7 +122339,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1756), [anon_sym_AMP_AMP] = ACTIONS(1756), [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -122367,30 +122366,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -122406,6 +122405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1756), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1756), @@ -122455,7 +122455,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -122483,30 +122482,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -122522,6 +122521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -122570,7 +122570,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1756), [anon_sym_AMP_AMP] = ACTIONS(1756), [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -122598,30 +122597,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -122637,6 +122636,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1756), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1756), @@ -122685,7 +122685,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1766), [anon_sym_AMP_AMP] = ACTIONS(1766), [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), [anon_sym_if] = ACTIONS(1764), [anon_sym_else] = ACTIONS(1764), [anon_sym_when] = ACTIONS(1764), @@ -122713,30 +122712,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1766), [anon_sym_BANG] = ACTIONS(1764), [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -122752,6 +122751,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1764), [anon_sym_false] = ACTIONS(1764), [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_null_literal] = ACTIONS(1764), [sym__backtick_identifier] = ACTIONS(1766), [sym__automatic_semicolon] = ACTIONS(1766), [sym_safe_nav] = ACTIONS(1766), @@ -122800,7 +122800,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -122828,30 +122827,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -122867,6 +122866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -122915,7 +122915,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -122943,30 +122942,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -122982,6 +122981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -123030,7 +123030,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1684), [anon_sym_AMP_AMP] = ACTIONS(1684), [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_null] = ACTIONS(1682), [anon_sym_if] = ACTIONS(1682), [anon_sym_else] = ACTIONS(1682), [anon_sym_when] = ACTIONS(1682), @@ -123058,30 +123057,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG] = ACTIONS(1682), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -123097,6 +123096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1682), [anon_sym_false] = ACTIONS(1682), [anon_sym_SQUOTE] = ACTIONS(1684), + [sym_null_literal] = ACTIONS(1682), [sym__backtick_identifier] = ACTIONS(1684), [sym__automatic_semicolon] = ACTIONS(1684), [sym_safe_nav] = ACTIONS(1684), @@ -123145,7 +123145,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -123173,30 +123172,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -123212,6 +123211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -123260,7 +123260,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -123288,30 +123287,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -123327,6 +123326,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -123375,7 +123375,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1684), [anon_sym_AMP_AMP] = ACTIONS(1684), [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_null] = ACTIONS(1682), [anon_sym_if] = ACTIONS(1682), [anon_sym_else] = ACTIONS(1682), [anon_sym_when] = ACTIONS(1682), @@ -123403,30 +123402,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG] = ACTIONS(1682), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -123442,6 +123441,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1682), [anon_sym_false] = ACTIONS(1682), [anon_sym_SQUOTE] = ACTIONS(1684), + [sym_null_literal] = ACTIONS(1682), [sym__backtick_identifier] = ACTIONS(1684), [sym__automatic_semicolon] = ACTIONS(1684), [sym_safe_nav] = ACTIONS(1684), @@ -123490,7 +123490,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -123518,30 +123517,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -123557,6 +123556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -123605,7 +123605,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1684), [anon_sym_AMP_AMP] = ACTIONS(1684), [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_null] = ACTIONS(1682), [anon_sym_if] = ACTIONS(1682), [anon_sym_else] = ACTIONS(1682), [anon_sym_when] = ACTIONS(1682), @@ -123633,30 +123632,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG] = ACTIONS(1682), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -123672,6 +123671,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1682), [anon_sym_false] = ACTIONS(1682), [anon_sym_SQUOTE] = ACTIONS(1684), + [sym_null_literal] = ACTIONS(1682), [sym__backtick_identifier] = ACTIONS(1684), [sym__automatic_semicolon] = ACTIONS(1684), [sym_safe_nav] = ACTIONS(1684), @@ -123720,7 +123720,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1766), [anon_sym_AMP_AMP] = ACTIONS(1766), [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), [anon_sym_if] = ACTIONS(1764), [anon_sym_else] = ACTIONS(1764), [anon_sym_when] = ACTIONS(1764), @@ -123748,30 +123747,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1766), [anon_sym_BANG] = ACTIONS(1764), [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -123787,6 +123786,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1764), [anon_sym_false] = ACTIONS(1764), [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_null_literal] = ACTIONS(1764), [sym__backtick_identifier] = ACTIONS(1766), [sym__automatic_semicolon] = ACTIONS(1766), [sym_safe_nav] = ACTIONS(1766), @@ -123835,7 +123835,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -123863,30 +123862,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -123902,6 +123901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -123950,7 +123950,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1684), [anon_sym_AMP_AMP] = ACTIONS(1684), [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_null] = ACTIONS(1682), [anon_sym_if] = ACTIONS(1682), [anon_sym_else] = ACTIONS(1682), [anon_sym_when] = ACTIONS(1682), @@ -123978,30 +123977,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG] = ACTIONS(1682), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -124017,6 +124016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1682), [anon_sym_false] = ACTIONS(1682), [anon_sym_SQUOTE] = ACTIONS(1684), + [sym_null_literal] = ACTIONS(1682), [sym__backtick_identifier] = ACTIONS(1684), [sym__automatic_semicolon] = ACTIONS(1684), [sym_safe_nav] = ACTIONS(1684), @@ -124065,7 +124065,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1756), [anon_sym_AMP_AMP] = ACTIONS(1756), [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -124093,30 +124092,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -124132,6 +124131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1756), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1756), @@ -124180,7 +124180,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -124208,30 +124207,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -124247,6 +124246,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -124295,7 +124295,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -124323,30 +124322,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -124362,6 +124361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -124410,7 +124410,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -124438,30 +124437,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -124477,6 +124476,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -124525,7 +124525,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3370), [anon_sym_AMP_AMP] = ACTIONS(3370), [anon_sym_PIPE_PIPE] = ACTIONS(3370), - [anon_sym_null] = ACTIONS(3368), [anon_sym_if] = ACTIONS(3368), [anon_sym_else] = ACTIONS(3368), [anon_sym_when] = ACTIONS(3368), @@ -124553,30 +124552,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3370), [anon_sym_BANG] = ACTIONS(3368), [anon_sym_BANG_BANG] = ACTIONS(3370), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -124592,6 +124591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3368), [anon_sym_false] = ACTIONS(3368), [anon_sym_SQUOTE] = ACTIONS(3370), + [sym_null_literal] = ACTIONS(3368), [sym__backtick_identifier] = ACTIONS(3370), [sym__automatic_semicolon] = ACTIONS(3370), [sym_safe_nav] = ACTIONS(3370), @@ -124640,7 +124640,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -124668,30 +124667,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -124707,6 +124706,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -124755,7 +124755,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -124783,30 +124782,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -124822,6 +124821,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -124870,7 +124870,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1756), [anon_sym_AMP_AMP] = ACTIONS(1756), [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -124898,30 +124897,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -124937,6 +124936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1756), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1756), @@ -124985,7 +124985,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -125013,30 +125012,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -125052,6 +125051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -125100,7 +125100,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -125128,30 +125127,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -125167,6 +125166,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -125215,7 +125215,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -125243,30 +125242,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -125282,6 +125281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -125330,7 +125330,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1756), [anon_sym_AMP_AMP] = ACTIONS(1756), [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -125358,30 +125357,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -125397,6 +125396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1756), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1756), @@ -125445,7 +125445,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -125473,30 +125472,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -125512,6 +125511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -125560,7 +125560,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -125588,30 +125587,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -125627,6 +125626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -125675,7 +125675,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3370), [anon_sym_AMP_AMP] = ACTIONS(3370), [anon_sym_PIPE_PIPE] = ACTIONS(3370), - [anon_sym_null] = ACTIONS(3368), [anon_sym_if] = ACTIONS(3368), [anon_sym_else] = ACTIONS(3368), [anon_sym_when] = ACTIONS(3368), @@ -125703,30 +125702,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3370), [anon_sym_BANG] = ACTIONS(3368), [anon_sym_BANG_BANG] = ACTIONS(3370), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -125742,6 +125741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3368), [anon_sym_false] = ACTIONS(3368), [anon_sym_SQUOTE] = ACTIONS(3370), + [sym_null_literal] = ACTIONS(3368), [sym__backtick_identifier] = ACTIONS(3370), [sym__automatic_semicolon] = ACTIONS(3370), [sym_safe_nav] = ACTIONS(3370), @@ -125822,16 +125822,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), [anon_sym_in] = ACTIONS(3602), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), [anon_sym_else] = ACTIONS(3604), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_BANGin] = ACTIONS(3606), [anon_sym_is] = ACTIONS(3608), [anon_sym_BANGis] = ACTIONS(3610), @@ -125846,18 +125845,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -125944,30 +125944,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -126058,30 +126058,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -126164,16 +126164,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), [anon_sym_in] = ACTIONS(3602), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), [anon_sym_else] = ACTIONS(3604), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_BANGin] = ACTIONS(3606), [anon_sym_is] = ACTIONS(3608), [anon_sym_BANGis] = ACTIONS(3610), @@ -126188,18 +126187,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -126286,30 +126286,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -126400,30 +126400,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -126514,30 +126514,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -126620,16 +126620,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), [anon_sym_in] = ACTIONS(3602), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), [anon_sym_else] = ACTIONS(3604), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_BANGin] = ACTIONS(3606), [anon_sym_is] = ACTIONS(3608), [anon_sym_BANGis] = ACTIONS(3610), @@ -126644,18 +126643,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -126734,16 +126734,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), [anon_sym_in] = ACTIONS(3602), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), [anon_sym_else] = ACTIONS(3604), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_BANGin] = ACTIONS(3606), [anon_sym_is] = ACTIONS(3608), [anon_sym_BANGis] = ACTIONS(3610), @@ -126758,18 +126757,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -126848,16 +126848,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), [anon_sym_in] = ACTIONS(3602), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), [anon_sym_else] = ACTIONS(3604), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_BANGin] = ACTIONS(3606), [anon_sym_is] = ACTIONS(3608), [anon_sym_BANGis] = ACTIONS(3610), @@ -126872,18 +126871,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -126962,16 +126962,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), [anon_sym_in] = ACTIONS(3602), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), [anon_sym_else] = ACTIONS(3604), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_BANGin] = ACTIONS(3606), [anon_sym_is] = ACTIONS(3608), [anon_sym_BANGis] = ACTIONS(3610), @@ -126986,18 +126985,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -127076,16 +127076,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), [anon_sym_in] = ACTIONS(3602), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), [anon_sym_else] = ACTIONS(3604), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_BANGin] = ACTIONS(3606), [anon_sym_is] = ACTIONS(3608), [anon_sym_BANGis] = ACTIONS(3610), @@ -127100,18 +127099,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -127190,16 +127190,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), [anon_sym_in] = ACTIONS(3602), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), [anon_sym_else] = ACTIONS(3604), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_BANGin] = ACTIONS(3606), [anon_sym_is] = ACTIONS(3608), [anon_sym_BANGis] = ACTIONS(3610), @@ -127214,18 +127213,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -127304,16 +127304,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), [anon_sym_in] = ACTIONS(3602), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), [anon_sym_else] = ACTIONS(3604), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_BANGin] = ACTIONS(3606), [anon_sym_is] = ACTIONS(3608), [anon_sym_BANGis] = ACTIONS(3610), @@ -127328,18 +127327,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -127418,16 +127418,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), [anon_sym_in] = ACTIONS(3602), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), [anon_sym_else] = ACTIONS(3604), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_BANGin] = ACTIONS(3606), [anon_sym_is] = ACTIONS(3608), [anon_sym_BANGis] = ACTIONS(3610), @@ -127442,18 +127441,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -127532,16 +127532,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), [anon_sym_in] = ACTIONS(3602), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), [anon_sym_else] = ACTIONS(3604), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_BANGin] = ACTIONS(3606), [anon_sym_is] = ACTIONS(3608), [anon_sym_BANGis] = ACTIONS(3610), @@ -127556,18 +127555,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -127646,16 +127646,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), [anon_sym_in] = ACTIONS(3602), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), [anon_sym_else] = ACTIONS(3604), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_BANGin] = ACTIONS(3606), [anon_sym_is] = ACTIONS(3608), [anon_sym_BANGis] = ACTIONS(3610), @@ -127670,18 +127669,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -127760,16 +127760,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), [anon_sym_in] = ACTIONS(3602), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), [anon_sym_else] = ACTIONS(3604), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_BANGin] = ACTIONS(3606), [anon_sym_is] = ACTIONS(3608), [anon_sym_BANGis] = ACTIONS(3610), @@ -127784,18 +127783,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -127874,16 +127874,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), [anon_sym_in] = ACTIONS(3602), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), [anon_sym_else] = ACTIONS(3604), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_BANGin] = ACTIONS(3606), [anon_sym_is] = ACTIONS(3608), [anon_sym_BANGis] = ACTIONS(3610), @@ -127898,18 +127897,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -127988,16 +127988,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), [anon_sym_in] = ACTIONS(3602), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), [anon_sym_else] = ACTIONS(3604), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_BANGin] = ACTIONS(3606), [anon_sym_is] = ACTIONS(3608), [anon_sym_BANGis] = ACTIONS(3610), @@ -128012,18 +128011,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -128110,30 +128110,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -128224,30 +128224,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -128330,16 +128330,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), [anon_sym_in] = ACTIONS(3602), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), [anon_sym_else] = ACTIONS(3604), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_BANGin] = ACTIONS(3606), [anon_sym_is] = ACTIONS(3608), [anon_sym_BANGis] = ACTIONS(3610), @@ -128354,18 +128353,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -128452,30 +128452,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -128566,30 +128566,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -128672,16 +128672,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), [anon_sym_in] = ACTIONS(3602), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), [anon_sym_else] = ACTIONS(3604), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_BANGin] = ACTIONS(3606), [anon_sym_is] = ACTIONS(3608), [anon_sym_BANGis] = ACTIONS(3610), @@ -128696,18 +128695,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -128786,16 +128786,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), [anon_sym_in] = ACTIONS(3602), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), [anon_sym_else] = ACTIONS(3604), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_BANGin] = ACTIONS(3606), [anon_sym_is] = ACTIONS(3608), [anon_sym_BANGis] = ACTIONS(3610), @@ -128810,18 +128809,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -128900,16 +128900,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), [anon_sym_in] = ACTIONS(3602), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), [anon_sym_else] = ACTIONS(3604), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_BANGin] = ACTIONS(3606), [anon_sym_is] = ACTIONS(3608), [anon_sym_BANGis] = ACTIONS(3610), @@ -128924,18 +128923,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -129014,16 +129014,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), [anon_sym_in] = ACTIONS(3602), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), [anon_sym_else] = ACTIONS(3604), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_BANGin] = ACTIONS(3606), [anon_sym_is] = ACTIONS(3608), [anon_sym_BANGis] = ACTIONS(3610), @@ -129038,18 +129037,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -129128,16 +129128,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), [anon_sym_in] = ACTIONS(3602), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), [anon_sym_else] = ACTIONS(3604), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_BANGin] = ACTIONS(3606), [anon_sym_is] = ACTIONS(3608), [anon_sym_BANGis] = ACTIONS(3610), @@ -129152,18 +129151,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -129242,23 +129242,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(3746), [sym_label] = ACTIONS(3749), [anon_sym_in] = ACTIONS(3752), - [anon_sym_null] = ACTIONS(3755), - [anon_sym_if] = ACTIONS(3758), - [anon_sym_else] = ACTIONS(3761), - [anon_sym_when] = ACTIONS(3764), - [anon_sym_try] = ACTIONS(3767), - [anon_sym_throw] = ACTIONS(3770), - [anon_sym_return] = ACTIONS(3773), - [anon_sym_continue] = ACTIONS(3776), - [anon_sym_break] = ACTIONS(3776), - [anon_sym_COLON_COLON] = ACTIONS(3779), - [anon_sym_BANGin] = ACTIONS(3782), - [anon_sym_is] = ACTIONS(3785), - [anon_sym_BANGis] = ACTIONS(3788), + [anon_sym_if] = ACTIONS(3755), + [anon_sym_else] = ACTIONS(3758), + [anon_sym_when] = ACTIONS(3761), + [anon_sym_try] = ACTIONS(3764), + [anon_sym_throw] = ACTIONS(3767), + [anon_sym_return] = ACTIONS(3770), + [anon_sym_continue] = ACTIONS(3773), + [anon_sym_break] = ACTIONS(3773), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [anon_sym_BANGin] = ACTIONS(3779), + [anon_sym_is] = ACTIONS(3782), + [anon_sym_BANGis] = ACTIONS(3785), [anon_sym_PLUS] = ACTIONS(3749), [anon_sym_DASH] = ACTIONS(3749), - [anon_sym_PLUS_PLUS] = ACTIONS(3791), - [anon_sym_DASH_DASH] = ACTIONS(3791), + [anon_sym_PLUS_PLUS] = ACTIONS(3788), + [anon_sym_DASH_DASH] = ACTIONS(3788), [anon_sym_BANG] = ACTIONS(3749), [anon_sym_data] = ACTIONS(3737), [anon_sym_inner] = ACTIONS(3737), @@ -129266,18 +129265,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(3737), [anon_sym_actual] = ACTIONS(3737), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3794), - [anon_sym_continue_AT] = ACTIONS(3797), - [anon_sym_break_AT] = ACTIONS(3800), - [anon_sym_this_AT] = ACTIONS(3803), - [anon_sym_super_AT] = ACTIONS(3806), - [sym_real_literal] = ACTIONS(3809), - [sym_integer_literal] = ACTIONS(3812), - [sym_hex_literal] = ACTIONS(3815), - [sym_bin_literal] = ACTIONS(3815), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [anon_sym_SQUOTE] = ACTIONS(3821), + [anon_sym_return_AT] = ACTIONS(3791), + [anon_sym_continue_AT] = ACTIONS(3794), + [anon_sym_break_AT] = ACTIONS(3797), + [anon_sym_this_AT] = ACTIONS(3800), + [anon_sym_super_AT] = ACTIONS(3803), + [sym_real_literal] = ACTIONS(3806), + [sym_integer_literal] = ACTIONS(3809), + [sym_hex_literal] = ACTIONS(3812), + [sym_bin_literal] = ACTIONS(3812), + [anon_sym_true] = ACTIONS(3815), + [anon_sym_false] = ACTIONS(3815), + [anon_sym_SQUOTE] = ACTIONS(3818), + [sym_null_literal] = ACTIONS(3821), [sym__backtick_identifier] = ACTIONS(3824), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3827), @@ -129356,16 +129356,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), [anon_sym_in] = ACTIONS(3602), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), [anon_sym_else] = ACTIONS(3604), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_BANGin] = ACTIONS(3606), [anon_sym_is] = ACTIONS(3608), [anon_sym_BANGis] = ACTIONS(3610), @@ -129380,18 +129379,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -129470,16 +129470,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), [anon_sym_in] = ACTIONS(3602), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), [anon_sym_else] = ACTIONS(3604), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_BANGin] = ACTIONS(3606), [anon_sym_is] = ACTIONS(3608), [anon_sym_BANGis] = ACTIONS(3610), @@ -129494,18 +129493,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -129584,16 +129584,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), [anon_sym_in] = ACTIONS(3602), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), [anon_sym_else] = ACTIONS(3604), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_BANGin] = ACTIONS(3606), [anon_sym_is] = ACTIONS(3608), [anon_sym_BANGis] = ACTIONS(3610), @@ -129608,18 +129607,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -129706,30 +129706,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -129820,30 +129820,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -129934,30 +129934,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -130006,7 +130006,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -130034,30 +130033,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -130073,6 +130072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -130119,7 +130119,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -130147,30 +130146,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -130186,6 +130185,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -130274,30 +130274,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -130345,7 +130345,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1756), [anon_sym_AMP_AMP] = ACTIONS(1756), [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -130373,30 +130372,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -130412,6 +130411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1756), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1756), @@ -130458,7 +130458,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1756), [anon_sym_AMP_AMP] = ACTIONS(1756), [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -130486,30 +130485,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -130525,6 +130524,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1756), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1756), @@ -130571,7 +130571,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1766), [anon_sym_AMP_AMP] = ACTIONS(1766), [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), [anon_sym_if] = ACTIONS(1764), [anon_sym_else] = ACTIONS(1764), [anon_sym_when] = ACTIONS(1764), @@ -130599,30 +130598,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1766), [anon_sym_BANG] = ACTIONS(1764), [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -130638,6 +130637,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1764), [anon_sym_false] = ACTIONS(1764), [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_null_literal] = ACTIONS(1764), [sym__backtick_identifier] = ACTIONS(1766), [sym__automatic_semicolon] = ACTIONS(1766), [sym_safe_nav] = ACTIONS(1766), @@ -130684,7 +130684,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1684), [anon_sym_AMP_AMP] = ACTIONS(1684), [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_null] = ACTIONS(1682), [anon_sym_if] = ACTIONS(1682), [anon_sym_else] = ACTIONS(1682), [anon_sym_when] = ACTIONS(1682), @@ -130712,30 +130711,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG] = ACTIONS(1682), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -130751,6 +130750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1682), [anon_sym_false] = ACTIONS(1682), [anon_sym_SQUOTE] = ACTIONS(1684), + [sym_null_literal] = ACTIONS(1682), [sym__backtick_identifier] = ACTIONS(1684), [sym__automatic_semicolon] = ACTIONS(1684), [sym_safe_nav] = ACTIONS(1684), @@ -130797,7 +130797,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -130825,30 +130824,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -130864,6 +130863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -130910,7 +130910,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1684), [anon_sym_AMP_AMP] = ACTIONS(1684), [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_null] = ACTIONS(1682), [anon_sym_if] = ACTIONS(1682), [anon_sym_else] = ACTIONS(1682), [anon_sym_when] = ACTIONS(1682), @@ -130938,30 +130937,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG] = ACTIONS(1682), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -130977,6 +130976,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1682), [anon_sym_false] = ACTIONS(1682), [anon_sym_SQUOTE] = ACTIONS(1684), + [sym_null_literal] = ACTIONS(1682), [sym__backtick_identifier] = ACTIONS(1684), [sym__automatic_semicolon] = ACTIONS(1684), [sym_safe_nav] = ACTIONS(1684), @@ -131065,30 +131065,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -131136,7 +131136,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -131164,30 +131163,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -131203,6 +131202,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -131249,7 +131249,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1766), [anon_sym_AMP_AMP] = ACTIONS(1766), [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), [anon_sym_if] = ACTIONS(1764), [anon_sym_else] = ACTIONS(1764), [anon_sym_when] = ACTIONS(1764), @@ -131277,30 +131276,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1766), [anon_sym_BANG] = ACTIONS(1764), [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -131316,6 +131315,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1764), [anon_sym_false] = ACTIONS(1764), [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_null_literal] = ACTIONS(1764), [sym__backtick_identifier] = ACTIONS(1766), [sym__automatic_semicolon] = ACTIONS(1766), [sym_safe_nav] = ACTIONS(1766), @@ -131362,7 +131362,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3370), [anon_sym_AMP_AMP] = ACTIONS(3370), [anon_sym_PIPE_PIPE] = ACTIONS(3370), - [anon_sym_null] = ACTIONS(3368), [anon_sym_if] = ACTIONS(3368), [anon_sym_else] = ACTIONS(3368), [anon_sym_when] = ACTIONS(3368), @@ -131390,30 +131389,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3370), [anon_sym_BANG] = ACTIONS(3368), [anon_sym_BANG_BANG] = ACTIONS(3370), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -131429,6 +131428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3368), [anon_sym_false] = ACTIONS(3368), [anon_sym_SQUOTE] = ACTIONS(3370), + [sym_null_literal] = ACTIONS(3368), [sym__backtick_identifier] = ACTIONS(3370), [sym__automatic_semicolon] = ACTIONS(3370), [sym_safe_nav] = ACTIONS(3370), @@ -131475,7 +131475,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -131503,30 +131502,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -131542,6 +131541,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -131588,7 +131588,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -131616,30 +131615,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -131655,6 +131654,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -131701,7 +131701,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -131729,30 +131728,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -131768,6 +131767,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -131814,7 +131814,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -131842,30 +131841,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -131881,6 +131880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -131927,7 +131927,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -131955,30 +131954,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -131994,6 +131993,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -132040,7 +132040,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -132068,30 +132067,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -132107,6 +132106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -132153,7 +132153,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -132181,30 +132180,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -132220,6 +132219,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -132266,7 +132266,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -132294,30 +132293,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -132333,6 +132332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -132379,7 +132379,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3370), [anon_sym_AMP_AMP] = ACTIONS(3370), [anon_sym_PIPE_PIPE] = ACTIONS(3370), - [anon_sym_null] = ACTIONS(3368), [anon_sym_if] = ACTIONS(3368), [anon_sym_else] = ACTIONS(3368), [anon_sym_when] = ACTIONS(3368), @@ -132407,30 +132406,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3370), [anon_sym_BANG] = ACTIONS(3368), [anon_sym_BANG_BANG] = ACTIONS(3370), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -132446,6 +132445,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3368), [anon_sym_false] = ACTIONS(3368), [anon_sym_SQUOTE] = ACTIONS(3370), + [sym_null_literal] = ACTIONS(3368), [sym__backtick_identifier] = ACTIONS(3370), [sym__automatic_semicolon] = ACTIONS(3370), [sym_safe_nav] = ACTIONS(3370), @@ -132534,30 +132534,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -132647,30 +132647,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -132760,30 +132760,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -132831,7 +132831,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -132859,30 +132858,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -132898,6 +132897,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -132986,30 +132986,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -133057,7 +133057,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1756), [anon_sym_AMP_AMP] = ACTIONS(1756), [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -133085,30 +133084,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -133124,6 +133123,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1756), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1756), @@ -133170,7 +133170,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -133198,30 +133197,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -133237,6 +133236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -133325,30 +133325,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -133396,7 +133396,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1756), [anon_sym_AMP_AMP] = ACTIONS(1756), [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -133424,30 +133423,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG] = ACTIONS(1754), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -133463,6 +133462,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1756), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1756), @@ -133509,7 +133509,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1684), [anon_sym_AMP_AMP] = ACTIONS(1684), [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_null] = ACTIONS(1682), [anon_sym_if] = ACTIONS(1682), [anon_sym_else] = ACTIONS(1682), [anon_sym_when] = ACTIONS(1682), @@ -133537,30 +133536,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG] = ACTIONS(1682), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -133576,6 +133575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1682), [anon_sym_false] = ACTIONS(1682), [anon_sym_SQUOTE] = ACTIONS(1684), + [sym_null_literal] = ACTIONS(1682), [sym__backtick_identifier] = ACTIONS(1684), [sym__automatic_semicolon] = ACTIONS(1684), [sym_safe_nav] = ACTIONS(1684), @@ -133622,7 +133622,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -133650,30 +133649,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -133689,6 +133688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -133735,7 +133735,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -133763,30 +133762,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -133802,6 +133801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -133890,30 +133890,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -133961,7 +133961,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1684), [anon_sym_AMP_AMP] = ACTIONS(1684), [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_null] = ACTIONS(1682), [anon_sym_if] = ACTIONS(1682), [anon_sym_else] = ACTIONS(1682), [anon_sym_when] = ACTIONS(1682), @@ -133989,30 +133988,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG] = ACTIONS(1682), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -134028,6 +134027,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1682), [anon_sym_false] = ACTIONS(1682), [anon_sym_SQUOTE] = ACTIONS(1684), + [sym_null_literal] = ACTIONS(1682), [sym__backtick_identifier] = ACTIONS(1684), [sym__automatic_semicolon] = ACTIONS(1684), [sym_safe_nav] = ACTIONS(1684), @@ -134116,30 +134116,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -134229,30 +134229,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -134342,30 +134342,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -134455,30 +134455,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -134566,30 +134566,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -134678,30 +134678,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -134786,15 +134786,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(697), [anon_sym_while] = ACTIONS(699), [anon_sym_do] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), @@ -134806,18 +134805,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(409), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -134902,30 +134902,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -135010,38 +135010,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1069), [anon_sym_while] = ACTIONS(1071), [anon_sym_do] = ACTIONS(447), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -135080,7 +135080,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3934), [anon_sym_AMP_AMP] = ACTIONS(3934), [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [anon_sym_null] = ACTIONS(3932), [anon_sym_if] = ACTIONS(3932), [anon_sym_else] = ACTIONS(3932), [anon_sym_when] = ACTIONS(3932), @@ -135152,6 +135151,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3932), [anon_sym_false] = ACTIONS(3932), [anon_sym_SQUOTE] = ACTIONS(3934), + [sym_null_literal] = ACTIONS(3932), [sym__backtick_identifier] = ACTIONS(3934), [sym__automatic_semicolon] = ACTIONS(3934), [sym_safe_nav] = ACTIONS(3934), @@ -135234,38 +135234,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_do] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(409), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(407), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(417), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -135346,15 +135346,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1089), [anon_sym_while] = ACTIONS(1091), [anon_sym_do] = ACTIONS(579), - [anon_sym_null] = ACTIONS(873), [anon_sym_if] = ACTIONS(785), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(1093), [anon_sym_DASH] = ACTIONS(1093), [anon_sym_PLUS_PLUS] = ACTIONS(1095), @@ -135366,18 +135365,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(879), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -135462,30 +135462,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -135528,7 +135528,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3943), [anon_sym_AMP_AMP] = ACTIONS(3943), [anon_sym_PIPE_PIPE] = ACTIONS(3943), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(3938), [anon_sym_when] = ACTIONS(3938), @@ -135600,6 +135599,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(3943), [sym__automatic_semicolon] = ACTIONS(3943), [sym_safe_nav] = ACTIONS(3943), @@ -135640,7 +135640,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3952), [anon_sym_AMP_AMP] = ACTIONS(3952), [anon_sym_PIPE_PIPE] = ACTIONS(3952), - [anon_sym_null] = ACTIONS(3950), [anon_sym_if] = ACTIONS(3950), [anon_sym_else] = ACTIONS(3950), [anon_sym_when] = ACTIONS(3950), @@ -135712,6 +135711,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3950), [anon_sym_false] = ACTIONS(3950), [anon_sym_SQUOTE] = ACTIONS(3952), + [sym_null_literal] = ACTIONS(3950), [sym__backtick_identifier] = ACTIONS(3952), [sym__automatic_semicolon] = ACTIONS(3952), [sym_safe_nav] = ACTIONS(3962), @@ -135752,7 +135752,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3943), [anon_sym_AMP_AMP] = ACTIONS(3943), [anon_sym_PIPE_PIPE] = ACTIONS(3943), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(3938), [anon_sym_when] = ACTIONS(3938), @@ -135824,6 +135823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(3943), [sym__automatic_semicolon] = ACTIONS(3943), [sym_safe_nav] = ACTIONS(3943), @@ -135906,15 +135906,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1117), [anon_sym_while] = ACTIONS(1119), [anon_sym_do] = ACTIONS(1121), - [anon_sym_null] = ACTIONS(873), [anon_sym_if] = ACTIONS(785), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(1093), [anon_sym_DASH] = ACTIONS(1093), [anon_sym_PLUS_PLUS] = ACTIONS(1095), @@ -135926,18 +135925,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(879), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -135976,7 +135976,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3952), [anon_sym_AMP_AMP] = ACTIONS(3952), [anon_sym_PIPE_PIPE] = ACTIONS(3952), - [anon_sym_null] = ACTIONS(3950), [anon_sym_if] = ACTIONS(3950), [anon_sym_else] = ACTIONS(3950), [anon_sym_when] = ACTIONS(3950), @@ -136048,6 +136047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3950), [anon_sym_false] = ACTIONS(3950), [anon_sym_SQUOTE] = ACTIONS(3952), + [sym_null_literal] = ACTIONS(3950), [sym__backtick_identifier] = ACTIONS(3952), [sym__automatic_semicolon] = ACTIONS(3952), [sym_safe_nav] = ACTIONS(3962), @@ -136088,7 +136088,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3943), [anon_sym_AMP_AMP] = ACTIONS(3943), [anon_sym_PIPE_PIPE] = ACTIONS(3943), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(3938), [anon_sym_when] = ACTIONS(3938), @@ -136160,6 +136159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(3943), [sym__automatic_semicolon] = ACTIONS(3943), [sym_safe_nav] = ACTIONS(3943), @@ -136242,15 +136242,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1007), [anon_sym_while] = ACTIONS(1009), [anon_sym_do] = ACTIONS(497), - [anon_sym_null] = ACTIONS(959), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -136262,18 +136261,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(965), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(965), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -136358,30 +136358,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -136470,30 +136470,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -136578,15 +136578,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(673), [anon_sym_while] = ACTIONS(675), [anon_sym_do] = ACTIONS(447), - [anon_sym_null] = ACTIONS(449), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(677), [anon_sym_DASH] = ACTIONS(677), [anon_sym_PLUS_PLUS] = ACTIONS(679), @@ -136598,18 +136597,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(461), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(461), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -136694,30 +136694,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -136802,15 +136802,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(643), [anon_sym_while] = ACTIONS(645), [anon_sym_do] = ACTIONS(155), - [anon_sym_null] = ACTIONS(157), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), @@ -136822,18 +136821,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(191), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -136914,38 +136914,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(955), [anon_sym_while] = ACTIONS(957), [anon_sym_do] = ACTIONS(497), - [anon_sym_null] = ACTIONS(959), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(965), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(965), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -137026,38 +137026,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(319), [anon_sym_while] = ACTIONS(321), [anon_sym_do] = ACTIONS(323), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -137138,15 +137138,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(983), [anon_sym_while] = ACTIONS(985), [anon_sym_do] = ACTIONS(155), - [anon_sym_null] = ACTIONS(817), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -137158,18 +137157,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(823), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -137250,38 +137250,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(443), [anon_sym_while] = ACTIONS(445), [anon_sym_do] = ACTIONS(447), - [anon_sym_null] = ACTIONS(449), - [anon_sym_if] = ACTIONS(451), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(459), + [anon_sym_if] = ACTIONS(449), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_BANG] = ACTIONS(457), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(461), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(459), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(461), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -137362,38 +137362,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(925), [anon_sym_while] = ACTIONS(927), [anon_sym_do] = ACTIONS(373), - [anon_sym_null] = ACTIONS(929), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(935), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(935), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -137474,38 +137474,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1053), [anon_sym_while] = ACTIONS(1055), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -137586,15 +137586,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(781), [anon_sym_while] = ACTIONS(783), [anon_sym_do] = ACTIONS(579), - [anon_sym_null] = ACTIONS(581), [anon_sym_if] = ACTIONS(785), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(791), [anon_sym_DASH] = ACTIONS(791), [anon_sym_PLUS_PLUS] = ACTIONS(793), @@ -137606,18 +137605,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(613), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -137698,38 +137698,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(151), [anon_sym_while] = ACTIONS(153), [anon_sym_do] = ACTIONS(155), - [anon_sym_null] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(191), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(189), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(199), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -137810,38 +137810,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(869), [anon_sym_while] = ACTIONS(871), [anon_sym_do] = ACTIONS(579), - [anon_sym_null] = ACTIONS(873), - [anon_sym_if] = ACTIONS(583), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(879), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -137922,38 +137922,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(235), [anon_sym_while] = ACTIONS(237), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), + [anon_sym_if] = ACTIONS(241), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(257), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(275), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(283), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -138034,38 +138034,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), [anon_sym_do] = ACTIONS(51), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -138150,30 +138150,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -138262,30 +138262,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -138374,30 +138374,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -138482,15 +138482,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(899), [anon_sym_while] = ACTIONS(901), [anon_sym_do] = ACTIONS(447), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(451), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_if] = ACTIONS(449), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(903), [anon_sym_DASH] = ACTIONS(903), [anon_sym_PLUS_PLUS] = ACTIONS(905), @@ -138502,18 +138501,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -138594,38 +138594,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(493), [anon_sym_while] = ACTIONS(495), [anon_sym_do] = ACTIONS(497), - [anon_sym_null] = ACTIONS(499), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(531), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(529), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(539), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -138710,30 +138710,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -138818,15 +138818,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(757), [anon_sym_while] = ACTIONS(759), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(761), [anon_sym_DASH] = ACTIONS(761), [anon_sym_PLUS_PLUS] = ACTIONS(763), @@ -138838,18 +138837,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(275), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(273), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(283), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -138934,30 +138934,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -139000,7 +139000,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3943), [anon_sym_AMP_AMP] = ACTIONS(3943), [anon_sym_PIPE_PIPE] = ACTIONS(3943), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(3938), [anon_sym_when] = ACTIONS(3938), @@ -139072,6 +139071,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(3943), [sym__automatic_semicolon] = ACTIONS(3943), [sym_safe_nav] = ACTIONS(3943), @@ -139154,15 +139154,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(843), [anon_sym_while] = ACTIONS(845), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(325), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_if] = ACTIONS(241), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -139174,18 +139173,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(337), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(335), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(337), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -139224,7 +139224,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4002), [anon_sym_AMP_AMP] = ACTIONS(4002), [anon_sym_PIPE_PIPE] = ACTIONS(4002), - [anon_sym_null] = ACTIONS(4000), [anon_sym_if] = ACTIONS(4000), [anon_sym_else] = ACTIONS(4000), [anon_sym_when] = ACTIONS(4000), @@ -139296,6 +139295,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4000), [anon_sym_false] = ACTIONS(4000), [anon_sym_SQUOTE] = ACTIONS(4002), + [sym_null_literal] = ACTIONS(4000), [sym__backtick_identifier] = ACTIONS(4002), [sym__automatic_semicolon] = ACTIONS(4002), [sym_safe_nav] = ACTIONS(4002), @@ -139378,15 +139378,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(727), [anon_sym_while] = ACTIONS(729), [anon_sym_do] = ACTIONS(497), - [anon_sym_null] = ACTIONS(499), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), @@ -139398,18 +139397,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(531), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(529), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(539), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -139490,15 +139490,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1031), [anon_sym_while] = ACTIONS(1033), [anon_sym_do] = ACTIONS(373), - [anon_sym_null] = ACTIONS(929), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -139510,18 +139509,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(935), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(933), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(935), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -139602,38 +139602,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(813), [anon_sym_while] = ACTIONS(815), [anon_sym_do] = ACTIONS(155), - [anon_sym_null] = ACTIONS(817), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(823), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(821), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(823), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -139714,38 +139714,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(575), [anon_sym_while] = ACTIONS(577), [anon_sym_do] = ACTIONS(579), - [anon_sym_null] = ACTIONS(581), - [anon_sym_if] = ACTIONS(583), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(599), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(613), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(611), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -139830,30 +139830,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -139941,30 +139941,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -140052,30 +140052,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -140114,7 +140114,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4046), [anon_sym_AMP_AMP] = ACTIONS(4046), [anon_sym_PIPE_PIPE] = ACTIONS(4046), - [anon_sym_null] = ACTIONS(4044), [anon_sym_if] = ACTIONS(4044), [anon_sym_else] = ACTIONS(4044), [anon_sym_when] = ACTIONS(4044), @@ -140188,6 +140187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4044), [anon_sym_false] = ACTIONS(4044), [anon_sym_SQUOTE] = ACTIONS(4046), + [sym_null_literal] = ACTIONS(4044), [sym__backtick_identifier] = ACTIONS(4046), [sym__automatic_semicolon] = ACTIONS(4046), [sym_safe_nav] = ACTIONS(4046), @@ -140274,30 +140274,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -140385,30 +140385,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -140496,30 +140496,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -140607,30 +140607,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -140718,30 +140718,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -140829,30 +140829,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -140940,30 +140940,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -141051,30 +141051,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -141162,30 +141162,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -141225,7 +141225,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4072), [anon_sym_AMP_AMP] = ACTIONS(4072), [anon_sym_PIPE_PIPE] = ACTIONS(4072), - [anon_sym_null] = ACTIONS(4070), [anon_sym_if] = ACTIONS(4070), [anon_sym_else] = ACTIONS(4070), [anon_sym_when] = ACTIONS(4070), @@ -141297,6 +141296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4070), [anon_sym_false] = ACTIONS(4070), [anon_sym_SQUOTE] = ACTIONS(4072), + [sym_null_literal] = ACTIONS(4070), [sym__backtick_identifier] = ACTIONS(4072), [sym__automatic_semicolon] = ACTIONS(4072), [sym_safe_nav] = ACTIONS(4072), @@ -141335,7 +141335,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4079), [anon_sym_AMP_AMP] = ACTIONS(4079), [anon_sym_PIPE_PIPE] = ACTIONS(4079), - [anon_sym_null] = ACTIONS(4077), [anon_sym_if] = ACTIONS(4077), [anon_sym_else] = ACTIONS(4077), [anon_sym_when] = ACTIONS(4077), @@ -141407,6 +141406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4077), [anon_sym_false] = ACTIONS(4077), [anon_sym_SQUOTE] = ACTIONS(4079), + [sym_null_literal] = ACTIONS(4077), [sym__backtick_identifier] = ACTIONS(4079), [sym__automatic_semicolon] = ACTIONS(4079), [sym_safe_nav] = ACTIONS(4079), @@ -141445,7 +141445,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4089), [anon_sym_AMP_AMP] = ACTIONS(4089), [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_null] = ACTIONS(4087), [anon_sym_if] = ACTIONS(4087), [anon_sym_else] = ACTIONS(4087), [anon_sym_when] = ACTIONS(4087), @@ -141517,6 +141516,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4087), [anon_sym_false] = ACTIONS(4087), [anon_sym_SQUOTE] = ACTIONS(4089), + [sym_null_literal] = ACTIONS(4087), [sym__backtick_identifier] = ACTIONS(4089), [sym__automatic_semicolon] = ACTIONS(4089), [sym_safe_nav] = ACTIONS(4089), @@ -141555,7 +141555,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4095), [anon_sym_AMP_AMP] = ACTIONS(4095), [anon_sym_PIPE_PIPE] = ACTIONS(4095), - [anon_sym_null] = ACTIONS(4093), [anon_sym_if] = ACTIONS(4093), [anon_sym_else] = ACTIONS(4093), [anon_sym_when] = ACTIONS(4093), @@ -141627,6 +141626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4093), [anon_sym_false] = ACTIONS(4093), [anon_sym_SQUOTE] = ACTIONS(4095), + [sym_null_literal] = ACTIONS(4093), [sym__backtick_identifier] = ACTIONS(4095), [sym__automatic_semicolon] = ACTIONS(4095), [sym_safe_nav] = ACTIONS(4095), @@ -141665,7 +141665,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4099), [anon_sym_AMP_AMP] = ACTIONS(4099), [anon_sym_PIPE_PIPE] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4097), [anon_sym_if] = ACTIONS(4097), [anon_sym_else] = ACTIONS(4097), [anon_sym_when] = ACTIONS(4097), @@ -141737,6 +141736,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4097), [anon_sym_false] = ACTIONS(4097), [anon_sym_SQUOTE] = ACTIONS(4099), + [sym_null_literal] = ACTIONS(4097), [sym__backtick_identifier] = ACTIONS(4099), [sym__automatic_semicolon] = ACTIONS(4099), [sym_safe_nav] = ACTIONS(4099), @@ -141775,7 +141775,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4105), [anon_sym_AMP_AMP] = ACTIONS(4105), [anon_sym_PIPE_PIPE] = ACTIONS(4105), - [anon_sym_null] = ACTIONS(4103), [anon_sym_if] = ACTIONS(4103), [anon_sym_else] = ACTIONS(4103), [anon_sym_when] = ACTIONS(4103), @@ -141847,6 +141846,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4103), [anon_sym_false] = ACTIONS(4103), [anon_sym_SQUOTE] = ACTIONS(4105), + [sym_null_literal] = ACTIONS(4103), [sym__backtick_identifier] = ACTIONS(4105), [sym__automatic_semicolon] = ACTIONS(4105), [sym_safe_nav] = ACTIONS(4105), @@ -141883,7 +141883,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4112), [anon_sym_AMP_AMP] = ACTIONS(4112), [anon_sym_PIPE_PIPE] = ACTIONS(4112), - [anon_sym_null] = ACTIONS(4110), [anon_sym_if] = ACTIONS(4110), [anon_sym_else] = ACTIONS(4110), [anon_sym_when] = ACTIONS(4110), @@ -141957,6 +141956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4110), [anon_sym_false] = ACTIONS(4110), [anon_sym_SQUOTE] = ACTIONS(4112), + [sym_null_literal] = ACTIONS(4110), [sym__backtick_identifier] = ACTIONS(4112), [sym__automatic_semicolon] = ACTIONS(4112), [sym_safe_nav] = ACTIONS(4112), @@ -141995,7 +141995,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4119), [anon_sym_AMP_AMP] = ACTIONS(4119), [anon_sym_PIPE_PIPE] = ACTIONS(4119), - [anon_sym_null] = ACTIONS(4117), [anon_sym_if] = ACTIONS(4117), [anon_sym_else] = ACTIONS(4117), [anon_sym_when] = ACTIONS(4117), @@ -142067,6 +142066,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4117), [anon_sym_false] = ACTIONS(4117), [anon_sym_SQUOTE] = ACTIONS(4119), + [sym_null_literal] = ACTIONS(4117), [sym__backtick_identifier] = ACTIONS(4119), [sym__automatic_semicolon] = ACTIONS(4119), [sym_safe_nav] = ACTIONS(4119), @@ -142105,7 +142105,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3943), [anon_sym_AMP_AMP] = ACTIONS(3943), [anon_sym_PIPE_PIPE] = ACTIONS(3943), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(3938), [anon_sym_when] = ACTIONS(3938), @@ -142177,6 +142176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(3943), [sym__automatic_semicolon] = ACTIONS(3943), [sym_safe_nav] = ACTIONS(3943), @@ -142215,7 +142215,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4125), [anon_sym_AMP_AMP] = ACTIONS(4125), [anon_sym_PIPE_PIPE] = ACTIONS(4125), - [anon_sym_null] = ACTIONS(4123), [anon_sym_if] = ACTIONS(4123), [anon_sym_else] = ACTIONS(4123), [anon_sym_when] = ACTIONS(4123), @@ -142287,6 +142286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4123), [anon_sym_false] = ACTIONS(4123), [anon_sym_SQUOTE] = ACTIONS(4125), + [sym_null_literal] = ACTIONS(4123), [sym__backtick_identifier] = ACTIONS(4125), [sym__automatic_semicolon] = ACTIONS(4125), [sym_safe_nav] = ACTIONS(4125), @@ -142325,7 +142325,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4131), [anon_sym_AMP_AMP] = ACTIONS(4131), [anon_sym_PIPE_PIPE] = ACTIONS(4131), - [anon_sym_null] = ACTIONS(4129), [anon_sym_if] = ACTIONS(4129), [anon_sym_else] = ACTIONS(4129), [anon_sym_when] = ACTIONS(4129), @@ -142397,6 +142396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4129), [anon_sym_false] = ACTIONS(4129), [anon_sym_SQUOTE] = ACTIONS(4131), + [sym_null_literal] = ACTIONS(4129), [sym__backtick_identifier] = ACTIONS(4131), [sym__automatic_semicolon] = ACTIONS(4131), [sym_safe_nav] = ACTIONS(4131), @@ -142435,7 +142435,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4138), [anon_sym_AMP_AMP] = ACTIONS(4138), [anon_sym_PIPE_PIPE] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4136), [anon_sym_if] = ACTIONS(4136), [anon_sym_else] = ACTIONS(4136), [anon_sym_when] = ACTIONS(4136), @@ -142507,6 +142506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4136), [anon_sym_false] = ACTIONS(4136), [anon_sym_SQUOTE] = ACTIONS(4138), + [sym_null_literal] = ACTIONS(4136), [sym__backtick_identifier] = ACTIONS(4138), [sym__automatic_semicolon] = ACTIONS(4138), [sym_safe_nav] = ACTIONS(4138), @@ -142584,15 +142584,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), [anon_sym_in] = ACTIONS(3602), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_BANGin] = ACTIONS(3606), [anon_sym_is] = ACTIONS(3608), [anon_sym_BANGis] = ACTIONS(3610), @@ -142607,18 +142606,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -142655,7 +142655,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4144), [anon_sym_AMP_AMP] = ACTIONS(4144), [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4142), [anon_sym_if] = ACTIONS(4142), [anon_sym_else] = ACTIONS(4142), [anon_sym_when] = ACTIONS(4142), @@ -142727,6 +142726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4142), [anon_sym_false] = ACTIONS(4142), [anon_sym_SQUOTE] = ACTIONS(4144), + [sym_null_literal] = ACTIONS(4142), [sym__backtick_identifier] = ACTIONS(4144), [sym__automatic_semicolon] = ACTIONS(4144), [sym_safe_nav] = ACTIONS(4144), @@ -142764,7 +142764,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4150), [anon_sym_AMP_AMP] = ACTIONS(4150), [anon_sym_PIPE_PIPE] = ACTIONS(4150), - [anon_sym_null] = ACTIONS(4148), [anon_sym_if] = ACTIONS(4148), [anon_sym_else] = ACTIONS(4148), [anon_sym_when] = ACTIONS(4148), @@ -142836,6 +142835,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4148), [anon_sym_false] = ACTIONS(4148), [anon_sym_SQUOTE] = ACTIONS(4150), + [sym_null_literal] = ACTIONS(4148), [sym__backtick_identifier] = ACTIONS(4150), [sym__automatic_semicolon] = ACTIONS(4150), [sym_safe_nav] = ACTIONS(4150), @@ -142873,7 +142873,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4154), [anon_sym_AMP_AMP] = ACTIONS(4154), [anon_sym_PIPE_PIPE] = ACTIONS(4154), - [anon_sym_null] = ACTIONS(4152), [anon_sym_if] = ACTIONS(4152), [anon_sym_else] = ACTIONS(4152), [anon_sym_when] = ACTIONS(4152), @@ -142945,6 +142944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4152), [anon_sym_false] = ACTIONS(4152), [anon_sym_SQUOTE] = ACTIONS(4154), + [sym_null_literal] = ACTIONS(4152), [sym__backtick_identifier] = ACTIONS(4154), [sym__automatic_semicolon] = ACTIONS(4154), [sym_safe_nav] = ACTIONS(4154), @@ -142982,7 +142982,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3240), [anon_sym_AMP_AMP] = ACTIONS(3240), [anon_sym_PIPE_PIPE] = ACTIONS(3240), - [anon_sym_null] = ACTIONS(3236), [anon_sym_if] = ACTIONS(3236), [anon_sym_else] = ACTIONS(3236), [anon_sym_when] = ACTIONS(3236), @@ -143054,6 +143053,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3236), [anon_sym_false] = ACTIONS(3236), [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), [sym__backtick_identifier] = ACTIONS(3240), [sym__automatic_semicolon] = ACTIONS(3240), [sym_safe_nav] = ACTIONS(3240), @@ -143091,7 +143091,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4160), [anon_sym_AMP_AMP] = ACTIONS(4160), [anon_sym_PIPE_PIPE] = ACTIONS(4160), - [anon_sym_null] = ACTIONS(4158), [anon_sym_if] = ACTIONS(4158), [anon_sym_else] = ACTIONS(4158), [anon_sym_when] = ACTIONS(4158), @@ -143163,6 +143162,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4158), [anon_sym_false] = ACTIONS(4158), [anon_sym_SQUOTE] = ACTIONS(4160), + [sym_null_literal] = ACTIONS(4158), [sym__backtick_identifier] = ACTIONS(4160), [sym__automatic_semicolon] = ACTIONS(4160), [sym_safe_nav] = ACTIONS(4160), @@ -143200,7 +143200,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4166), [anon_sym_AMP_AMP] = ACTIONS(4166), [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_null] = ACTIONS(4164), [anon_sym_if] = ACTIONS(4164), [anon_sym_else] = ACTIONS(4164), [anon_sym_when] = ACTIONS(4164), @@ -143272,6 +143271,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4164), [anon_sym_false] = ACTIONS(4164), [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4164), [sym__backtick_identifier] = ACTIONS(4166), [sym__automatic_semicolon] = ACTIONS(4166), [sym_safe_nav] = ACTIONS(4166), @@ -143309,7 +143309,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4125), [anon_sym_AMP_AMP] = ACTIONS(4125), [anon_sym_PIPE_PIPE] = ACTIONS(4125), - [anon_sym_null] = ACTIONS(4123), [anon_sym_if] = ACTIONS(4123), [anon_sym_else] = ACTIONS(4123), [anon_sym_when] = ACTIONS(4123), @@ -143381,6 +143380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4123), [anon_sym_false] = ACTIONS(4123), [anon_sym_SQUOTE] = ACTIONS(4125), + [sym_null_literal] = ACTIONS(4123), [sym__backtick_identifier] = ACTIONS(4125), [sym__automatic_semicolon] = ACTIONS(4125), [sym_safe_nav] = ACTIONS(4125), @@ -143418,7 +143418,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4166), [anon_sym_AMP_AMP] = ACTIONS(4166), [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_null] = ACTIONS(4164), [anon_sym_if] = ACTIONS(4164), [anon_sym_else] = ACTIONS(4164), [anon_sym_when] = ACTIONS(4164), @@ -143490,6 +143489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4164), [anon_sym_false] = ACTIONS(4164), [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4164), [sym__backtick_identifier] = ACTIONS(4166), [sym__automatic_semicolon] = ACTIONS(4166), [sym_safe_nav] = ACTIONS(4166), @@ -143527,7 +143527,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4079), [anon_sym_AMP_AMP] = ACTIONS(4079), [anon_sym_PIPE_PIPE] = ACTIONS(4079), - [anon_sym_null] = ACTIONS(4077), [anon_sym_if] = ACTIONS(4077), [anon_sym_else] = ACTIONS(4077), [anon_sym_when] = ACTIONS(4077), @@ -143599,6 +143598,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4077), [anon_sym_false] = ACTIONS(4077), [anon_sym_SQUOTE] = ACTIONS(4079), + [sym_null_literal] = ACTIONS(4077), [sym__backtick_identifier] = ACTIONS(4079), [sym__automatic_semicolon] = ACTIONS(4079), [sym_safe_nav] = ACTIONS(4079), @@ -143636,7 +143636,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4089), [anon_sym_AMP_AMP] = ACTIONS(4089), [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_null] = ACTIONS(4087), [anon_sym_if] = ACTIONS(4087), [anon_sym_else] = ACTIONS(4087), [anon_sym_when] = ACTIONS(4087), @@ -143708,6 +143707,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4087), [anon_sym_false] = ACTIONS(4087), [anon_sym_SQUOTE] = ACTIONS(4089), + [sym_null_literal] = ACTIONS(4087), [sym__backtick_identifier] = ACTIONS(4089), [sym__automatic_semicolon] = ACTIONS(4089), [sym_safe_nav] = ACTIONS(4089), @@ -143745,7 +143745,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4099), [anon_sym_AMP_AMP] = ACTIONS(4099), [anon_sym_PIPE_PIPE] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4097), [anon_sym_if] = ACTIONS(4097), [anon_sym_else] = ACTIONS(4097), [anon_sym_when] = ACTIONS(4097), @@ -143817,6 +143816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4097), [anon_sym_false] = ACTIONS(4097), [anon_sym_SQUOTE] = ACTIONS(4099), + [sym_null_literal] = ACTIONS(4097), [sym__backtick_identifier] = ACTIONS(4099), [sym__automatic_semicolon] = ACTIONS(4099), [sym_safe_nav] = ACTIONS(4099), @@ -143854,7 +143854,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4099), [anon_sym_AMP_AMP] = ACTIONS(4099), [anon_sym_PIPE_PIPE] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4097), [anon_sym_if] = ACTIONS(4097), [anon_sym_else] = ACTIONS(4097), [anon_sym_when] = ACTIONS(4097), @@ -143926,6 +143925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4097), [anon_sym_false] = ACTIONS(4097), [anon_sym_SQUOTE] = ACTIONS(4099), + [sym_null_literal] = ACTIONS(4097), [sym__backtick_identifier] = ACTIONS(4099), [sym__automatic_semicolon] = ACTIONS(4099), [sym_safe_nav] = ACTIONS(4099), @@ -143964,7 +143964,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4188), [anon_sym_AMP_AMP] = ACTIONS(4188), [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(4190), [anon_sym_when] = ACTIONS(3938), @@ -144036,6 +144035,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(4185), [sym_safe_nav] = ACTIONS(4188), [sym_multiline_comment] = ACTIONS(3), @@ -144072,7 +144072,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4198), [anon_sym_AMP_AMP] = ACTIONS(4198), [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), [anon_sym_if] = ACTIONS(4196), [anon_sym_else] = ACTIONS(4196), [anon_sym_when] = ACTIONS(4196), @@ -144144,6 +144143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4196), [anon_sym_false] = ACTIONS(4196), [anon_sym_SQUOTE] = ACTIONS(4198), + [sym_null_literal] = ACTIONS(4196), [sym__backtick_identifier] = ACTIONS(4198), [sym__automatic_semicolon] = ACTIONS(4198), [sym_safe_nav] = ACTIONS(4198), @@ -144181,7 +144181,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4204), [anon_sym_AMP_AMP] = ACTIONS(4204), [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_null] = ACTIONS(4202), [anon_sym_if] = ACTIONS(4202), [anon_sym_else] = ACTIONS(4202), [anon_sym_when] = ACTIONS(4202), @@ -144253,6 +144252,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4202), [anon_sym_false] = ACTIONS(4202), [anon_sym_SQUOTE] = ACTIONS(4204), + [sym_null_literal] = ACTIONS(4202), [sym__backtick_identifier] = ACTIONS(4204), [sym__automatic_semicolon] = ACTIONS(4204), [sym_safe_nav] = ACTIONS(4204), @@ -144290,7 +144290,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4210), [anon_sym_AMP_AMP] = ACTIONS(4210), [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_null] = ACTIONS(4208), [anon_sym_if] = ACTIONS(4208), [anon_sym_else] = ACTIONS(4208), [anon_sym_when] = ACTIONS(4208), @@ -144362,6 +144361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4208), [anon_sym_false] = ACTIONS(4208), [anon_sym_SQUOTE] = ACTIONS(4210), + [sym_null_literal] = ACTIONS(4208), [sym__backtick_identifier] = ACTIONS(4210), [sym__automatic_semicolon] = ACTIONS(4210), [sym_safe_nav] = ACTIONS(4210), @@ -144400,7 +144400,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4220), [anon_sym_AMP_AMP] = ACTIONS(4220), [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(4222), [anon_sym_when] = ACTIONS(3938), @@ -144472,6 +144471,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(4217), [sym_safe_nav] = ACTIONS(4220), [sym_multiline_comment] = ACTIONS(3), @@ -144508,7 +144508,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4144), [anon_sym_AMP_AMP] = ACTIONS(4144), [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4142), [anon_sym_if] = ACTIONS(4142), [anon_sym_else] = ACTIONS(4142), [anon_sym_when] = ACTIONS(4142), @@ -144580,6 +144579,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4142), [anon_sym_false] = ACTIONS(4142), [anon_sym_SQUOTE] = ACTIONS(4144), + [sym_null_literal] = ACTIONS(4142), [sym__backtick_identifier] = ACTIONS(4144), [sym__automatic_semicolon] = ACTIONS(4144), [sym_safe_nav] = ACTIONS(4144), @@ -144617,7 +144617,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4144), [anon_sym_AMP_AMP] = ACTIONS(4144), [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4142), [anon_sym_if] = ACTIONS(4142), [anon_sym_else] = ACTIONS(4142), [anon_sym_when] = ACTIONS(4142), @@ -144689,6 +144688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4142), [anon_sym_false] = ACTIONS(4142), [anon_sym_SQUOTE] = ACTIONS(4144), + [sym_null_literal] = ACTIONS(4142), [sym__backtick_identifier] = ACTIONS(4144), [sym__automatic_semicolon] = ACTIONS(4144), [sym_safe_nav] = ACTIONS(4144), @@ -144726,7 +144726,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4232), [anon_sym_AMP_AMP] = ACTIONS(4232), [anon_sym_PIPE_PIPE] = ACTIONS(4232), - [anon_sym_null] = ACTIONS(4230), [anon_sym_if] = ACTIONS(4230), [anon_sym_else] = ACTIONS(4230), [anon_sym_when] = ACTIONS(4230), @@ -144798,6 +144797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4230), [anon_sym_false] = ACTIONS(4230), [anon_sym_SQUOTE] = ACTIONS(4232), + [sym_null_literal] = ACTIONS(4230), [sym__backtick_identifier] = ACTIONS(4232), [sym__automatic_semicolon] = ACTIONS(4232), [sym_safe_nav] = ACTIONS(4232), @@ -144835,7 +144835,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4236), [anon_sym_AMP_AMP] = ACTIONS(4236), [anon_sym_PIPE_PIPE] = ACTIONS(4236), - [anon_sym_null] = ACTIONS(4234), [anon_sym_if] = ACTIONS(4234), [anon_sym_else] = ACTIONS(4234), [anon_sym_when] = ACTIONS(4234), @@ -144907,6 +144906,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4234), [anon_sym_false] = ACTIONS(4234), [anon_sym_SQUOTE] = ACTIONS(4236), + [sym_null_literal] = ACTIONS(4234), [sym__backtick_identifier] = ACTIONS(4236), [sym__automatic_semicolon] = ACTIONS(4236), [sym_safe_nav] = ACTIONS(4236), @@ -144944,7 +144944,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4240), [anon_sym_AMP_AMP] = ACTIONS(4240), [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4238), [anon_sym_if] = ACTIONS(4238), [anon_sym_else] = ACTIONS(4238), [anon_sym_when] = ACTIONS(4238), @@ -145016,6 +145015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4238), [anon_sym_false] = ACTIONS(4238), [anon_sym_SQUOTE] = ACTIONS(4240), + [sym_null_literal] = ACTIONS(4238), [sym__backtick_identifier] = ACTIONS(4240), [sym__automatic_semicolon] = ACTIONS(4240), [sym_safe_nav] = ACTIONS(4240), @@ -145053,7 +145053,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4131), [anon_sym_AMP_AMP] = ACTIONS(4131), [anon_sym_PIPE_PIPE] = ACTIONS(4131), - [anon_sym_null] = ACTIONS(4129), [anon_sym_if] = ACTIONS(4129), [anon_sym_else] = ACTIONS(4129), [anon_sym_when] = ACTIONS(4129), @@ -145125,6 +145124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4129), [anon_sym_false] = ACTIONS(4129), [anon_sym_SQUOTE] = ACTIONS(4131), + [sym_null_literal] = ACTIONS(4129), [sym__backtick_identifier] = ACTIONS(4131), [sym__automatic_semicolon] = ACTIONS(4131), [sym_safe_nav] = ACTIONS(4131), @@ -145162,7 +145162,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4246), [anon_sym_AMP_AMP] = ACTIONS(4246), [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [anon_sym_null] = ACTIONS(4244), [anon_sym_if] = ACTIONS(4244), [anon_sym_else] = ACTIONS(4244), [anon_sym_when] = ACTIONS(4244), @@ -145234,6 +145233,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4244), [anon_sym_false] = ACTIONS(4244), [anon_sym_SQUOTE] = ACTIONS(4246), + [sym_null_literal] = ACTIONS(4244), [sym__backtick_identifier] = ACTIONS(4246), [sym__automatic_semicolon] = ACTIONS(4246), [sym_safe_nav] = ACTIONS(4246), @@ -145271,7 +145271,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4204), [anon_sym_AMP_AMP] = ACTIONS(4204), [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_null] = ACTIONS(4202), [anon_sym_if] = ACTIONS(4202), [anon_sym_else] = ACTIONS(4202), [anon_sym_when] = ACTIONS(4202), @@ -145343,6 +145342,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4202), [anon_sym_false] = ACTIONS(4202), [anon_sym_SQUOTE] = ACTIONS(4204), + [sym_null_literal] = ACTIONS(4202), [sym__backtick_identifier] = ACTIONS(4204), [sym__automatic_semicolon] = ACTIONS(4204), [sym_safe_nav] = ACTIONS(4204), @@ -145380,7 +145380,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4252), [anon_sym_AMP_AMP] = ACTIONS(4252), [anon_sym_PIPE_PIPE] = ACTIONS(4252), - [anon_sym_null] = ACTIONS(4250), [anon_sym_if] = ACTIONS(4250), [anon_sym_else] = ACTIONS(4250), [anon_sym_when] = ACTIONS(4250), @@ -145452,6 +145451,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4250), [anon_sym_false] = ACTIONS(4250), [anon_sym_SQUOTE] = ACTIONS(4252), + [sym_null_literal] = ACTIONS(4250), [sym__backtick_identifier] = ACTIONS(4252), [sym__automatic_semicolon] = ACTIONS(4252), [sym_safe_nav] = ACTIONS(4252), @@ -145490,7 +145490,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4258), [anon_sym_AMP_AMP] = ACTIONS(4258), [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), [anon_sym_if] = ACTIONS(4256), [anon_sym_else] = ACTIONS(4256), [anon_sym_when] = ACTIONS(4256), @@ -145562,6 +145561,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4256), [anon_sym_false] = ACTIONS(4256), [anon_sym_SQUOTE] = ACTIONS(4258), + [sym_null_literal] = ACTIONS(4256), [sym__backtick_identifier] = ACTIONS(4258), [sym_safe_nav] = ACTIONS(4258), [sym_multiline_comment] = ACTIONS(3), @@ -145598,7 +145598,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3230), [anon_sym_AMP_AMP] = ACTIONS(3230), [anon_sym_PIPE_PIPE] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3226), [anon_sym_if] = ACTIONS(3226), [anon_sym_else] = ACTIONS(3226), [anon_sym_when] = ACTIONS(3226), @@ -145670,6 +145669,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3226), [anon_sym_false] = ACTIONS(3226), [anon_sym_SQUOTE] = ACTIONS(3230), + [sym_null_literal] = ACTIONS(3226), [sym__backtick_identifier] = ACTIONS(3230), [sym__automatic_semicolon] = ACTIONS(3230), [sym_safe_nav] = ACTIONS(3230), @@ -145707,7 +145707,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4089), [anon_sym_AMP_AMP] = ACTIONS(4089), [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_null] = ACTIONS(4087), [anon_sym_if] = ACTIONS(4087), [anon_sym_else] = ACTIONS(4087), [anon_sym_when] = ACTIONS(4087), @@ -145779,6 +145778,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4087), [anon_sym_false] = ACTIONS(4087), [anon_sym_SQUOTE] = ACTIONS(4089), + [sym_null_literal] = ACTIONS(4087), [sym__backtick_identifier] = ACTIONS(4089), [sym__automatic_semicolon] = ACTIONS(4089), [sym_safe_nav] = ACTIONS(4089), @@ -145816,7 +145816,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4262), [anon_sym_AMP_AMP] = ACTIONS(4262), [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_null] = ACTIONS(4260), [anon_sym_if] = ACTIONS(4260), [anon_sym_else] = ACTIONS(4260), [anon_sym_when] = ACTIONS(4260), @@ -145888,6 +145887,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4260), [anon_sym_false] = ACTIONS(4260), [anon_sym_SQUOTE] = ACTIONS(4262), + [sym_null_literal] = ACTIONS(4260), [sym__backtick_identifier] = ACTIONS(4262), [sym__automatic_semicolon] = ACTIONS(4262), [sym_safe_nav] = ACTIONS(4262), @@ -145925,7 +145925,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4266), [anon_sym_AMP_AMP] = ACTIONS(4266), [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_null] = ACTIONS(4264), [anon_sym_if] = ACTIONS(4264), [anon_sym_else] = ACTIONS(4264), [anon_sym_when] = ACTIONS(4264), @@ -145997,6 +145996,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4264), [anon_sym_false] = ACTIONS(4264), [anon_sym_SQUOTE] = ACTIONS(4266), + [sym_null_literal] = ACTIONS(4264), [sym__backtick_identifier] = ACTIONS(4266), [sym__automatic_semicolon] = ACTIONS(4266), [sym_safe_nav] = ACTIONS(4266), @@ -146034,7 +146034,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4272), [anon_sym_AMP_AMP] = ACTIONS(4272), [anon_sym_PIPE_PIPE] = ACTIONS(4272), - [anon_sym_null] = ACTIONS(4270), [anon_sym_if] = ACTIONS(4270), [anon_sym_else] = ACTIONS(4270), [anon_sym_when] = ACTIONS(4270), @@ -146106,6 +146105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4270), [anon_sym_false] = ACTIONS(4270), [anon_sym_SQUOTE] = ACTIONS(4272), + [sym_null_literal] = ACTIONS(4270), [sym__backtick_identifier] = ACTIONS(4272), [sym__automatic_semicolon] = ACTIONS(4272), [sym_safe_nav] = ACTIONS(4272), @@ -146143,7 +146143,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4276), [anon_sym_AMP_AMP] = ACTIONS(4276), [anon_sym_PIPE_PIPE] = ACTIONS(4276), - [anon_sym_null] = ACTIONS(4274), [anon_sym_if] = ACTIONS(4274), [anon_sym_else] = ACTIONS(4274), [anon_sym_when] = ACTIONS(4274), @@ -146215,6 +146214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4274), [anon_sym_false] = ACTIONS(4274), [anon_sym_SQUOTE] = ACTIONS(4276), + [sym_null_literal] = ACTIONS(4274), [sym__backtick_identifier] = ACTIONS(4276), [sym__automatic_semicolon] = ACTIONS(4276), [sym_safe_nav] = ACTIONS(4276), @@ -146252,7 +146252,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4282), [anon_sym_AMP_AMP] = ACTIONS(4282), [anon_sym_PIPE_PIPE] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4280), [anon_sym_if] = ACTIONS(4280), [anon_sym_else] = ACTIONS(4280), [anon_sym_when] = ACTIONS(4280), @@ -146324,6 +146323,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4280), [anon_sym_false] = ACTIONS(4280), [anon_sym_SQUOTE] = ACTIONS(4282), + [sym_null_literal] = ACTIONS(4280), [sym__backtick_identifier] = ACTIONS(4282), [sym__automatic_semicolon] = ACTIONS(4282), [sym_safe_nav] = ACTIONS(4282), @@ -146361,7 +146361,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -146433,6 +146432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -146470,7 +146470,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -146542,6 +146541,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -146580,7 +146580,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4095), [anon_sym_AMP_AMP] = ACTIONS(4095), [anon_sym_PIPE_PIPE] = ACTIONS(4095), - [anon_sym_null] = ACTIONS(4093), [anon_sym_if] = ACTIONS(4093), [anon_sym_else] = ACTIONS(4093), [anon_sym_when] = ACTIONS(4093), @@ -146652,6 +146651,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4093), [anon_sym_false] = ACTIONS(4093), [anon_sym_SQUOTE] = ACTIONS(4095), + [sym_null_literal] = ACTIONS(4093), [sym__backtick_identifier] = ACTIONS(4095), [sym_safe_nav] = ACTIONS(4095), [sym_multiline_comment] = ACTIONS(3), @@ -146687,7 +146687,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4276), [anon_sym_AMP_AMP] = ACTIONS(4276), [anon_sym_PIPE_PIPE] = ACTIONS(4276), - [anon_sym_null] = ACTIONS(4274), [anon_sym_if] = ACTIONS(4274), [anon_sym_else] = ACTIONS(4274), [anon_sym_when] = ACTIONS(4274), @@ -146759,6 +146758,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4274), [anon_sym_false] = ACTIONS(4274), [anon_sym_SQUOTE] = ACTIONS(4276), + [sym_null_literal] = ACTIONS(4274), [sym__backtick_identifier] = ACTIONS(4276), [sym__automatic_semicolon] = ACTIONS(4276), [sym_safe_nav] = ACTIONS(4276), @@ -146841,30 +146841,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -146903,7 +146903,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4323), [anon_sym_AMP_AMP] = ACTIONS(4323), [anon_sym_PIPE_PIPE] = ACTIONS(4323), - [anon_sym_null] = ACTIONS(4321), [anon_sym_if] = ACTIONS(4321), [anon_sym_else] = ACTIONS(4321), [anon_sym_when] = ACTIONS(4321), @@ -146975,6 +146974,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4321), [anon_sym_false] = ACTIONS(4321), [anon_sym_SQUOTE] = ACTIONS(4323), + [sym_null_literal] = ACTIONS(4321), [sym__backtick_identifier] = ACTIONS(4323), [sym__automatic_semicolon] = ACTIONS(4323), [sym_safe_nav] = ACTIONS(4323), @@ -147011,7 +147011,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4327), [anon_sym_AMP_AMP] = ACTIONS(4327), [anon_sym_PIPE_PIPE] = ACTIONS(4327), - [anon_sym_null] = ACTIONS(4325), [anon_sym_if] = ACTIONS(4325), [anon_sym_else] = ACTIONS(4325), [anon_sym_when] = ACTIONS(4325), @@ -147083,6 +147082,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4325), [anon_sym_false] = ACTIONS(4325), [anon_sym_SQUOTE] = ACTIONS(4327), + [sym_null_literal] = ACTIONS(4325), [sym__backtick_identifier] = ACTIONS(4327), [sym__automatic_semicolon] = ACTIONS(4327), [sym_safe_nav] = ACTIONS(4327), @@ -147119,7 +147119,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4144), [anon_sym_AMP_AMP] = ACTIONS(4144), [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4142), [anon_sym_if] = ACTIONS(4142), [anon_sym_else] = ACTIONS(4142), [anon_sym_when] = ACTIONS(4142), @@ -147191,6 +147190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4142), [anon_sym_false] = ACTIONS(4142), [anon_sym_SQUOTE] = ACTIONS(4144), + [sym_null_literal] = ACTIONS(4142), [sym__backtick_identifier] = ACTIONS(4144), [sym__automatic_semicolon] = ACTIONS(4144), [sym_safe_nav] = ACTIONS(4144), @@ -147225,7 +147225,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4333), [anon_sym_AMP_AMP] = ACTIONS(4333), [anon_sym_PIPE_PIPE] = ACTIONS(4333), - [anon_sym_null] = ACTIONS(4331), [anon_sym_if] = ACTIONS(4331), [anon_sym_else] = ACTIONS(4331), [anon_sym_when] = ACTIONS(4331), @@ -147299,6 +147298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4331), [anon_sym_false] = ACTIONS(4331), [anon_sym_SQUOTE] = ACTIONS(4333), + [sym_null_literal] = ACTIONS(4331), [sym__backtick_identifier] = ACTIONS(4333), [sym__automatic_semicolon] = ACTIONS(4333), [sym_safe_nav] = ACTIONS(4333), @@ -147335,7 +147335,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4337), [anon_sym_AMP_AMP] = ACTIONS(4337), [anon_sym_PIPE_PIPE] = ACTIONS(4337), - [anon_sym_null] = ACTIONS(4335), [anon_sym_if] = ACTIONS(4335), [anon_sym_else] = ACTIONS(4335), [anon_sym_when] = ACTIONS(4335), @@ -147407,6 +147406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4335), [anon_sym_false] = ACTIONS(4335), [anon_sym_SQUOTE] = ACTIONS(4337), + [sym_null_literal] = ACTIONS(4335), [sym__backtick_identifier] = ACTIONS(4337), [sym__automatic_semicolon] = ACTIONS(4337), [sym_safe_nav] = ACTIONS(4337), @@ -147443,7 +147443,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4154), [anon_sym_AMP_AMP] = ACTIONS(4154), [anon_sym_PIPE_PIPE] = ACTIONS(4154), - [anon_sym_null] = ACTIONS(4152), [anon_sym_if] = ACTIONS(4152), [anon_sym_else] = ACTIONS(4152), [anon_sym_when] = ACTIONS(4152), @@ -147515,6 +147514,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4152), [anon_sym_false] = ACTIONS(4152), [anon_sym_SQUOTE] = ACTIONS(4154), + [sym_null_literal] = ACTIONS(4152), [sym__backtick_identifier] = ACTIONS(4154), [sym__automatic_semicolon] = ACTIONS(4154), [sym_safe_nav] = ACTIONS(4154), @@ -147597,30 +147597,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -147659,7 +147659,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4099), [anon_sym_AMP_AMP] = ACTIONS(4099), [anon_sym_PIPE_PIPE] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4097), [anon_sym_if] = ACTIONS(4097), [anon_sym_else] = ACTIONS(4097), [anon_sym_when] = ACTIONS(4097), @@ -147731,6 +147730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4097), [anon_sym_false] = ACTIONS(4097), [anon_sym_SQUOTE] = ACTIONS(4099), + [sym_null_literal] = ACTIONS(4097), [sym__backtick_identifier] = ACTIONS(4099), [sym__automatic_semicolon] = ACTIONS(4099), [sym_safe_nav] = ACTIONS(4099), @@ -147767,7 +147767,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4154), [anon_sym_AMP_AMP] = ACTIONS(4154), [anon_sym_PIPE_PIPE] = ACTIONS(4154), - [anon_sym_null] = ACTIONS(4152), [anon_sym_if] = ACTIONS(4152), [anon_sym_else] = ACTIONS(4152), [anon_sym_when] = ACTIONS(4152), @@ -147839,6 +147838,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4152), [anon_sym_false] = ACTIONS(4152), [anon_sym_SQUOTE] = ACTIONS(4154), + [sym_null_literal] = ACTIONS(4152), [sym__backtick_identifier] = ACTIONS(4154), [sym__automatic_semicolon] = ACTIONS(4154), [sym_safe_nav] = ACTIONS(4154), @@ -147873,7 +147873,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4345), [anon_sym_AMP_AMP] = ACTIONS(4345), [anon_sym_PIPE_PIPE] = ACTIONS(4345), - [anon_sym_null] = ACTIONS(4343), [anon_sym_if] = ACTIONS(4343), [anon_sym_else] = ACTIONS(4343), [anon_sym_when] = ACTIONS(4343), @@ -147947,6 +147946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4343), [anon_sym_false] = ACTIONS(4343), [anon_sym_SQUOTE] = ACTIONS(4345), + [sym_null_literal] = ACTIONS(4343), [sym__backtick_identifier] = ACTIONS(4345), [sym__automatic_semicolon] = ACTIONS(4345), [sym_safe_nav] = ACTIONS(4345), @@ -147983,7 +147983,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4349), [anon_sym_AMP_AMP] = ACTIONS(4349), [anon_sym_PIPE_PIPE] = ACTIONS(4349), - [anon_sym_null] = ACTIONS(4347), [anon_sym_if] = ACTIONS(4347), [anon_sym_else] = ACTIONS(4347), [anon_sym_when] = ACTIONS(4347), @@ -148055,6 +148054,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4347), [anon_sym_false] = ACTIONS(4347), [anon_sym_SQUOTE] = ACTIONS(4349), + [sym_null_literal] = ACTIONS(4347), [sym__backtick_identifier] = ACTIONS(4349), [sym__automatic_semicolon] = ACTIONS(4349), [sym_safe_nav] = ACTIONS(4349), @@ -148091,7 +148091,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4355), [anon_sym_AMP_AMP] = ACTIONS(4355), [anon_sym_PIPE_PIPE] = ACTIONS(4355), - [anon_sym_null] = ACTIONS(4353), [anon_sym_if] = ACTIONS(4353), [anon_sym_else] = ACTIONS(4353), [anon_sym_when] = ACTIONS(4353), @@ -148163,6 +148162,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4353), [anon_sym_false] = ACTIONS(4353), [anon_sym_SQUOTE] = ACTIONS(4355), + [sym_null_literal] = ACTIONS(4353), [sym__backtick_identifier] = ACTIONS(4355), [sym__automatic_semicolon] = ACTIONS(4355), [sym_safe_nav] = ACTIONS(4355), @@ -148199,7 +148199,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4361), [anon_sym_AMP_AMP] = ACTIONS(4361), [anon_sym_PIPE_PIPE] = ACTIONS(4361), - [anon_sym_null] = ACTIONS(4359), [anon_sym_if] = ACTIONS(4359), [anon_sym_else] = ACTIONS(4359), [anon_sym_when] = ACTIONS(4359), @@ -148271,6 +148270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4359), [anon_sym_false] = ACTIONS(4359), [anon_sym_SQUOTE] = ACTIONS(4361), + [sym_null_literal] = ACTIONS(4359), [sym__backtick_identifier] = ACTIONS(4361), [sym__automatic_semicolon] = ACTIONS(4361), [sym_safe_nav] = ACTIONS(4361), @@ -148353,30 +148353,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -148461,30 +148461,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -148523,7 +148523,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4337), [anon_sym_AMP_AMP] = ACTIONS(4337), [anon_sym_PIPE_PIPE] = ACTIONS(4337), - [anon_sym_null] = ACTIONS(4335), [anon_sym_if] = ACTIONS(4335), [anon_sym_else] = ACTIONS(4335), [anon_sym_when] = ACTIONS(4335), @@ -148595,6 +148594,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4335), [anon_sym_false] = ACTIONS(4335), [anon_sym_SQUOTE] = ACTIONS(4337), + [sym_null_literal] = ACTIONS(4335), [sym__backtick_identifier] = ACTIONS(4337), [sym__automatic_semicolon] = ACTIONS(4337), [sym_safe_nav] = ACTIONS(4337), @@ -148631,7 +148631,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3943), [anon_sym_AMP_AMP] = ACTIONS(3943), [anon_sym_PIPE_PIPE] = ACTIONS(3943), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(3938), [anon_sym_when] = ACTIONS(3938), @@ -148703,6 +148702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(3943), [sym__automatic_semicolon] = ACTIONS(3943), [sym_safe_nav] = ACTIONS(3943), @@ -148739,7 +148739,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4204), [anon_sym_AMP_AMP] = ACTIONS(4204), [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_null] = ACTIONS(4202), [anon_sym_if] = ACTIONS(4202), [anon_sym_else] = ACTIONS(4202), [anon_sym_when] = ACTIONS(4202), @@ -148811,6 +148810,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4202), [anon_sym_false] = ACTIONS(4202), [anon_sym_SQUOTE] = ACTIONS(4204), + [sym_null_literal] = ACTIONS(4202), [sym__backtick_identifier] = ACTIONS(4204), [sym__automatic_semicolon] = ACTIONS(4204), [sym_safe_nav] = ACTIONS(4204), @@ -148847,7 +148847,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4089), [anon_sym_AMP_AMP] = ACTIONS(4089), [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_null] = ACTIONS(4087), [anon_sym_if] = ACTIONS(4087), [anon_sym_else] = ACTIONS(4087), [anon_sym_when] = ACTIONS(4087), @@ -148919,6 +148918,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4087), [anon_sym_false] = ACTIONS(4087), [anon_sym_SQUOTE] = ACTIONS(4089), + [sym_null_literal] = ACTIONS(4087), [sym__backtick_identifier] = ACTIONS(4089), [sym__automatic_semicolon] = ACTIONS(4089), [sym_safe_nav] = ACTIONS(4089), @@ -148953,7 +148953,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4371), [anon_sym_AMP_AMP] = ACTIONS(4371), [anon_sym_PIPE_PIPE] = ACTIONS(4371), - [anon_sym_null] = ACTIONS(4369), [anon_sym_if] = ACTIONS(4369), [anon_sym_else] = ACTIONS(4369), [anon_sym_when] = ACTIONS(4369), @@ -149027,6 +149026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4369), [anon_sym_false] = ACTIONS(4369), [anon_sym_SQUOTE] = ACTIONS(4371), + [sym_null_literal] = ACTIONS(4369), [sym__backtick_identifier] = ACTIONS(4371), [sym__automatic_semicolon] = ACTIONS(4371), [sym_safe_nav] = ACTIONS(4371), @@ -149063,7 +149063,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4375), [anon_sym_AMP_AMP] = ACTIONS(4375), [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_null] = ACTIONS(4373), [anon_sym_if] = ACTIONS(4373), [anon_sym_else] = ACTIONS(4373), [anon_sym_when] = ACTIONS(4373), @@ -149135,6 +149134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4373), [anon_sym_false] = ACTIONS(4373), [anon_sym_SQUOTE] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4373), [sym__backtick_identifier] = ACTIONS(4375), [sym__automatic_semicolon] = ACTIONS(4375), [sym_safe_nav] = ACTIONS(4375), @@ -149217,30 +149217,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -149279,7 +149279,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4144), [anon_sym_AMP_AMP] = ACTIONS(4144), [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4142), [anon_sym_if] = ACTIONS(4142), [anon_sym_else] = ACTIONS(4142), [anon_sym_when] = ACTIONS(4142), @@ -149351,6 +149350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4142), [anon_sym_false] = ACTIONS(4142), [anon_sym_SQUOTE] = ACTIONS(4144), + [sym_null_literal] = ACTIONS(4142), [sym__backtick_identifier] = ACTIONS(4144), [sym__automatic_semicolon] = ACTIONS(4144), [sym_safe_nav] = ACTIONS(4144), @@ -149387,7 +149387,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4276), [anon_sym_AMP_AMP] = ACTIONS(4276), [anon_sym_PIPE_PIPE] = ACTIONS(4276), - [anon_sym_null] = ACTIONS(4274), [anon_sym_if] = ACTIONS(4274), [anon_sym_else] = ACTIONS(4274), [anon_sym_when] = ACTIONS(4274), @@ -149459,6 +149458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4274), [anon_sym_false] = ACTIONS(4274), [anon_sym_SQUOTE] = ACTIONS(4276), + [sym_null_literal] = ACTIONS(4274), [sym__backtick_identifier] = ACTIONS(4276), [sym__automatic_semicolon] = ACTIONS(4276), [sym_safe_nav] = ACTIONS(4276), @@ -149495,7 +149495,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4232), [anon_sym_AMP_AMP] = ACTIONS(4232), [anon_sym_PIPE_PIPE] = ACTIONS(4232), - [anon_sym_null] = ACTIONS(4230), [anon_sym_if] = ACTIONS(4230), [anon_sym_else] = ACTIONS(4230), [anon_sym_when] = ACTIONS(4230), @@ -149567,6 +149566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4230), [anon_sym_false] = ACTIONS(4230), [anon_sym_SQUOTE] = ACTIONS(4232), + [sym_null_literal] = ACTIONS(4230), [sym__backtick_identifier] = ACTIONS(4232), [sym__automatic_semicolon] = ACTIONS(4232), [sym_safe_nav] = ACTIONS(4232), @@ -149603,7 +149603,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4384), [anon_sym_AMP_AMP] = ACTIONS(4384), [anon_sym_PIPE_PIPE] = ACTIONS(4384), - [anon_sym_null] = ACTIONS(4382), [anon_sym_if] = ACTIONS(4382), [anon_sym_else] = ACTIONS(4382), [anon_sym_when] = ACTIONS(4382), @@ -149675,6 +149674,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4382), [anon_sym_false] = ACTIONS(4382), [anon_sym_SQUOTE] = ACTIONS(4384), + [sym_null_literal] = ACTIONS(4382), [sym__backtick_identifier] = ACTIONS(4384), [sym__automatic_semicolon] = ACTIONS(4384), [sym_safe_nav] = ACTIONS(4384), @@ -149757,30 +149757,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -149819,7 +149819,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4390), [anon_sym_AMP_AMP] = ACTIONS(4390), [anon_sym_PIPE_PIPE] = ACTIONS(4390), - [anon_sym_null] = ACTIONS(4388), [anon_sym_if] = ACTIONS(4388), [anon_sym_else] = ACTIONS(4388), [anon_sym_when] = ACTIONS(4388), @@ -149891,6 +149890,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4388), [anon_sym_false] = ACTIONS(4388), [anon_sym_SQUOTE] = ACTIONS(4390), + [sym_null_literal] = ACTIONS(4388), [sym__backtick_identifier] = ACTIONS(4390), [sym__automatic_semicolon] = ACTIONS(4390), [sym_safe_nav] = ACTIONS(4390), @@ -149927,7 +149927,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -149999,6 +149998,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -150035,7 +150035,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4396), [anon_sym_AMP_AMP] = ACTIONS(4396), [anon_sym_PIPE_PIPE] = ACTIONS(4396), - [anon_sym_null] = ACTIONS(4394), [anon_sym_if] = ACTIONS(4394), [anon_sym_else] = ACTIONS(4394), [anon_sym_when] = ACTIONS(4394), @@ -150107,6 +150106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4394), [anon_sym_false] = ACTIONS(4394), [anon_sym_SQUOTE] = ACTIONS(4396), + [sym_null_literal] = ACTIONS(4394), [sym__backtick_identifier] = ACTIONS(4396), [sym__automatic_semicolon] = ACTIONS(4396), [sym_safe_nav] = ACTIONS(4396), @@ -150141,7 +150141,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4400), [anon_sym_AMP_AMP] = ACTIONS(4400), [anon_sym_PIPE_PIPE] = ACTIONS(4400), - [anon_sym_null] = ACTIONS(4398), [anon_sym_if] = ACTIONS(4398), [anon_sym_else] = ACTIONS(4398), [anon_sym_when] = ACTIONS(4398), @@ -150215,6 +150214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4398), [anon_sym_false] = ACTIONS(4398), [anon_sym_SQUOTE] = ACTIONS(4400), + [sym_null_literal] = ACTIONS(4398), [sym__backtick_identifier] = ACTIONS(4400), [sym__automatic_semicolon] = ACTIONS(4400), [sym_safe_nav] = ACTIONS(4400), @@ -150249,7 +150249,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4404), [anon_sym_AMP_AMP] = ACTIONS(4404), [anon_sym_PIPE_PIPE] = ACTIONS(4404), - [anon_sym_null] = ACTIONS(4402), [anon_sym_if] = ACTIONS(4402), [anon_sym_else] = ACTIONS(4402), [anon_sym_when] = ACTIONS(4402), @@ -150323,6 +150322,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4402), [anon_sym_false] = ACTIONS(4402), [anon_sym_SQUOTE] = ACTIONS(4404), + [sym_null_literal] = ACTIONS(4402), [sym__backtick_identifier] = ACTIONS(4404), [sym__automatic_semicolon] = ACTIONS(4404), [sym_safe_nav] = ACTIONS(4404), @@ -150359,7 +150359,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4095), [anon_sym_AMP_AMP] = ACTIONS(4095), [anon_sym_PIPE_PIPE] = ACTIONS(4095), - [anon_sym_null] = ACTIONS(4093), [anon_sym_if] = ACTIONS(4093), [anon_sym_else] = ACTIONS(4093), [anon_sym_when] = ACTIONS(4093), @@ -150431,6 +150430,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4093), [anon_sym_false] = ACTIONS(4093), [anon_sym_SQUOTE] = ACTIONS(4095), + [sym_null_literal] = ACTIONS(4093), [sym__backtick_identifier] = ACTIONS(4095), [sym__automatic_semicolon] = ACTIONS(4095), [sym_safe_nav] = ACTIONS(4095), @@ -150467,7 +150467,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4262), [anon_sym_AMP_AMP] = ACTIONS(4262), [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_null] = ACTIONS(4260), [anon_sym_if] = ACTIONS(4260), [anon_sym_else] = ACTIONS(4260), [anon_sym_when] = ACTIONS(4260), @@ -150539,6 +150538,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4260), [anon_sym_false] = ACTIONS(4260), [anon_sym_SQUOTE] = ACTIONS(4262), + [sym_null_literal] = ACTIONS(4260), [sym__backtick_identifier] = ACTIONS(4262), [sym__automatic_semicolon] = ACTIONS(4262), [sym_safe_nav] = ACTIONS(4262), @@ -150575,7 +150575,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3240), [anon_sym_AMP_AMP] = ACTIONS(3240), [anon_sym_PIPE_PIPE] = ACTIONS(3240), - [anon_sym_null] = ACTIONS(3236), [anon_sym_if] = ACTIONS(3236), [anon_sym_else] = ACTIONS(3236), [anon_sym_when] = ACTIONS(3236), @@ -150647,6 +150646,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3236), [anon_sym_false] = ACTIONS(3236), [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), [sym__backtick_identifier] = ACTIONS(3240), [sym__automatic_semicolon] = ACTIONS(3240), [sym_safe_nav] = ACTIONS(3240), @@ -150683,7 +150683,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4232), [anon_sym_AMP_AMP] = ACTIONS(4232), [anon_sym_PIPE_PIPE] = ACTIONS(4232), - [anon_sym_null] = ACTIONS(4230), [anon_sym_if] = ACTIONS(4230), [anon_sym_else] = ACTIONS(4230), [anon_sym_when] = ACTIONS(4230), @@ -150755,6 +150754,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4230), [anon_sym_false] = ACTIONS(4230), [anon_sym_SQUOTE] = ACTIONS(4232), + [sym_null_literal] = ACTIONS(4230), [sym__backtick_identifier] = ACTIONS(4232), [sym__automatic_semicolon] = ACTIONS(4232), [sym_safe_nav] = ACTIONS(4232), @@ -150791,7 +150791,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4204), [anon_sym_AMP_AMP] = ACTIONS(4204), [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_null] = ACTIONS(4202), [anon_sym_if] = ACTIONS(4202), [anon_sym_else] = ACTIONS(4202), [anon_sym_when] = ACTIONS(4202), @@ -150863,6 +150862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4202), [anon_sym_false] = ACTIONS(4202), [anon_sym_SQUOTE] = ACTIONS(4204), + [sym_null_literal] = ACTIONS(4202), [sym__backtick_identifier] = ACTIONS(4204), [sym__automatic_semicolon] = ACTIONS(4204), [sym_safe_nav] = ACTIONS(4204), @@ -150899,7 +150899,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4414), [anon_sym_AMP_AMP] = ACTIONS(4414), [anon_sym_PIPE_PIPE] = ACTIONS(4414), - [anon_sym_null] = ACTIONS(4412), [anon_sym_if] = ACTIONS(4412), [anon_sym_else] = ACTIONS(4412), [anon_sym_when] = ACTIONS(4412), @@ -150971,6 +150970,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4412), [anon_sym_false] = ACTIONS(4412), [anon_sym_SQUOTE] = ACTIONS(4414), + [sym_null_literal] = ACTIONS(4412), [sym__backtick_identifier] = ACTIONS(4414), [sym__automatic_semicolon] = ACTIONS(4414), [sym_safe_nav] = ACTIONS(4414), @@ -151007,7 +151007,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4204), [anon_sym_AMP_AMP] = ACTIONS(4204), [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_null] = ACTIONS(4202), [anon_sym_if] = ACTIONS(4202), [anon_sym_else] = ACTIONS(4202), [anon_sym_when] = ACTIONS(4202), @@ -151079,6 +151078,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4202), [anon_sym_false] = ACTIONS(4202), [anon_sym_SQUOTE] = ACTIONS(4204), + [sym_null_literal] = ACTIONS(4202), [sym__backtick_identifier] = ACTIONS(4204), [sym__automatic_semicolon] = ACTIONS(4204), [sym_safe_nav] = ACTIONS(4204), @@ -151115,7 +151115,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4418), [anon_sym_AMP_AMP] = ACTIONS(4418), [anon_sym_PIPE_PIPE] = ACTIONS(4418), - [anon_sym_null] = ACTIONS(4416), [anon_sym_if] = ACTIONS(4416), [anon_sym_else] = ACTIONS(4416), [anon_sym_when] = ACTIONS(4416), @@ -151187,6 +151186,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4416), [anon_sym_false] = ACTIONS(4416), [anon_sym_SQUOTE] = ACTIONS(4418), + [sym_null_literal] = ACTIONS(4416), [sym__backtick_identifier] = ACTIONS(4418), [sym__automatic_semicolon] = ACTIONS(4418), [sym_safe_nav] = ACTIONS(4418), @@ -151223,7 +151223,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4138), [anon_sym_AMP_AMP] = ACTIONS(4138), [anon_sym_PIPE_PIPE] = ACTIONS(4138), - [anon_sym_null] = ACTIONS(4136), [anon_sym_if] = ACTIONS(4136), [anon_sym_else] = ACTIONS(4136), [anon_sym_when] = ACTIONS(4136), @@ -151295,6 +151294,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4136), [anon_sym_false] = ACTIONS(4136), [anon_sym_SQUOTE] = ACTIONS(4138), + [sym_null_literal] = ACTIONS(4136), [sym__backtick_identifier] = ACTIONS(4138), [sym__automatic_semicolon] = ACTIONS(4138), [sym_safe_nav] = ACTIONS(4138), @@ -151331,7 +151331,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4422), [anon_sym_AMP_AMP] = ACTIONS(4422), [anon_sym_PIPE_PIPE] = ACTIONS(4422), - [anon_sym_null] = ACTIONS(4420), [anon_sym_if] = ACTIONS(4420), [anon_sym_else] = ACTIONS(4420), [anon_sym_when] = ACTIONS(4420), @@ -151403,6 +151402,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4420), [anon_sym_false] = ACTIONS(4420), [anon_sym_SQUOTE] = ACTIONS(4422), + [sym_null_literal] = ACTIONS(4420), [sym__backtick_identifier] = ACTIONS(4422), [sym__automatic_semicolon] = ACTIONS(4422), [sym_safe_nav] = ACTIONS(4422), @@ -151485,30 +151485,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -151593,30 +151593,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -151701,30 +151701,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -151809,30 +151809,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -151871,7 +151871,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4105), [anon_sym_AMP_AMP] = ACTIONS(4105), [anon_sym_PIPE_PIPE] = ACTIONS(4105), - [anon_sym_null] = ACTIONS(4103), [anon_sym_if] = ACTIONS(4103), [anon_sym_else] = ACTIONS(4103), [anon_sym_when] = ACTIONS(4103), @@ -151943,6 +151942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4103), [anon_sym_false] = ACTIONS(4103), [anon_sym_SQUOTE] = ACTIONS(4105), + [sym_null_literal] = ACTIONS(4103), [sym__backtick_identifier] = ACTIONS(4105), [sym__automatic_semicolon] = ACTIONS(4105), [sym_safe_nav] = ACTIONS(4105), @@ -152025,30 +152025,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -152133,30 +152133,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -152195,7 +152195,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4445), [anon_sym_AMP_AMP] = ACTIONS(4445), [anon_sym_PIPE_PIPE] = ACTIONS(4445), - [anon_sym_null] = ACTIONS(4443), [anon_sym_if] = ACTIONS(4443), [anon_sym_else] = ACTIONS(4443), [anon_sym_when] = ACTIONS(4443), @@ -152267,6 +152266,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4443), [anon_sym_false] = ACTIONS(4443), [anon_sym_SQUOTE] = ACTIONS(4445), + [sym_null_literal] = ACTIONS(4443), [sym__backtick_identifier] = ACTIONS(4445), [sym__automatic_semicolon] = ACTIONS(4445), [sym_safe_nav] = ACTIONS(4445), @@ -152303,7 +152303,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -152375,6 +152374,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -152411,7 +152411,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4079), [anon_sym_AMP_AMP] = ACTIONS(4079), [anon_sym_PIPE_PIPE] = ACTIONS(4079), - [anon_sym_null] = ACTIONS(4077), [anon_sym_if] = ACTIONS(4077), [anon_sym_else] = ACTIONS(4077), [anon_sym_when] = ACTIONS(4077), @@ -152483,6 +152482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4077), [anon_sym_false] = ACTIONS(4077), [anon_sym_SQUOTE] = ACTIONS(4079), + [sym_null_literal] = ACTIONS(4077), [sym__backtick_identifier] = ACTIONS(4079), [sym__automatic_semicolon] = ACTIONS(4079), [sym_safe_nav] = ACTIONS(4079), @@ -152519,7 +152519,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4089), [anon_sym_AMP_AMP] = ACTIONS(4089), [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_null] = ACTIONS(4087), [anon_sym_if] = ACTIONS(4087), [anon_sym_else] = ACTIONS(4087), [anon_sym_when] = ACTIONS(4087), @@ -152591,6 +152590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4087), [anon_sym_false] = ACTIONS(4087), [anon_sym_SQUOTE] = ACTIONS(4089), + [sym_null_literal] = ACTIONS(4087), [sym__backtick_identifier] = ACTIONS(4089), [sym__automatic_semicolon] = ACTIONS(4089), [sym_safe_nav] = ACTIONS(4089), @@ -152627,7 +152627,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4204), [anon_sym_AMP_AMP] = ACTIONS(4204), [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_null] = ACTIONS(4202), [anon_sym_if] = ACTIONS(4202), [anon_sym_else] = ACTIONS(4202), [anon_sym_when] = ACTIONS(4202), @@ -152699,6 +152698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4202), [anon_sym_false] = ACTIONS(4202), [anon_sym_SQUOTE] = ACTIONS(4204), + [sym_null_literal] = ACTIONS(4202), [sym__backtick_identifier] = ACTIONS(4204), [sym__automatic_semicolon] = ACTIONS(4204), [sym_safe_nav] = ACTIONS(4204), @@ -152735,7 +152735,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4262), [anon_sym_AMP_AMP] = ACTIONS(4262), [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_null] = ACTIONS(4260), [anon_sym_if] = ACTIONS(4260), [anon_sym_else] = ACTIONS(4260), [anon_sym_when] = ACTIONS(4260), @@ -152807,6 +152806,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4260), [anon_sym_false] = ACTIONS(4260), [anon_sym_SQUOTE] = ACTIONS(4262), + [sym_null_literal] = ACTIONS(4260), [sym__backtick_identifier] = ACTIONS(4262), [sym__automatic_semicolon] = ACTIONS(4262), [sym_safe_nav] = ACTIONS(4262), @@ -152843,7 +152843,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3230), [anon_sym_AMP_AMP] = ACTIONS(3230), [anon_sym_PIPE_PIPE] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3226), [anon_sym_if] = ACTIONS(3226), [anon_sym_else] = ACTIONS(3226), [anon_sym_when] = ACTIONS(3226), @@ -152915,6 +152914,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3226), [anon_sym_false] = ACTIONS(3226), [anon_sym_SQUOTE] = ACTIONS(3230), + [sym_null_literal] = ACTIONS(3226), [sym__backtick_identifier] = ACTIONS(3230), [sym__automatic_semicolon] = ACTIONS(3230), [sym_safe_nav] = ACTIONS(3230), @@ -152951,7 +152951,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4449), [anon_sym_AMP_AMP] = ACTIONS(4449), [anon_sym_PIPE_PIPE] = ACTIONS(4449), - [anon_sym_null] = ACTIONS(4447), [anon_sym_if] = ACTIONS(4447), [anon_sym_else] = ACTIONS(4447), [anon_sym_when] = ACTIONS(4447), @@ -153023,6 +153022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4447), [anon_sym_false] = ACTIONS(4447), [anon_sym_SQUOTE] = ACTIONS(4449), + [sym_null_literal] = ACTIONS(4447), [sym__backtick_identifier] = ACTIONS(4449), [sym__automatic_semicolon] = ACTIONS(4449), [sym_safe_nav] = ACTIONS(4449), @@ -153059,7 +153059,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4361), [anon_sym_AMP_AMP] = ACTIONS(4361), [anon_sym_PIPE_PIPE] = ACTIONS(4361), - [anon_sym_null] = ACTIONS(4359), [anon_sym_if] = ACTIONS(4359), [anon_sym_else] = ACTIONS(4359), [anon_sym_when] = ACTIONS(4359), @@ -153131,6 +153130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4359), [anon_sym_false] = ACTIONS(4359), [anon_sym_SQUOTE] = ACTIONS(4361), + [sym_null_literal] = ACTIONS(4359), [sym__backtick_identifier] = ACTIONS(4361), [sym__automatic_semicolon] = ACTIONS(4361), [sym_safe_nav] = ACTIONS(4361), @@ -153167,7 +153167,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4453), [anon_sym_AMP_AMP] = ACTIONS(4453), [anon_sym_PIPE_PIPE] = ACTIONS(4453), - [anon_sym_null] = ACTIONS(4451), [anon_sym_if] = ACTIONS(4451), [anon_sym_else] = ACTIONS(4451), [anon_sym_when] = ACTIONS(4451), @@ -153239,6 +153238,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4451), [anon_sym_false] = ACTIONS(4451), [anon_sym_SQUOTE] = ACTIONS(4453), + [sym_null_literal] = ACTIONS(4451), [sym__backtick_identifier] = ACTIONS(4453), [sym__automatic_semicolon] = ACTIONS(4453), [sym_safe_nav] = ACTIONS(4453), @@ -153275,7 +153275,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4457), [anon_sym_AMP_AMP] = ACTIONS(4457), [anon_sym_PIPE_PIPE] = ACTIONS(4457), - [anon_sym_null] = ACTIONS(4455), [anon_sym_if] = ACTIONS(4455), [anon_sym_else] = ACTIONS(4455), [anon_sym_when] = ACTIONS(4455), @@ -153347,6 +153346,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4455), [anon_sym_false] = ACTIONS(4455), [anon_sym_SQUOTE] = ACTIONS(4457), + [sym_null_literal] = ACTIONS(4455), [sym__backtick_identifier] = ACTIONS(4457), [sym__automatic_semicolon] = ACTIONS(4457), [sym_safe_nav] = ACTIONS(4457), @@ -153383,7 +153383,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4198), [anon_sym_AMP_AMP] = ACTIONS(4198), [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), [anon_sym_if] = ACTIONS(4196), [anon_sym_else] = ACTIONS(4196), [anon_sym_when] = ACTIONS(4196), @@ -153455,6 +153454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4196), [anon_sym_false] = ACTIONS(4196), [anon_sym_SQUOTE] = ACTIONS(4198), + [sym_null_literal] = ACTIONS(4196), [sym__backtick_identifier] = ACTIONS(4198), [sym__automatic_semicolon] = ACTIONS(4198), [sym_safe_nav] = ACTIONS(4198), @@ -153491,7 +153491,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4099), [anon_sym_AMP_AMP] = ACTIONS(4099), [anon_sym_PIPE_PIPE] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4097), [anon_sym_if] = ACTIONS(4097), [anon_sym_else] = ACTIONS(4097), [anon_sym_when] = ACTIONS(4097), @@ -153563,6 +153562,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4097), [anon_sym_false] = ACTIONS(4097), [anon_sym_SQUOTE] = ACTIONS(4099), + [sym_null_literal] = ACTIONS(4097), [sym__backtick_identifier] = ACTIONS(4099), [sym__automatic_semicolon] = ACTIONS(4099), [sym_safe_nav] = ACTIONS(4099), @@ -153619,7 +153619,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4477), [anon_sym_AMP_AMP] = ACTIONS(3086), [anon_sym_PIPE_PIPE] = ACTIONS(3086), - [anon_sym_null] = ACTIONS(3084), [anon_sym_if] = ACTIONS(3084), [anon_sym_else] = ACTIONS(3084), [anon_sym_when] = ACTIONS(3084), @@ -153670,6 +153669,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3084), [anon_sym_false] = ACTIONS(3084), [anon_sym_SQUOTE] = ACTIONS(3086), + [sym_null_literal] = ACTIONS(3084), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3086), [sym_safe_nav] = ACTIONS(4479), @@ -153705,7 +153705,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4497), [anon_sym_AMP_AMP] = ACTIONS(4497), [anon_sym_PIPE_PIPE] = ACTIONS(4497), - [anon_sym_null] = ACTIONS(4495), [anon_sym_if] = ACTIONS(4495), [anon_sym_else] = ACTIONS(4495), [anon_sym_when] = ACTIONS(4495), @@ -153777,6 +153776,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4495), [anon_sym_false] = ACTIONS(4495), [anon_sym_SQUOTE] = ACTIONS(4497), + [sym_null_literal] = ACTIONS(4495), [sym__backtick_identifier] = ACTIONS(4497), [sym__automatic_semicolon] = ACTIONS(4497), [sym_safe_nav] = ACTIONS(4497), @@ -153812,7 +153812,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4501), [anon_sym_AMP_AMP] = ACTIONS(4501), [anon_sym_PIPE_PIPE] = ACTIONS(4501), - [anon_sym_null] = ACTIONS(4499), [anon_sym_if] = ACTIONS(4499), [anon_sym_else] = ACTIONS(4499), [anon_sym_when] = ACTIONS(4499), @@ -153884,6 +153883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4499), [anon_sym_false] = ACTIONS(4499), [anon_sym_SQUOTE] = ACTIONS(4501), + [sym_null_literal] = ACTIONS(4499), [sym__backtick_identifier] = ACTIONS(4501), [sym__automatic_semicolon] = ACTIONS(4501), [sym_safe_nav] = ACTIONS(4501), @@ -153919,7 +153919,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4505), [anon_sym_AMP_AMP] = ACTIONS(4505), [anon_sym_PIPE_PIPE] = ACTIONS(4505), - [anon_sym_null] = ACTIONS(4503), [anon_sym_if] = ACTIONS(4503), [anon_sym_else] = ACTIONS(4503), [anon_sym_when] = ACTIONS(4503), @@ -153991,6 +153990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4503), [anon_sym_false] = ACTIONS(4503), [anon_sym_SQUOTE] = ACTIONS(4505), + [sym_null_literal] = ACTIONS(4503), [sym__backtick_identifier] = ACTIONS(4505), [sym__automatic_semicolon] = ACTIONS(4505), [sym_safe_nav] = ACTIONS(4505), @@ -154026,7 +154026,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4276), [anon_sym_AMP_AMP] = ACTIONS(4276), [anon_sym_PIPE_PIPE] = ACTIONS(4276), - [anon_sym_null] = ACTIONS(4274), [anon_sym_if] = ACTIONS(4274), [anon_sym_else] = ACTIONS(4274), [anon_sym_when] = ACTIONS(4274), @@ -154098,6 +154097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4274), [anon_sym_false] = ACTIONS(4274), [anon_sym_SQUOTE] = ACTIONS(4276), + [sym_null_literal] = ACTIONS(4274), [sym__backtick_identifier] = ACTIONS(4276), [sym__automatic_semicolon] = ACTIONS(4276), [sym_safe_nav] = ACTIONS(4276), @@ -154133,7 +154133,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4240), [anon_sym_AMP_AMP] = ACTIONS(4240), [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4238), [anon_sym_if] = ACTIONS(4238), [anon_sym_else] = ACTIONS(4238), [anon_sym_when] = ACTIONS(4238), @@ -154205,6 +154204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4238), [anon_sym_false] = ACTIONS(4238), [anon_sym_SQUOTE] = ACTIONS(4240), + [sym_null_literal] = ACTIONS(4238), [sym__backtick_identifier] = ACTIONS(4240), [sym__automatic_semicolon] = ACTIONS(4240), [sym_safe_nav] = ACTIONS(4240), @@ -154240,7 +154240,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4511), [anon_sym_AMP_AMP] = ACTIONS(4511), [anon_sym_PIPE_PIPE] = ACTIONS(4511), - [anon_sym_null] = ACTIONS(4509), [anon_sym_if] = ACTIONS(4509), [anon_sym_else] = ACTIONS(4509), [anon_sym_when] = ACTIONS(4509), @@ -154312,6 +154311,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4509), [anon_sym_false] = ACTIONS(4509), [anon_sym_SQUOTE] = ACTIONS(4511), + [sym_null_literal] = ACTIONS(4509), [sym__backtick_identifier] = ACTIONS(4511), [sym__automatic_semicolon] = ACTIONS(4511), [sym_safe_nav] = ACTIONS(4511), @@ -154347,7 +154347,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3230), [anon_sym_AMP_AMP] = ACTIONS(3230), [anon_sym_PIPE_PIPE] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3226), [anon_sym_if] = ACTIONS(3226), [anon_sym_else] = ACTIONS(3226), [anon_sym_when] = ACTIONS(3226), @@ -154419,6 +154418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3226), [anon_sym_false] = ACTIONS(3226), [anon_sym_SQUOTE] = ACTIONS(3230), + [sym_null_literal] = ACTIONS(3226), [sym__backtick_identifier] = ACTIONS(3230), [sym__automatic_semicolon] = ACTIONS(3230), [sym_safe_nav] = ACTIONS(3230), @@ -154454,7 +154454,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4515), [anon_sym_AMP_AMP] = ACTIONS(4515), [anon_sym_PIPE_PIPE] = ACTIONS(4515), - [anon_sym_null] = ACTIONS(4513), [anon_sym_if] = ACTIONS(4513), [anon_sym_else] = ACTIONS(4513), [anon_sym_when] = ACTIONS(4513), @@ -154526,6 +154525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4513), [anon_sym_false] = ACTIONS(4513), [anon_sym_SQUOTE] = ACTIONS(4515), + [sym_null_literal] = ACTIONS(4513), [sym__backtick_identifier] = ACTIONS(4515), [sym__automatic_semicolon] = ACTIONS(4515), [sym_safe_nav] = ACTIONS(4515), @@ -154561,7 +154561,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -154633,6 +154632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -154668,7 +154668,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4519), [anon_sym_AMP_AMP] = ACTIONS(4519), [anon_sym_PIPE_PIPE] = ACTIONS(4519), - [anon_sym_null] = ACTIONS(4517), [anon_sym_if] = ACTIONS(4517), [anon_sym_else] = ACTIONS(4517), [anon_sym_when] = ACTIONS(4517), @@ -154740,6 +154739,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4517), [anon_sym_false] = ACTIONS(4517), [anon_sym_SQUOTE] = ACTIONS(4519), + [sym_null_literal] = ACTIONS(4517), [sym__backtick_identifier] = ACTIONS(4519), [sym__automatic_semicolon] = ACTIONS(4519), [sym_safe_nav] = ACTIONS(4519), @@ -154775,7 +154775,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4523), [anon_sym_AMP_AMP] = ACTIONS(4523), [anon_sym_PIPE_PIPE] = ACTIONS(4523), - [anon_sym_null] = ACTIONS(4521), [anon_sym_if] = ACTIONS(4521), [anon_sym_else] = ACTIONS(4521), [anon_sym_when] = ACTIONS(4521), @@ -154847,6 +154846,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4521), [anon_sym_false] = ACTIONS(4521), [anon_sym_SQUOTE] = ACTIONS(4523), + [sym_null_literal] = ACTIONS(4521), [sym__backtick_identifier] = ACTIONS(4523), [sym__automatic_semicolon] = ACTIONS(4523), [sym_safe_nav] = ACTIONS(4523), @@ -154882,7 +154882,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4527), [anon_sym_AMP_AMP] = ACTIONS(4527), [anon_sym_PIPE_PIPE] = ACTIONS(4527), - [anon_sym_null] = ACTIONS(4525), [anon_sym_if] = ACTIONS(4525), [anon_sym_else] = ACTIONS(4525), [anon_sym_when] = ACTIONS(4525), @@ -154954,6 +154953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4525), [anon_sym_false] = ACTIONS(4525), [anon_sym_SQUOTE] = ACTIONS(4527), + [sym_null_literal] = ACTIONS(4525), [sym__backtick_identifier] = ACTIONS(4527), [sym__automatic_semicolon] = ACTIONS(4527), [sym_safe_nav] = ACTIONS(4527), @@ -154989,7 +154989,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4349), [anon_sym_AMP_AMP] = ACTIONS(4349), [anon_sym_PIPE_PIPE] = ACTIONS(4349), - [anon_sym_null] = ACTIONS(4347), [anon_sym_if] = ACTIONS(4347), [anon_sym_else] = ACTIONS(4347), [anon_sym_when] = ACTIONS(4347), @@ -155061,6 +155060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4347), [anon_sym_false] = ACTIONS(4347), [anon_sym_SQUOTE] = ACTIONS(4349), + [sym_null_literal] = ACTIONS(4347), [sym__backtick_identifier] = ACTIONS(4349), [sym__automatic_semicolon] = ACTIONS(4349), [sym_safe_nav] = ACTIONS(4349), @@ -155096,7 +155096,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -155168,6 +155167,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -155250,30 +155250,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -155357,30 +155357,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -155417,7 +155417,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4414), [anon_sym_AMP_AMP] = ACTIONS(4414), [anon_sym_PIPE_PIPE] = ACTIONS(4414), - [anon_sym_null] = ACTIONS(4412), [anon_sym_if] = ACTIONS(4412), [anon_sym_else] = ACTIONS(4412), [anon_sym_when] = ACTIONS(4412), @@ -155489,6 +155488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4412), [anon_sym_false] = ACTIONS(4412), [anon_sym_SQUOTE] = ACTIONS(4414), + [sym_null_literal] = ACTIONS(4412), [sym__backtick_identifier] = ACTIONS(4414), [sym__automatic_semicolon] = ACTIONS(4414), [sym_safe_nav] = ACTIONS(4414), @@ -155524,7 +155524,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4565), [anon_sym_AMP_AMP] = ACTIONS(4565), [anon_sym_PIPE_PIPE] = ACTIONS(4565), - [anon_sym_null] = ACTIONS(4563), [anon_sym_if] = ACTIONS(4563), [anon_sym_else] = ACTIONS(4563), [anon_sym_when] = ACTIONS(4563), @@ -155596,6 +155595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4563), [anon_sym_false] = ACTIONS(4563), [anon_sym_SQUOTE] = ACTIONS(4565), + [sym_null_literal] = ACTIONS(4563), [sym__backtick_identifier] = ACTIONS(4565), [sym__automatic_semicolon] = ACTIONS(4565), [sym_safe_nav] = ACTIONS(4565), @@ -155631,7 +155631,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4569), [anon_sym_AMP_AMP] = ACTIONS(4569), [anon_sym_PIPE_PIPE] = ACTIONS(4569), - [anon_sym_null] = ACTIONS(4567), [anon_sym_if] = ACTIONS(4567), [anon_sym_else] = ACTIONS(4567), [anon_sym_when] = ACTIONS(4567), @@ -155703,6 +155702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4567), [anon_sym_false] = ACTIONS(4567), [anon_sym_SQUOTE] = ACTIONS(4569), + [sym_null_literal] = ACTIONS(4567), [sym__backtick_identifier] = ACTIONS(4569), [sym__automatic_semicolon] = ACTIONS(4569), [sym_safe_nav] = ACTIONS(4569), @@ -155738,7 +155738,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4204), [anon_sym_AMP_AMP] = ACTIONS(4204), [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_null] = ACTIONS(4202), [anon_sym_if] = ACTIONS(4202), [anon_sym_else] = ACTIONS(4202), [anon_sym_when] = ACTIONS(4202), @@ -155810,6 +155809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4202), [anon_sym_false] = ACTIONS(4202), [anon_sym_SQUOTE] = ACTIONS(4204), + [sym_null_literal] = ACTIONS(4202), [sym__backtick_identifier] = ACTIONS(4204), [sym__automatic_semicolon] = ACTIONS(4204), [sym_safe_nav] = ACTIONS(4204), @@ -155892,30 +155892,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -155999,30 +155999,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -156106,30 +156106,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -156166,7 +156166,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4252), [anon_sym_AMP_AMP] = ACTIONS(4252), [anon_sym_PIPE_PIPE] = ACTIONS(4252), - [anon_sym_null] = ACTIONS(4250), [anon_sym_if] = ACTIONS(4250), [anon_sym_else] = ACTIONS(4250), [anon_sym_when] = ACTIONS(4250), @@ -156238,6 +156237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4250), [anon_sym_false] = ACTIONS(4250), [anon_sym_SQUOTE] = ACTIONS(4252), + [sym_null_literal] = ACTIONS(4250), [sym__backtick_identifier] = ACTIONS(4252), [sym__automatic_semicolon] = ACTIONS(4252), [sym_safe_nav] = ACTIONS(4252), @@ -156320,30 +156320,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -156380,7 +156380,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4515), [anon_sym_AMP_AMP] = ACTIONS(4515), [anon_sym_PIPE_PIPE] = ACTIONS(4515), - [anon_sym_null] = ACTIONS(4513), [anon_sym_if] = ACTIONS(4513), [anon_sym_else] = ACTIONS(4513), [anon_sym_when] = ACTIONS(4513), @@ -156452,6 +156451,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4513), [anon_sym_false] = ACTIONS(4513), [anon_sym_SQUOTE] = ACTIONS(4515), + [sym_null_literal] = ACTIONS(4513), [sym__backtick_identifier] = ACTIONS(4515), [sym__automatic_semicolon] = ACTIONS(4515), [sym_safe_nav] = ACTIONS(4515), @@ -156487,7 +156487,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4585), [anon_sym_AMP_AMP] = ACTIONS(4585), [anon_sym_PIPE_PIPE] = ACTIONS(4585), - [anon_sym_null] = ACTIONS(4583), [anon_sym_if] = ACTIONS(4583), [anon_sym_else] = ACTIONS(4583), [anon_sym_when] = ACTIONS(4583), @@ -156559,6 +156558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4583), [anon_sym_false] = ACTIONS(4583), [anon_sym_SQUOTE] = ACTIONS(4585), + [sym_null_literal] = ACTIONS(4583), [sym__backtick_identifier] = ACTIONS(4585), [sym__automatic_semicolon] = ACTIONS(4585), [sym_safe_nav] = ACTIONS(4585), @@ -156594,7 +156594,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4589), [anon_sym_AMP_AMP] = ACTIONS(4589), [anon_sym_PIPE_PIPE] = ACTIONS(4589), - [anon_sym_null] = ACTIONS(4587), [anon_sym_if] = ACTIONS(4587), [anon_sym_else] = ACTIONS(4587), [anon_sym_when] = ACTIONS(4587), @@ -156666,6 +156665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4587), [anon_sym_false] = ACTIONS(4587), [anon_sym_SQUOTE] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4587), [sym__backtick_identifier] = ACTIONS(4589), [sym__automatic_semicolon] = ACTIONS(4589), [sym_safe_nav] = ACTIONS(4589), @@ -156701,7 +156701,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4204), [anon_sym_AMP_AMP] = ACTIONS(4204), [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_null] = ACTIONS(4202), [anon_sym_if] = ACTIONS(4202), [anon_sym_else] = ACTIONS(4202), [anon_sym_when] = ACTIONS(4202), @@ -156773,6 +156772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4202), [anon_sym_false] = ACTIONS(4202), [anon_sym_SQUOTE] = ACTIONS(4204), + [sym_null_literal] = ACTIONS(4202), [sym__backtick_identifier] = ACTIONS(4204), [sym__automatic_semicolon] = ACTIONS(4204), [sym_safe_nav] = ACTIONS(4204), @@ -156808,7 +156808,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3240), [anon_sym_AMP_AMP] = ACTIONS(3240), [anon_sym_PIPE_PIPE] = ACTIONS(3240), - [anon_sym_null] = ACTIONS(3236), [anon_sym_if] = ACTIONS(3236), [anon_sym_else] = ACTIONS(3236), [anon_sym_when] = ACTIONS(3236), @@ -156880,6 +156879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3236), [anon_sym_false] = ACTIONS(3236), [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), [sym__backtick_identifier] = ACTIONS(3240), [sym__automatic_semicolon] = ACTIONS(3240), [sym_safe_nav] = ACTIONS(3240), @@ -156915,7 +156915,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4593), [anon_sym_AMP_AMP] = ACTIONS(4593), [anon_sym_PIPE_PIPE] = ACTIONS(4593), - [anon_sym_null] = ACTIONS(4591), [anon_sym_if] = ACTIONS(4591), [anon_sym_else] = ACTIONS(4591), [anon_sym_when] = ACTIONS(4591), @@ -156987,6 +156986,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4591), [anon_sym_false] = ACTIONS(4591), [anon_sym_SQUOTE] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4591), [sym__backtick_identifier] = ACTIONS(4593), [sym__automatic_semicolon] = ACTIONS(4593), [sym_safe_nav] = ACTIONS(4593), @@ -157022,7 +157022,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4597), [anon_sym_AMP_AMP] = ACTIONS(4597), [anon_sym_PIPE_PIPE] = ACTIONS(4597), - [anon_sym_null] = ACTIONS(4595), [anon_sym_if] = ACTIONS(4595), [anon_sym_else] = ACTIONS(4595), [anon_sym_when] = ACTIONS(4595), @@ -157094,6 +157093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4595), [anon_sym_false] = ACTIONS(4595), [anon_sym_SQUOTE] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4595), [sym__backtick_identifier] = ACTIONS(4597), [sym__automatic_semicolon] = ACTIONS(4597), [sym_safe_nav] = ACTIONS(4597), @@ -157129,7 +157129,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4457), [anon_sym_AMP_AMP] = ACTIONS(4457), [anon_sym_PIPE_PIPE] = ACTIONS(4457), - [anon_sym_null] = ACTIONS(4455), [anon_sym_if] = ACTIONS(4455), [anon_sym_else] = ACTIONS(4455), [anon_sym_when] = ACTIONS(4455), @@ -157201,6 +157200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4455), [anon_sym_false] = ACTIONS(4455), [anon_sym_SQUOTE] = ACTIONS(4457), + [sym_null_literal] = ACTIONS(4455), [sym__backtick_identifier] = ACTIONS(4457), [sym__automatic_semicolon] = ACTIONS(4457), [sym_safe_nav] = ACTIONS(4457), @@ -157236,7 +157236,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4337), [anon_sym_AMP_AMP] = ACTIONS(4337), [anon_sym_PIPE_PIPE] = ACTIONS(4337), - [anon_sym_null] = ACTIONS(4335), [anon_sym_if] = ACTIONS(4335), [anon_sym_else] = ACTIONS(4335), [anon_sym_when] = ACTIONS(4335), @@ -157308,6 +157307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4335), [anon_sym_false] = ACTIONS(4335), [anon_sym_SQUOTE] = ACTIONS(4337), + [sym_null_literal] = ACTIONS(4335), [sym__backtick_identifier] = ACTIONS(4337), [sym__automatic_semicolon] = ACTIONS(4337), [sym_safe_nav] = ACTIONS(4337), @@ -157343,7 +157343,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4601), [anon_sym_AMP_AMP] = ACTIONS(4601), [anon_sym_PIPE_PIPE] = ACTIONS(4601), - [anon_sym_null] = ACTIONS(4599), [anon_sym_if] = ACTIONS(4599), [anon_sym_else] = ACTIONS(4599), [anon_sym_when] = ACTIONS(4599), @@ -157415,6 +157414,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4599), [anon_sym_false] = ACTIONS(4599), [anon_sym_SQUOTE] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4599), [sym__backtick_identifier] = ACTIONS(4601), [sym__automatic_semicolon] = ACTIONS(4601), [sym_safe_nav] = ACTIONS(4601), @@ -157450,7 +157450,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4337), [anon_sym_AMP_AMP] = ACTIONS(4337), [anon_sym_PIPE_PIPE] = ACTIONS(4337), - [anon_sym_null] = ACTIONS(4335), [anon_sym_if] = ACTIONS(4335), [anon_sym_else] = ACTIONS(4335), [anon_sym_when] = ACTIONS(4335), @@ -157522,6 +157521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4335), [anon_sym_false] = ACTIONS(4335), [anon_sym_SQUOTE] = ACTIONS(4337), + [sym_null_literal] = ACTIONS(4335), [sym__backtick_identifier] = ACTIONS(4337), [sym__automatic_semicolon] = ACTIONS(4337), [sym_safe_nav] = ACTIONS(4337), @@ -157557,7 +157557,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4154), [anon_sym_AMP_AMP] = ACTIONS(4154), [anon_sym_PIPE_PIPE] = ACTIONS(4154), - [anon_sym_null] = ACTIONS(4152), [anon_sym_if] = ACTIONS(4152), [anon_sym_else] = ACTIONS(4152), [anon_sym_when] = ACTIONS(4152), @@ -157629,6 +157628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4152), [anon_sym_false] = ACTIONS(4152), [anon_sym_SQUOTE] = ACTIONS(4154), + [sym_null_literal] = ACTIONS(4152), [sym__backtick_identifier] = ACTIONS(4154), [sym__automatic_semicolon] = ACTIONS(4154), [sym_safe_nav] = ACTIONS(4154), @@ -157664,7 +157664,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4605), [anon_sym_AMP_AMP] = ACTIONS(4605), [anon_sym_PIPE_PIPE] = ACTIONS(4605), - [anon_sym_null] = ACTIONS(4603), [anon_sym_if] = ACTIONS(4603), [anon_sym_else] = ACTIONS(4603), [anon_sym_when] = ACTIONS(4603), @@ -157736,6 +157735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4603), [anon_sym_false] = ACTIONS(4603), [anon_sym_SQUOTE] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4603), [sym__backtick_identifier] = ACTIONS(4605), [sym__automatic_semicolon] = ACTIONS(4605), [sym_safe_nav] = ACTIONS(4605), @@ -157771,7 +157771,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4609), [anon_sym_AMP_AMP] = ACTIONS(4609), [anon_sym_PIPE_PIPE] = ACTIONS(4609), - [anon_sym_null] = ACTIONS(4607), [anon_sym_if] = ACTIONS(4607), [anon_sym_else] = ACTIONS(4607), [anon_sym_when] = ACTIONS(4607), @@ -157843,6 +157842,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4607), [anon_sym_false] = ACTIONS(4607), [anon_sym_SQUOTE] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4607), [sym__backtick_identifier] = ACTIONS(4609), [sym__automatic_semicolon] = ACTIONS(4609), [sym_safe_nav] = ACTIONS(4609), @@ -157878,7 +157878,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4613), [anon_sym_AMP_AMP] = ACTIONS(4613), [anon_sym_PIPE_PIPE] = ACTIONS(4613), - [anon_sym_null] = ACTIONS(4611), [anon_sym_if] = ACTIONS(4611), [anon_sym_else] = ACTIONS(4611), [anon_sym_when] = ACTIONS(4611), @@ -157950,6 +157949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4611), [anon_sym_false] = ACTIONS(4611), [anon_sym_SQUOTE] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4611), [sym__backtick_identifier] = ACTIONS(4613), [sym__automatic_semicolon] = ACTIONS(4613), [sym_safe_nav] = ACTIONS(4613), @@ -157985,7 +157985,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4361), [anon_sym_AMP_AMP] = ACTIONS(4361), [anon_sym_PIPE_PIPE] = ACTIONS(4361), - [anon_sym_null] = ACTIONS(4359), [anon_sym_if] = ACTIONS(4359), [anon_sym_else] = ACTIONS(4359), [anon_sym_when] = ACTIONS(4359), @@ -158057,6 +158056,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4359), [anon_sym_false] = ACTIONS(4359), [anon_sym_SQUOTE] = ACTIONS(4361), + [sym_null_literal] = ACTIONS(4359), [sym__backtick_identifier] = ACTIONS(4361), [sym__automatic_semicolon] = ACTIONS(4361), [sym_safe_nav] = ACTIONS(4361), @@ -158092,7 +158092,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4361), [anon_sym_AMP_AMP] = ACTIONS(4361), [anon_sym_PIPE_PIPE] = ACTIONS(4361), - [anon_sym_null] = ACTIONS(4359), [anon_sym_if] = ACTIONS(4359), [anon_sym_else] = ACTIONS(4359), [anon_sym_when] = ACTIONS(4359), @@ -158164,6 +158163,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4359), [anon_sym_false] = ACTIONS(4359), [anon_sym_SQUOTE] = ACTIONS(4361), + [sym_null_literal] = ACTIONS(4359), [sym__backtick_identifier] = ACTIONS(4361), [sym__automatic_semicolon] = ACTIONS(4361), [sym_safe_nav] = ACTIONS(4361), @@ -158199,7 +158199,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4449), [anon_sym_AMP_AMP] = ACTIONS(4449), [anon_sym_PIPE_PIPE] = ACTIONS(4449), - [anon_sym_null] = ACTIONS(4447), [anon_sym_if] = ACTIONS(4447), [anon_sym_else] = ACTIONS(4447), [anon_sym_when] = ACTIONS(4447), @@ -158271,6 +158270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4447), [anon_sym_false] = ACTIONS(4447), [anon_sym_SQUOTE] = ACTIONS(4449), + [sym_null_literal] = ACTIONS(4447), [sym__backtick_identifier] = ACTIONS(4449), [sym__automatic_semicolon] = ACTIONS(4449), [sym_safe_nav] = ACTIONS(4449), @@ -158306,7 +158306,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4620), [anon_sym_AMP_AMP] = ACTIONS(4620), [anon_sym_PIPE_PIPE] = ACTIONS(4620), - [anon_sym_null] = ACTIONS(4618), [anon_sym_if] = ACTIONS(4618), [anon_sym_else] = ACTIONS(4618), [anon_sym_when] = ACTIONS(4618), @@ -158378,6 +158377,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4618), [anon_sym_false] = ACTIONS(4618), [anon_sym_SQUOTE] = ACTIONS(4620), + [sym_null_literal] = ACTIONS(4618), [sym__backtick_identifier] = ACTIONS(4620), [sym__automatic_semicolon] = ACTIONS(4620), [sym_safe_nav] = ACTIONS(4620), @@ -158413,7 +158413,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4620), [anon_sym_AMP_AMP] = ACTIONS(4620), [anon_sym_PIPE_PIPE] = ACTIONS(4620), - [anon_sym_null] = ACTIONS(4618), [anon_sym_if] = ACTIONS(4618), [anon_sym_else] = ACTIONS(4618), [anon_sym_when] = ACTIONS(4618), @@ -158485,6 +158484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4618), [anon_sym_false] = ACTIONS(4618), [anon_sym_SQUOTE] = ACTIONS(4620), + [sym_null_literal] = ACTIONS(4618), [sym__backtick_identifier] = ACTIONS(4620), [sym__automatic_semicolon] = ACTIONS(4620), [sym_safe_nav] = ACTIONS(4620), @@ -158520,7 +158520,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4422), [anon_sym_AMP_AMP] = ACTIONS(4422), [anon_sym_PIPE_PIPE] = ACTIONS(4422), - [anon_sym_null] = ACTIONS(4420), [anon_sym_if] = ACTIONS(4420), [anon_sym_else] = ACTIONS(4420), [anon_sym_when] = ACTIONS(4420), @@ -158592,6 +158591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4420), [anon_sym_false] = ACTIONS(4420), [anon_sym_SQUOTE] = ACTIONS(4422), + [sym_null_literal] = ACTIONS(4420), [sym__backtick_identifier] = ACTIONS(4422), [sym__automatic_semicolon] = ACTIONS(4422), [sym_safe_nav] = ACTIONS(4422), @@ -158648,7 +158648,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4477), [anon_sym_AMP_AMP] = ACTIONS(4622), [anon_sym_PIPE_PIPE] = ACTIONS(4624), - [anon_sym_null] = ACTIONS(3072), [anon_sym_if] = ACTIONS(3072), [anon_sym_else] = ACTIONS(3072), [anon_sym_when] = ACTIONS(3072), @@ -158699,6 +158698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3072), [anon_sym_false] = ACTIONS(3072), [anon_sym_SQUOTE] = ACTIONS(3074), + [sym_null_literal] = ACTIONS(3072), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3074), [sym_safe_nav] = ACTIONS(4479), @@ -158734,7 +158734,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4632), [anon_sym_AMP_AMP] = ACTIONS(4632), [anon_sym_PIPE_PIPE] = ACTIONS(4632), - [anon_sym_null] = ACTIONS(4630), [anon_sym_if] = ACTIONS(4630), [anon_sym_else] = ACTIONS(4630), [anon_sym_when] = ACTIONS(4630), @@ -158806,6 +158805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4630), [anon_sym_false] = ACTIONS(4630), [anon_sym_SQUOTE] = ACTIONS(4632), + [sym_null_literal] = ACTIONS(4630), [sym__backtick_identifier] = ACTIONS(4632), [sym__automatic_semicolon] = ACTIONS(4632), [sym_safe_nav] = ACTIONS(4632), @@ -158841,7 +158841,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4272), [anon_sym_AMP_AMP] = ACTIONS(4272), [anon_sym_PIPE_PIPE] = ACTIONS(4272), - [anon_sym_null] = ACTIONS(4270), [anon_sym_if] = ACTIONS(4270), [anon_sym_else] = ACTIONS(4270), [anon_sym_when] = ACTIONS(4270), @@ -158913,6 +158912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4270), [anon_sym_false] = ACTIONS(4270), [anon_sym_SQUOTE] = ACTIONS(4272), + [sym_null_literal] = ACTIONS(4270), [sym__backtick_identifier] = ACTIONS(4272), [sym__automatic_semicolon] = ACTIONS(4272), [sym_safe_nav] = ACTIONS(4272), @@ -158948,7 +158948,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4636), [anon_sym_AMP_AMP] = ACTIONS(4636), [anon_sym_PIPE_PIPE] = ACTIONS(4636), - [anon_sym_null] = ACTIONS(4634), [anon_sym_if] = ACTIONS(4634), [anon_sym_else] = ACTIONS(4634), [anon_sym_when] = ACTIONS(4634), @@ -159020,6 +159019,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4634), [anon_sym_false] = ACTIONS(4634), [anon_sym_SQUOTE] = ACTIONS(4636), + [sym_null_literal] = ACTIONS(4634), [sym__backtick_identifier] = ACTIONS(4636), [sym__automatic_semicolon] = ACTIONS(4636), [sym_safe_nav] = ACTIONS(4636), @@ -159055,7 +159055,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4640), [anon_sym_AMP_AMP] = ACTIONS(4640), [anon_sym_PIPE_PIPE] = ACTIONS(4640), - [anon_sym_null] = ACTIONS(4638), [anon_sym_if] = ACTIONS(4638), [anon_sym_else] = ACTIONS(4638), [anon_sym_when] = ACTIONS(4638), @@ -159127,6 +159126,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4638), [anon_sym_false] = ACTIONS(4638), [anon_sym_SQUOTE] = ACTIONS(4640), + [sym_null_literal] = ACTIONS(4638), [sym__backtick_identifier] = ACTIONS(4640), [sym__automatic_semicolon] = ACTIONS(4640), [sym_safe_nav] = ACTIONS(4640), @@ -159162,7 +159162,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4644), [anon_sym_AMP_AMP] = ACTIONS(4644), [anon_sym_PIPE_PIPE] = ACTIONS(4644), - [anon_sym_null] = ACTIONS(4642), [anon_sym_if] = ACTIONS(4642), [anon_sym_else] = ACTIONS(4642), [anon_sym_when] = ACTIONS(4642), @@ -159234,6 +159233,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4642), [anon_sym_false] = ACTIONS(4642), [anon_sym_SQUOTE] = ACTIONS(4644), + [sym_null_literal] = ACTIONS(4642), [sym__backtick_identifier] = ACTIONS(4644), [sym__automatic_semicolon] = ACTIONS(4644), [sym_safe_nav] = ACTIONS(4644), @@ -159269,7 +159269,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4375), [anon_sym_AMP_AMP] = ACTIONS(4375), [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_null] = ACTIONS(4373), [anon_sym_if] = ACTIONS(4373), [anon_sym_else] = ACTIONS(4373), [anon_sym_when] = ACTIONS(4373), @@ -159341,6 +159340,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4373), [anon_sym_false] = ACTIONS(4373), [anon_sym_SQUOTE] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4373), [sym__backtick_identifier] = ACTIONS(4375), [sym__automatic_semicolon] = ACTIONS(4375), [sym_safe_nav] = ACTIONS(4375), @@ -159376,7 +159376,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4648), [anon_sym_AMP_AMP] = ACTIONS(4648), [anon_sym_PIPE_PIPE] = ACTIONS(4648), - [anon_sym_null] = ACTIONS(4646), [anon_sym_if] = ACTIONS(4646), [anon_sym_else] = ACTIONS(4646), [anon_sym_when] = ACTIONS(4646), @@ -159448,6 +159447,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4646), [anon_sym_false] = ACTIONS(4646), [anon_sym_SQUOTE] = ACTIONS(4648), + [sym_null_literal] = ACTIONS(4646), [sym__backtick_identifier] = ACTIONS(4648), [sym__automatic_semicolon] = ACTIONS(4648), [sym_safe_nav] = ACTIONS(4648), @@ -159483,7 +159483,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4198), [anon_sym_AMP_AMP] = ACTIONS(4198), [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), [anon_sym_if] = ACTIONS(4196), [anon_sym_else] = ACTIONS(4196), [anon_sym_when] = ACTIONS(4196), @@ -159555,6 +159554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4196), [anon_sym_false] = ACTIONS(4196), [anon_sym_SQUOTE] = ACTIONS(4198), + [sym_null_literal] = ACTIONS(4196), [sym__backtick_identifier] = ACTIONS(4198), [sym__automatic_semicolon] = ACTIONS(4198), [sym_safe_nav] = ACTIONS(4198), @@ -159590,7 +159590,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4654), [anon_sym_AMP_AMP] = ACTIONS(4654), [anon_sym_PIPE_PIPE] = ACTIONS(4654), - [anon_sym_null] = ACTIONS(4652), [anon_sym_if] = ACTIONS(4652), [anon_sym_else] = ACTIONS(4652), [anon_sym_when] = ACTIONS(4652), @@ -159662,6 +159661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4652), [anon_sym_false] = ACTIONS(4652), [anon_sym_SQUOTE] = ACTIONS(4654), + [sym_null_literal] = ACTIONS(4652), [sym__backtick_identifier] = ACTIONS(4654), [sym__automatic_semicolon] = ACTIONS(4654), [sym_safe_nav] = ACTIONS(4654), @@ -159697,7 +159697,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4659), [anon_sym_AMP_AMP] = ACTIONS(4659), [anon_sym_PIPE_PIPE] = ACTIONS(4659), - [anon_sym_null] = ACTIONS(4656), [anon_sym_if] = ACTIONS(4656), [anon_sym_else] = ACTIONS(4656), [anon_sym_when] = ACTIONS(4656), @@ -159769,6 +159768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4656), [anon_sym_false] = ACTIONS(4656), [anon_sym_SQUOTE] = ACTIONS(4659), + [sym_null_literal] = ACTIONS(4656), [sym__backtick_identifier] = ACTIONS(4659), [sym__automatic_semicolon] = ACTIONS(4659), [sym_safe_nav] = ACTIONS(4659), @@ -159804,7 +159804,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4664), [anon_sym_AMP_AMP] = ACTIONS(4664), [anon_sym_PIPE_PIPE] = ACTIONS(4664), - [anon_sym_null] = ACTIONS(4662), [anon_sym_if] = ACTIONS(4662), [anon_sym_else] = ACTIONS(4662), [anon_sym_when] = ACTIONS(4662), @@ -159876,6 +159875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4662), [anon_sym_false] = ACTIONS(4662), [anon_sym_SQUOTE] = ACTIONS(4664), + [sym_null_literal] = ACTIONS(4662), [sym__backtick_identifier] = ACTIONS(4664), [sym__automatic_semicolon] = ACTIONS(4664), [sym_safe_nav] = ACTIONS(4664), @@ -159911,7 +159911,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4668), [anon_sym_AMP_AMP] = ACTIONS(4668), [anon_sym_PIPE_PIPE] = ACTIONS(4668), - [anon_sym_null] = ACTIONS(4666), [anon_sym_if] = ACTIONS(4666), [anon_sym_else] = ACTIONS(4666), [anon_sym_when] = ACTIONS(4666), @@ -159983,6 +159982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4666), [anon_sym_false] = ACTIONS(4666), [anon_sym_SQUOTE] = ACTIONS(4668), + [sym_null_literal] = ACTIONS(4666), [sym__backtick_identifier] = ACTIONS(4668), [sym__automatic_semicolon] = ACTIONS(4668), [sym_safe_nav] = ACTIONS(4668), @@ -160039,7 +160039,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3117), [anon_sym_AMP_AMP] = ACTIONS(3117), [anon_sym_PIPE_PIPE] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3115), [anon_sym_if] = ACTIONS(3115), [anon_sym_else] = ACTIONS(3115), [anon_sym_when] = ACTIONS(3115), @@ -160090,6 +160089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3115), [anon_sym_false] = ACTIONS(3115), [anon_sym_SQUOTE] = ACTIONS(3117), + [sym_null_literal] = ACTIONS(3115), [sym__backtick_identifier] = ACTIONS(3117), [sym__automatic_semicolon] = ACTIONS(3117), [sym_safe_nav] = ACTIONS(4479), @@ -160125,7 +160125,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4673), [anon_sym_AMP_AMP] = ACTIONS(4673), [anon_sym_PIPE_PIPE] = ACTIONS(4673), - [anon_sym_null] = ACTIONS(4670), [anon_sym_if] = ACTIONS(4670), [anon_sym_else] = ACTIONS(4670), [anon_sym_when] = ACTIONS(4670), @@ -160197,6 +160196,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4670), [anon_sym_false] = ACTIONS(4670), [anon_sym_SQUOTE] = ACTIONS(4673), + [sym_null_literal] = ACTIONS(4670), [sym__backtick_identifier] = ACTIONS(4673), [sym__automatic_semicolon] = ACTIONS(4673), [sym_safe_nav] = ACTIONS(4673), @@ -160232,7 +160232,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4678), [anon_sym_AMP_AMP] = ACTIONS(4678), [anon_sym_PIPE_PIPE] = ACTIONS(4678), - [anon_sym_null] = ACTIONS(4676), [anon_sym_if] = ACTIONS(4676), [anon_sym_else] = ACTIONS(4676), [anon_sym_when] = ACTIONS(4676), @@ -160304,6 +160303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4676), [anon_sym_false] = ACTIONS(4676), [anon_sym_SQUOTE] = ACTIONS(4678), + [sym_null_literal] = ACTIONS(4676), [sym__backtick_identifier] = ACTIONS(4678), [sym__automatic_semicolon] = ACTIONS(4678), [sym_safe_nav] = ACTIONS(4678), @@ -160360,7 +160360,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4477), [anon_sym_AMP_AMP] = ACTIONS(4622), [anon_sym_PIPE_PIPE] = ACTIONS(4624), - [anon_sym_null] = ACTIONS(3080), [anon_sym_if] = ACTIONS(3080), [anon_sym_else] = ACTIONS(3080), [anon_sym_when] = ACTIONS(3080), @@ -160411,6 +160410,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3080), [anon_sym_false] = ACTIONS(3080), [anon_sym_SQUOTE] = ACTIONS(3082), + [sym_null_literal] = ACTIONS(3080), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3082), [sym_safe_nav] = ACTIONS(4479), @@ -160446,7 +160446,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4682), [anon_sym_AMP_AMP] = ACTIONS(4682), [anon_sym_PIPE_PIPE] = ACTIONS(4682), - [anon_sym_null] = ACTIONS(4680), [anon_sym_if] = ACTIONS(4680), [anon_sym_else] = ACTIONS(4680), [anon_sym_when] = ACTIONS(4680), @@ -160518,6 +160517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4680), [anon_sym_false] = ACTIONS(4680), [anon_sym_SQUOTE] = ACTIONS(4682), + [sym_null_literal] = ACTIONS(4680), [sym__backtick_identifier] = ACTIONS(4682), [sym__automatic_semicolon] = ACTIONS(4682), [sym_safe_nav] = ACTIONS(4682), @@ -160574,7 +160574,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4477), [anon_sym_AMP_AMP] = ACTIONS(4622), [anon_sym_PIPE_PIPE] = ACTIONS(4624), - [anon_sym_null] = ACTIONS(3107), [anon_sym_if] = ACTIONS(3107), [anon_sym_else] = ACTIONS(3107), [anon_sym_when] = ACTIONS(3107), @@ -160625,6 +160624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3107), [anon_sym_false] = ACTIONS(3107), [anon_sym_SQUOTE] = ACTIONS(3109), + [sym_null_literal] = ACTIONS(3107), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3109), [sym_safe_nav] = ACTIONS(4479), @@ -160681,7 +160681,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3132), [anon_sym_AMP_AMP] = ACTIONS(3132), [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), [anon_sym_if] = ACTIONS(3130), [anon_sym_else] = ACTIONS(3130), [anon_sym_when] = ACTIONS(3130), @@ -160732,6 +160731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3130), [anon_sym_false] = ACTIONS(3130), [anon_sym_SQUOTE] = ACTIONS(3132), + [sym_null_literal] = ACTIONS(3130), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3132), [sym_safe_nav] = ACTIONS(4479), @@ -160814,30 +160814,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -160921,30 +160921,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -161028,30 +161028,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -161135,30 +161135,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -161216,7 +161216,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4477), [anon_sym_AMP_AMP] = ACTIONS(3078), [anon_sym_PIPE_PIPE] = ACTIONS(3078), - [anon_sym_null] = ACTIONS(3076), [anon_sym_if] = ACTIONS(3076), [anon_sym_else] = ACTIONS(3076), [anon_sym_when] = ACTIONS(3076), @@ -161267,6 +161266,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3076), [anon_sym_false] = ACTIONS(3076), [anon_sym_SQUOTE] = ACTIONS(3078), + [sym_null_literal] = ACTIONS(3076), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3078), [sym_safe_nav] = ACTIONS(4479), @@ -161323,7 +161323,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4477), [anon_sym_AMP_AMP] = ACTIONS(4622), [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_null] = ACTIONS(3137), [anon_sym_if] = ACTIONS(3137), [anon_sym_else] = ACTIONS(3137), [anon_sym_when] = ACTIONS(3137), @@ -161374,6 +161373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3137), [anon_sym_false] = ACTIONS(3137), [anon_sym_SQUOTE] = ACTIONS(3139), + [sym_null_literal] = ACTIONS(3137), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3139), [sym_safe_nav] = ACTIONS(4479), @@ -161456,30 +161456,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -161537,7 +161537,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4477), [anon_sym_AMP_AMP] = ACTIONS(3059), [anon_sym_PIPE_PIPE] = ACTIONS(3059), - [anon_sym_null] = ACTIONS(3057), [anon_sym_if] = ACTIONS(3057), [anon_sym_else] = ACTIONS(3057), [anon_sym_when] = ACTIONS(3057), @@ -161588,6 +161587,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3057), [anon_sym_false] = ACTIONS(3057), [anon_sym_SQUOTE] = ACTIONS(3059), + [sym_null_literal] = ACTIONS(3057), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3059), [sym_safe_nav] = ACTIONS(4479), @@ -161644,7 +161644,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4477), [anon_sym_AMP_AMP] = ACTIONS(3067), [anon_sym_PIPE_PIPE] = ACTIONS(3067), - [anon_sym_null] = ACTIONS(3065), [anon_sym_if] = ACTIONS(3065), [anon_sym_else] = ACTIONS(3065), [anon_sym_when] = ACTIONS(3065), @@ -161695,6 +161694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3065), [anon_sym_false] = ACTIONS(3065), [anon_sym_SQUOTE] = ACTIONS(3067), + [sym_null_literal] = ACTIONS(3065), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3067), [sym_safe_nav] = ACTIONS(4479), @@ -161751,7 +161751,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3143), [anon_sym_AMP_AMP] = ACTIONS(3143), [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_null] = ACTIONS(3141), [anon_sym_if] = ACTIONS(3141), [anon_sym_else] = ACTIONS(3141), [anon_sym_when] = ACTIONS(3141), @@ -161802,6 +161801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3141), [anon_sym_false] = ACTIONS(3141), [anon_sym_SQUOTE] = ACTIONS(3143), + [sym_null_literal] = ACTIONS(3141), [sym__backtick_identifier] = ACTIONS(3143), [sym__automatic_semicolon] = ACTIONS(3143), [sym_safe_nav] = ACTIONS(4479), @@ -161836,7 +161836,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4700), [anon_sym_AMP_AMP] = ACTIONS(4700), [anon_sym_PIPE_PIPE] = ACTIONS(4700), - [anon_sym_null] = ACTIONS(4698), [anon_sym_if] = ACTIONS(4698), [anon_sym_else] = ACTIONS(4698), [anon_sym_when] = ACTIONS(4698), @@ -161909,6 +161908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4698), [anon_sym_false] = ACTIONS(4698), [anon_sym_SQUOTE] = ACTIONS(4700), + [sym_null_literal] = ACTIONS(4698), [sym__backtick_identifier] = ACTIONS(4700), [sym__automatic_semicolon] = ACTIONS(4700), [sym_safe_nav] = ACTIONS(4700), @@ -161965,7 +161965,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3102), [anon_sym_AMP_AMP] = ACTIONS(3102), [anon_sym_PIPE_PIPE] = ACTIONS(3102), - [anon_sym_null] = ACTIONS(3100), [anon_sym_if] = ACTIONS(3100), [anon_sym_else] = ACTIONS(3100), [anon_sym_when] = ACTIONS(3100), @@ -162016,6 +162015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3100), [anon_sym_false] = ACTIONS(3100), [anon_sym_SQUOTE] = ACTIONS(3102), + [sym_null_literal] = ACTIONS(3100), [sym__backtick_identifier] = ACTIONS(3102), [sym__automatic_semicolon] = ACTIONS(3102), [sym_safe_nav] = ACTIONS(4479), @@ -162072,7 +162072,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3052), [anon_sym_AMP_AMP] = ACTIONS(3052), [anon_sym_PIPE_PIPE] = ACTIONS(3052), - [anon_sym_null] = ACTIONS(3050), [anon_sym_if] = ACTIONS(3050), [anon_sym_else] = ACTIONS(3050), [anon_sym_when] = ACTIONS(3050), @@ -162123,6 +162122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3050), [anon_sym_false] = ACTIONS(3050), [anon_sym_SQUOTE] = ACTIONS(3052), + [sym_null_literal] = ACTIONS(3050), [sym__backtick_identifier] = ACTIONS(3052), [sym__automatic_semicolon] = ACTIONS(3052), [sym_safe_nav] = ACTIONS(4479), @@ -162205,30 +162205,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -162286,7 +162286,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4477), [anon_sym_AMP_AMP] = ACTIONS(4622), [anon_sym_PIPE_PIPE] = ACTIONS(4624), - [anon_sym_null] = ACTIONS(3126), [anon_sym_if] = ACTIONS(3126), [anon_sym_else] = ACTIONS(3126), [anon_sym_when] = ACTIONS(3126), @@ -162337,6 +162336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3126), [anon_sym_false] = ACTIONS(3126), [anon_sym_SQUOTE] = ACTIONS(3128), + [sym_null_literal] = ACTIONS(3126), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3128), [sym_safe_nav] = ACTIONS(4479), @@ -162393,7 +162393,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4477), [anon_sym_AMP_AMP] = ACTIONS(4622), [anon_sym_PIPE_PIPE] = ACTIONS(4624), - [anon_sym_null] = ACTIONS(3096), [anon_sym_if] = ACTIONS(3096), [anon_sym_else] = ACTIONS(3096), [anon_sym_when] = ACTIONS(3096), @@ -162444,6 +162443,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3096), [anon_sym_false] = ACTIONS(3096), [anon_sym_SQUOTE] = ACTIONS(3098), + [sym_null_literal] = ACTIONS(3096), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3098), [sym_safe_nav] = ACTIONS(4479), @@ -162479,7 +162479,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4708), [anon_sym_AMP_AMP] = ACTIONS(4708), [anon_sym_PIPE_PIPE] = ACTIONS(4708), - [anon_sym_null] = ACTIONS(4706), [anon_sym_if] = ACTIONS(4706), [anon_sym_else] = ACTIONS(4706), [anon_sym_when] = ACTIONS(4706), @@ -162551,6 +162550,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4706), [anon_sym_false] = ACTIONS(4706), [anon_sym_SQUOTE] = ACTIONS(4708), + [sym_null_literal] = ACTIONS(4706), [sym__backtick_identifier] = ACTIONS(4708), [sym__automatic_semicolon] = ACTIONS(4708), [sym_safe_nav] = ACTIONS(4708), @@ -162607,7 +162607,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4477), [anon_sym_AMP_AMP] = ACTIONS(4622), [anon_sym_PIPE_PIPE] = ACTIONS(4624), - [anon_sym_null] = ACTIONS(3044), [anon_sym_if] = ACTIONS(3044), [anon_sym_else] = ACTIONS(3044), [anon_sym_when] = ACTIONS(3044), @@ -162658,6 +162657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3044), [anon_sym_false] = ACTIONS(3044), [anon_sym_SQUOTE] = ACTIONS(3046), + [sym_null_literal] = ACTIONS(3044), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3046), [sym_safe_nav] = ACTIONS(4479), @@ -162714,7 +162714,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4477), [anon_sym_AMP_AMP] = ACTIONS(4622), [anon_sym_PIPE_PIPE] = ACTIONS(4624), - [anon_sym_null] = ACTIONS(3122), [anon_sym_if] = ACTIONS(3122), [anon_sym_else] = ACTIONS(3122), [anon_sym_when] = ACTIONS(3122), @@ -162765,6 +162764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3122), [anon_sym_false] = ACTIONS(3122), [anon_sym_SQUOTE] = ACTIONS(3124), + [sym_null_literal] = ACTIONS(3122), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3124), [sym_safe_nav] = ACTIONS(4479), @@ -162821,7 +162821,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4477), [anon_sym_AMP_AMP] = ACTIONS(4622), [anon_sym_PIPE_PIPE] = ACTIONS(4624), - [anon_sym_null] = ACTIONS(3111), [anon_sym_if] = ACTIONS(3111), [anon_sym_else] = ACTIONS(3111), [anon_sym_when] = ACTIONS(3111), @@ -162872,6 +162871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3111), [anon_sym_false] = ACTIONS(3111), [anon_sym_SQUOTE] = ACTIONS(3113), + [sym_null_literal] = ACTIONS(3111), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3113), [sym_safe_nav] = ACTIONS(4479), @@ -162906,7 +162906,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4154), [anon_sym_AMP_AMP] = ACTIONS(4154), [anon_sym_PIPE_PIPE] = ACTIONS(4154), - [anon_sym_null] = ACTIONS(4152), [anon_sym_if] = ACTIONS(4152), [anon_sym_else] = ACTIONS(4152), [anon_sym_when] = ACTIONS(4152), @@ -162978,6 +162977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4152), [anon_sym_false] = ACTIONS(4152), [anon_sym_SQUOTE] = ACTIONS(4154), + [sym_null_literal] = ACTIONS(4152), [sym__backtick_identifier] = ACTIONS(4154), [sym__automatic_semicolon] = ACTIONS(4154), [sym_safe_nav] = ACTIONS(4154), @@ -163012,7 +163012,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4712), [anon_sym_AMP_AMP] = ACTIONS(4712), [anon_sym_PIPE_PIPE] = ACTIONS(4712), - [anon_sym_null] = ACTIONS(4710), [anon_sym_if] = ACTIONS(4710), [anon_sym_else] = ACTIONS(4710), [anon_sym_when] = ACTIONS(4710), @@ -163084,6 +163083,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4710), [anon_sym_false] = ACTIONS(4710), [anon_sym_SQUOTE] = ACTIONS(4712), + [sym_null_literal] = ACTIONS(4710), [sym__backtick_identifier] = ACTIONS(4712), [sym__automatic_semicolon] = ACTIONS(4712), [sym_safe_nav] = ACTIONS(4712), @@ -163118,7 +163118,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4716), [anon_sym_AMP_AMP] = ACTIONS(4716), [anon_sym_PIPE_PIPE] = ACTIONS(4716), - [anon_sym_null] = ACTIONS(4714), [anon_sym_if] = ACTIONS(4714), [anon_sym_else] = ACTIONS(4714), [anon_sym_when] = ACTIONS(4714), @@ -163190,6 +163189,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4714), [anon_sym_false] = ACTIONS(4714), [anon_sym_SQUOTE] = ACTIONS(4716), + [sym_null_literal] = ACTIONS(4714), [sym__backtick_identifier] = ACTIONS(4716), [sym__automatic_semicolon] = ACTIONS(4716), [sym_safe_nav] = ACTIONS(4716), @@ -163224,7 +163224,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4720), [anon_sym_AMP_AMP] = ACTIONS(4720), [anon_sym_PIPE_PIPE] = ACTIONS(4720), - [anon_sym_null] = ACTIONS(4718), [anon_sym_if] = ACTIONS(4718), [anon_sym_else] = ACTIONS(4718), [anon_sym_when] = ACTIONS(4718), @@ -163296,6 +163295,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4718), [anon_sym_false] = ACTIONS(4718), [anon_sym_SQUOTE] = ACTIONS(4720), + [sym_null_literal] = ACTIONS(4718), [sym__backtick_identifier] = ACTIONS(4720), [sym__automatic_semicolon] = ACTIONS(4720), [sym_safe_nav] = ACTIONS(4720), @@ -163330,7 +163330,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4453), [anon_sym_AMP_AMP] = ACTIONS(4453), [anon_sym_PIPE_PIPE] = ACTIONS(4453), - [anon_sym_null] = ACTIONS(4451), [anon_sym_if] = ACTIONS(4451), [anon_sym_else] = ACTIONS(4451), [anon_sym_when] = ACTIONS(4451), @@ -163402,6 +163401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4451), [anon_sym_false] = ACTIONS(4451), [anon_sym_SQUOTE] = ACTIONS(4453), + [sym_null_literal] = ACTIONS(4451), [sym__backtick_identifier] = ACTIONS(4453), [sym__automatic_semicolon] = ACTIONS(4453), [sym_safe_nav] = ACTIONS(4453), @@ -163436,7 +163436,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4724), [anon_sym_AMP_AMP] = ACTIONS(4724), [anon_sym_PIPE_PIPE] = ACTIONS(4724), - [anon_sym_null] = ACTIONS(4722), [anon_sym_if] = ACTIONS(4722), [anon_sym_else] = ACTIONS(4722), [anon_sym_when] = ACTIONS(4722), @@ -163508,6 +163507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4722), [anon_sym_false] = ACTIONS(4722), [anon_sym_SQUOTE] = ACTIONS(4724), + [sym_null_literal] = ACTIONS(4722), [sym__backtick_identifier] = ACTIONS(4724), [sym__automatic_semicolon] = ACTIONS(4724), [sym_safe_nav] = ACTIONS(4724), @@ -163542,7 +163542,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4728), [anon_sym_AMP_AMP] = ACTIONS(4728), [anon_sym_PIPE_PIPE] = ACTIONS(4728), - [anon_sym_null] = ACTIONS(4726), [anon_sym_if] = ACTIONS(4726), [anon_sym_else] = ACTIONS(4726), [anon_sym_when] = ACTIONS(4726), @@ -163614,6 +163613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4726), [anon_sym_false] = ACTIONS(4726), [anon_sym_SQUOTE] = ACTIONS(4728), + [sym_null_literal] = ACTIONS(4726), [sym__backtick_identifier] = ACTIONS(4728), [sym__automatic_semicolon] = ACTIONS(4728), [sym_safe_nav] = ACTIONS(4728), @@ -163648,7 +163648,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4418), [anon_sym_AMP_AMP] = ACTIONS(4418), [anon_sym_PIPE_PIPE] = ACTIONS(4418), - [anon_sym_null] = ACTIONS(4416), [anon_sym_if] = ACTIONS(4416), [anon_sym_else] = ACTIONS(4416), [anon_sym_when] = ACTIONS(4416), @@ -163720,6 +163719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4416), [anon_sym_false] = ACTIONS(4416), [anon_sym_SQUOTE] = ACTIONS(4418), + [sym_null_literal] = ACTIONS(4416), [sym__backtick_identifier] = ACTIONS(4418), [sym__automatic_semicolon] = ACTIONS(4418), [sym_safe_nav] = ACTIONS(4418), @@ -163754,7 +163754,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4258), [anon_sym_AMP_AMP] = ACTIONS(4258), [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), [anon_sym_if] = ACTIONS(4256), [anon_sym_else] = ACTIONS(4256), [anon_sym_when] = ACTIONS(4256), @@ -163826,6 +163825,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4256), [anon_sym_false] = ACTIONS(4256), [anon_sym_SQUOTE] = ACTIONS(4258), + [sym_null_literal] = ACTIONS(4256), [sym__backtick_identifier] = ACTIONS(4258), [sym__automatic_semicolon] = ACTIONS(4258), [sym_safe_nav] = ACTIONS(4258), @@ -163860,7 +163860,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4327), [anon_sym_AMP_AMP] = ACTIONS(4327), [anon_sym_PIPE_PIPE] = ACTIONS(4327), - [anon_sym_null] = ACTIONS(4325), [anon_sym_if] = ACTIONS(4325), [anon_sym_else] = ACTIONS(4325), [anon_sym_when] = ACTIONS(4325), @@ -163932,6 +163931,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4325), [anon_sym_false] = ACTIONS(4325), [anon_sym_SQUOTE] = ACTIONS(4327), + [sym_null_literal] = ACTIONS(4325), [sym__backtick_identifier] = ACTIONS(4327), [sym__automatic_semicolon] = ACTIONS(4327), [sym_safe_nav] = ACTIONS(4327), @@ -163966,7 +163966,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4734), [anon_sym_AMP_AMP] = ACTIONS(4734), [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [anon_sym_null] = ACTIONS(4732), [anon_sym_if] = ACTIONS(4732), [anon_sym_else] = ACTIONS(4732), [anon_sym_when] = ACTIONS(4732), @@ -164038,6 +164037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4732), [anon_sym_false] = ACTIONS(4732), [anon_sym_SQUOTE] = ACTIONS(4734), + [sym_null_literal] = ACTIONS(4732), [sym__backtick_identifier] = ACTIONS(4734), [sym__automatic_semicolon] = ACTIONS(4734), [sym_safe_nav] = ACTIONS(4734), @@ -164072,7 +164072,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4355), [anon_sym_AMP_AMP] = ACTIONS(4355), [anon_sym_PIPE_PIPE] = ACTIONS(4355), - [anon_sym_null] = ACTIONS(4353), [anon_sym_if] = ACTIONS(4353), [anon_sym_else] = ACTIONS(4353), [anon_sym_when] = ACTIONS(4353), @@ -164144,6 +164143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4353), [anon_sym_false] = ACTIONS(4353), [anon_sym_SQUOTE] = ACTIONS(4355), + [sym_null_literal] = ACTIONS(4353), [sym__backtick_identifier] = ACTIONS(4355), [sym__automatic_semicolon] = ACTIONS(4355), [sym_safe_nav] = ACTIONS(4355), @@ -164178,7 +164178,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4240), [anon_sym_AMP_AMP] = ACTIONS(4240), [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4238), [anon_sym_if] = ACTIONS(4238), [anon_sym_else] = ACTIONS(4238), [anon_sym_when] = ACTIONS(4238), @@ -164250,6 +164249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4238), [anon_sym_false] = ACTIONS(4238), [anon_sym_SQUOTE] = ACTIONS(4240), + [sym_null_literal] = ACTIONS(4238), [sym__backtick_identifier] = ACTIONS(4240), [sym__automatic_semicolon] = ACTIONS(4240), [sym_safe_nav] = ACTIONS(4240), @@ -164330,30 +164330,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -164390,7 +164390,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4772), [anon_sym_AMP_AMP] = ACTIONS(4772), [anon_sym_PIPE_PIPE] = ACTIONS(4772), - [anon_sym_null] = ACTIONS(4770), [anon_sym_if] = ACTIONS(4770), [anon_sym_else] = ACTIONS(4770), [anon_sym_when] = ACTIONS(4770), @@ -164462,6 +164461,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4770), [anon_sym_false] = ACTIONS(4770), [anon_sym_SQUOTE] = ACTIONS(4772), + [sym_null_literal] = ACTIONS(4770), [sym__backtick_identifier] = ACTIONS(4772), [sym__automatic_semicolon] = ACTIONS(4772), [sym_safe_nav] = ACTIONS(4772), @@ -164542,30 +164542,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -164602,7 +164602,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4778), [anon_sym_AMP_AMP] = ACTIONS(4778), [anon_sym_PIPE_PIPE] = ACTIONS(4778), - [anon_sym_null] = ACTIONS(4776), [anon_sym_if] = ACTIONS(4776), [anon_sym_else] = ACTIONS(4776), [anon_sym_when] = ACTIONS(4776), @@ -164674,6 +164673,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4776), [anon_sym_false] = ACTIONS(4776), [anon_sym_SQUOTE] = ACTIONS(4778), + [sym_null_literal] = ACTIONS(4776), [sym__backtick_identifier] = ACTIONS(4778), [sym__automatic_semicolon] = ACTIONS(4778), [sym_safe_nav] = ACTIONS(4778), @@ -164708,7 +164708,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4782), [anon_sym_AMP_AMP] = ACTIONS(4782), [anon_sym_PIPE_PIPE] = ACTIONS(4782), - [anon_sym_null] = ACTIONS(4780), [anon_sym_if] = ACTIONS(4780), [anon_sym_else] = ACTIONS(4780), [anon_sym_when] = ACTIONS(4780), @@ -164780,6 +164779,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4780), [anon_sym_false] = ACTIONS(4780), [anon_sym_SQUOTE] = ACTIONS(4782), + [sym_null_literal] = ACTIONS(4780), [sym__backtick_identifier] = ACTIONS(4782), [sym__automatic_semicolon] = ACTIONS(4782), [sym_safe_nav] = ACTIONS(4782), @@ -164860,30 +164860,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -164966,30 +164966,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -165026,7 +165026,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4790), [anon_sym_AMP_AMP] = ACTIONS(4790), [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [anon_sym_null] = ACTIONS(4788), [anon_sym_if] = ACTIONS(4788), [anon_sym_else] = ACTIONS(4788), [anon_sym_when] = ACTIONS(4788), @@ -165098,6 +165097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4788), [anon_sym_false] = ACTIONS(4788), [anon_sym_SQUOTE] = ACTIONS(4790), + [sym_null_literal] = ACTIONS(4788), [sym__backtick_identifier] = ACTIONS(4790), [sym__automatic_semicolon] = ACTIONS(4790), [sym_safe_nav] = ACTIONS(4790), @@ -165132,7 +165132,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4794), [anon_sym_AMP_AMP] = ACTIONS(4794), [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [anon_sym_null] = ACTIONS(4792), [anon_sym_if] = ACTIONS(4792), [anon_sym_else] = ACTIONS(4792), [anon_sym_when] = ACTIONS(4792), @@ -165204,6 +165203,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4792), [anon_sym_false] = ACTIONS(4792), [anon_sym_SQUOTE] = ACTIONS(4794), + [sym_null_literal] = ACTIONS(4792), [sym__backtick_identifier] = ACTIONS(4794), [sym__automatic_semicolon] = ACTIONS(4794), [sym_safe_nav] = ACTIONS(4794), @@ -165284,30 +165284,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -165344,7 +165344,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4220), [anon_sym_AMP_AMP] = ACTIONS(4220), [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(4214), [anon_sym_if] = ACTIONS(4214), [anon_sym_else] = ACTIONS(4222), [anon_sym_when] = ACTIONS(4214), @@ -165416,6 +165415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4214), [anon_sym_false] = ACTIONS(4214), [anon_sym_SQUOTE] = ACTIONS(4217), + [sym_null_literal] = ACTIONS(4214), [sym__backtick_identifier] = ACTIONS(4217), [sym__automatic_semicolon] = ACTIONS(4220), [sym_safe_nav] = ACTIONS(4220), @@ -165450,7 +165450,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4804), [anon_sym_AMP_AMP] = ACTIONS(4804), [anon_sym_PIPE_PIPE] = ACTIONS(4804), - [anon_sym_null] = ACTIONS(4802), [anon_sym_if] = ACTIONS(4802), [anon_sym_else] = ACTIONS(4802), [anon_sym_when] = ACTIONS(4802), @@ -165522,6 +165521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4802), [anon_sym_false] = ACTIONS(4802), [anon_sym_SQUOTE] = ACTIONS(4804), + [sym_null_literal] = ACTIONS(4802), [sym__backtick_identifier] = ACTIONS(4804), [sym__automatic_semicolon] = ACTIONS(4804), [sym_safe_nav] = ACTIONS(4804), @@ -165556,7 +165556,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4188), [anon_sym_AMP_AMP] = ACTIONS(4188), [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_null] = ACTIONS(4182), [anon_sym_if] = ACTIONS(4182), [anon_sym_else] = ACTIONS(4190), [anon_sym_when] = ACTIONS(4182), @@ -165628,6 +165627,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4182), [anon_sym_false] = ACTIONS(4182), [anon_sym_SQUOTE] = ACTIONS(4185), + [sym_null_literal] = ACTIONS(4182), [sym__backtick_identifier] = ACTIONS(4185), [sym__automatic_semicolon] = ACTIONS(4188), [sym_safe_nav] = ACTIONS(4188), @@ -165662,7 +165662,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4812), [anon_sym_AMP_AMP] = ACTIONS(4812), [anon_sym_PIPE_PIPE] = ACTIONS(4812), - [anon_sym_null] = ACTIONS(4810), [anon_sym_if] = ACTIONS(4810), [anon_sym_else] = ACTIONS(4810), [anon_sym_when] = ACTIONS(4810), @@ -165734,6 +165733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4810), [anon_sym_false] = ACTIONS(4810), [anon_sym_SQUOTE] = ACTIONS(4812), + [sym_null_literal] = ACTIONS(4810), [sym__backtick_identifier] = ACTIONS(4812), [sym__automatic_semicolon] = ACTIONS(4812), [sym_safe_nav] = ACTIONS(4812), @@ -165768,7 +165768,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4816), [anon_sym_AMP_AMP] = ACTIONS(4816), [anon_sym_PIPE_PIPE] = ACTIONS(4816), - [anon_sym_null] = ACTIONS(4814), [anon_sym_if] = ACTIONS(4814), [anon_sym_else] = ACTIONS(4814), [anon_sym_when] = ACTIONS(4814), @@ -165840,6 +165839,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4814), [anon_sym_false] = ACTIONS(4814), [anon_sym_SQUOTE] = ACTIONS(4816), + [sym_null_literal] = ACTIONS(4814), [sym__backtick_identifier] = ACTIONS(4816), [sym__automatic_semicolon] = ACTIONS(4816), [sym_safe_nav] = ACTIONS(4816), @@ -165874,7 +165874,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4220), [anon_sym_AMP_AMP] = ACTIONS(4220), [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(4222), [anon_sym_when] = ACTIONS(3938), @@ -165946,6 +165945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(4217), [sym__automatic_semicolon] = ACTIONS(4220), [sym_safe_nav] = ACTIONS(4220), @@ -165980,7 +165980,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4824), [anon_sym_AMP_AMP] = ACTIONS(4824), [anon_sym_PIPE_PIPE] = ACTIONS(4824), - [anon_sym_null] = ACTIONS(4822), [anon_sym_if] = ACTIONS(4822), [anon_sym_else] = ACTIONS(4822), [anon_sym_when] = ACTIONS(4822), @@ -166052,6 +166051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4822), [anon_sym_false] = ACTIONS(4822), [anon_sym_SQUOTE] = ACTIONS(4824), + [sym_null_literal] = ACTIONS(4822), [sym__backtick_identifier] = ACTIONS(4824), [sym__automatic_semicolon] = ACTIONS(4824), [sym_safe_nav] = ACTIONS(4824), @@ -166086,7 +166086,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4198), [anon_sym_AMP_AMP] = ACTIONS(4198), [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), [anon_sym_if] = ACTIONS(4196), [anon_sym_else] = ACTIONS(4196), [anon_sym_when] = ACTIONS(4196), @@ -166158,6 +166157,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4196), [anon_sym_false] = ACTIONS(4196), [anon_sym_SQUOTE] = ACTIONS(4198), + [sym_null_literal] = ACTIONS(4196), [sym__backtick_identifier] = ACTIONS(4198), [sym__automatic_semicolon] = ACTIONS(4198), [sym_safe_nav] = ACTIONS(4198), @@ -166192,7 +166192,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4188), [anon_sym_AMP_AMP] = ACTIONS(4188), [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(4190), [anon_sym_when] = ACTIONS(3938), @@ -166264,6 +166263,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(4185), [sym__automatic_semicolon] = ACTIONS(4188), [sym_safe_nav] = ACTIONS(4188), @@ -166344,30 +166344,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -166404,7 +166404,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4834), [anon_sym_AMP_AMP] = ACTIONS(4834), [anon_sym_PIPE_PIPE] = ACTIONS(4834), - [anon_sym_null] = ACTIONS(4832), [anon_sym_if] = ACTIONS(4832), [anon_sym_else] = ACTIONS(4832), [anon_sym_when] = ACTIONS(4832), @@ -166476,6 +166475,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4832), [anon_sym_false] = ACTIONS(4832), [anon_sym_SQUOTE] = ACTIONS(4834), + [sym_null_literal] = ACTIONS(4832), [sym__backtick_identifier] = ACTIONS(4834), [sym__automatic_semicolon] = ACTIONS(4834), [sym_safe_nav] = ACTIONS(4834), @@ -166510,7 +166510,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4220), [anon_sym_AMP_AMP] = ACTIONS(4220), [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(4222), [anon_sym_if] = ACTIONS(4222), [anon_sym_else] = ACTIONS(4222), [anon_sym_when] = ACTIONS(4222), @@ -166582,6 +166581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4222), [anon_sym_false] = ACTIONS(4222), [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_null_literal] = ACTIONS(4222), [sym__backtick_identifier] = ACTIONS(4220), [sym__automatic_semicolon] = ACTIONS(4220), [sym_safe_nav] = ACTIONS(4220), @@ -166616,7 +166616,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4188), [anon_sym_AMP_AMP] = ACTIONS(4188), [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_null] = ACTIONS(4190), [anon_sym_if] = ACTIONS(4190), [anon_sym_else] = ACTIONS(4190), [anon_sym_when] = ACTIONS(4190), @@ -166688,6 +166687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4190), [anon_sym_false] = ACTIONS(4190), [anon_sym_SQUOTE] = ACTIONS(4188), + [sym_null_literal] = ACTIONS(4190), [sym__backtick_identifier] = ACTIONS(4188), [sym__automatic_semicolon] = ACTIONS(4188), [sym_safe_nav] = ACTIONS(4188), @@ -166722,7 +166722,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4842), [anon_sym_AMP_AMP] = ACTIONS(4842), [anon_sym_PIPE_PIPE] = ACTIONS(4842), - [anon_sym_null] = ACTIONS(4840), [anon_sym_if] = ACTIONS(4840), [anon_sym_else] = ACTIONS(4840), [anon_sym_when] = ACTIONS(4840), @@ -166794,6 +166793,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4840), [anon_sym_false] = ACTIONS(4840), [anon_sym_SQUOTE] = ACTIONS(4842), + [sym_null_literal] = ACTIONS(4840), [sym__backtick_identifier] = ACTIONS(4842), [sym__automatic_semicolon] = ACTIONS(4842), [sym_safe_nav] = ACTIONS(4842), @@ -166828,7 +166828,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4848), [anon_sym_AMP_AMP] = ACTIONS(4848), [anon_sym_PIPE_PIPE] = ACTIONS(4848), - [anon_sym_null] = ACTIONS(4846), [anon_sym_if] = ACTIONS(4846), [anon_sym_else] = ACTIONS(4846), [anon_sym_when] = ACTIONS(4846), @@ -166900,6 +166899,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4846), [anon_sym_false] = ACTIONS(4846), [anon_sym_SQUOTE] = ACTIONS(4848), + [sym_null_literal] = ACTIONS(4846), [sym__backtick_identifier] = ACTIONS(4848), [sym__automatic_semicolon] = ACTIONS(4848), [sym_safe_nav] = ACTIONS(4848), @@ -166934,7 +166934,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4852), [anon_sym_AMP_AMP] = ACTIONS(4852), [anon_sym_PIPE_PIPE] = ACTIONS(4852), - [anon_sym_null] = ACTIONS(4850), [anon_sym_if] = ACTIONS(4850), [anon_sym_else] = ACTIONS(4850), [anon_sym_when] = ACTIONS(4850), @@ -167006,6 +167005,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4850), [anon_sym_false] = ACTIONS(4850), [anon_sym_SQUOTE] = ACTIONS(4852), + [sym_null_literal] = ACTIONS(4850), [sym__backtick_identifier] = ACTIONS(4852), [sym__automatic_semicolon] = ACTIONS(4852), [sym_safe_nav] = ACTIONS(4852), @@ -167040,7 +167040,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4858), [anon_sym_AMP_AMP] = ACTIONS(4858), [anon_sym_PIPE_PIPE] = ACTIONS(4858), - [anon_sym_null] = ACTIONS(4856), [anon_sym_if] = ACTIONS(4856), [anon_sym_else] = ACTIONS(4860), [anon_sym_when] = ACTIONS(4856), @@ -167112,6 +167111,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4856), [anon_sym_false] = ACTIONS(4856), [anon_sym_SQUOTE] = ACTIONS(4858), + [sym_null_literal] = ACTIONS(4856), [sym__backtick_identifier] = ACTIONS(4858), [sym__automatic_semicolon] = ACTIONS(4858), [sym_safe_nav] = ACTIONS(4858), @@ -167146,7 +167146,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4858), [anon_sym_AMP_AMP] = ACTIONS(4858), [anon_sym_PIPE_PIPE] = ACTIONS(4858), - [anon_sym_null] = ACTIONS(4856), [anon_sym_if] = ACTIONS(4856), [anon_sym_else] = ACTIONS(4860), [anon_sym_when] = ACTIONS(4856), @@ -167218,6 +167217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4856), [anon_sym_false] = ACTIONS(4856), [anon_sym_SQUOTE] = ACTIONS(4858), + [sym_null_literal] = ACTIONS(4856), [sym__backtick_identifier] = ACTIONS(4858), [sym__automatic_semicolon] = ACTIONS(4858), [sym_safe_nav] = ACTIONS(4858), @@ -167252,7 +167252,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3067), [anon_sym_AMP_AMP] = ACTIONS(3067), [anon_sym_PIPE_PIPE] = ACTIONS(3067), - [anon_sym_null] = ACTIONS(3065), [anon_sym_if] = ACTIONS(3065), [anon_sym_else] = ACTIONS(3065), [anon_sym_when] = ACTIONS(3065), @@ -167324,6 +167323,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3065), [anon_sym_false] = ACTIONS(3065), [anon_sym_SQUOTE] = ACTIONS(3067), + [sym_null_literal] = ACTIONS(3065), [sym__backtick_identifier] = ACTIONS(3067), [sym__automatic_semicolon] = ACTIONS(3067), [sym_safe_nav] = ACTIONS(3067), @@ -167358,7 +167358,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4866), [anon_sym_AMP_AMP] = ACTIONS(4866), [anon_sym_PIPE_PIPE] = ACTIONS(4866), - [anon_sym_null] = ACTIONS(4864), [anon_sym_if] = ACTIONS(4864), [anon_sym_else] = ACTIONS(4864), [anon_sym_when] = ACTIONS(4864), @@ -167430,6 +167429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4864), [anon_sym_false] = ACTIONS(4864), [anon_sym_SQUOTE] = ACTIONS(4866), + [sym_null_literal] = ACTIONS(4864), [sym__backtick_identifier] = ACTIONS(4866), [sym__automatic_semicolon] = ACTIONS(4866), [sym_safe_nav] = ACTIONS(4866), @@ -167464,7 +167464,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4870), [anon_sym_AMP_AMP] = ACTIONS(4870), [anon_sym_PIPE_PIPE] = ACTIONS(4870), - [anon_sym_null] = ACTIONS(4868), [anon_sym_if] = ACTIONS(4868), [anon_sym_else] = ACTIONS(4868), [anon_sym_when] = ACTIONS(4868), @@ -167536,6 +167535,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4868), [anon_sym_false] = ACTIONS(4868), [anon_sym_SQUOTE] = ACTIONS(4870), + [sym_null_literal] = ACTIONS(4868), [sym__backtick_identifier] = ACTIONS(4870), [sym__automatic_semicolon] = ACTIONS(4870), [sym_safe_nav] = ACTIONS(4870), @@ -167570,7 +167570,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4874), [anon_sym_AMP_AMP] = ACTIONS(4874), [anon_sym_PIPE_PIPE] = ACTIONS(4874), - [anon_sym_null] = ACTIONS(4872), [anon_sym_if] = ACTIONS(4872), [anon_sym_else] = ACTIONS(4872), [anon_sym_when] = ACTIONS(4872), @@ -167642,6 +167641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4872), [anon_sym_false] = ACTIONS(4872), [anon_sym_SQUOTE] = ACTIONS(4874), + [sym_null_literal] = ACTIONS(4872), [sym__backtick_identifier] = ACTIONS(4874), [sym__automatic_semicolon] = ACTIONS(4874), [sym_safe_nav] = ACTIONS(4874), @@ -167676,7 +167676,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4878), [anon_sym_AMP_AMP] = ACTIONS(4878), [anon_sym_PIPE_PIPE] = ACTIONS(4878), - [anon_sym_null] = ACTIONS(4876), [anon_sym_if] = ACTIONS(4876), [anon_sym_else] = ACTIONS(4876), [anon_sym_when] = ACTIONS(4876), @@ -167748,6 +167747,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4876), [anon_sym_false] = ACTIONS(4876), [anon_sym_SQUOTE] = ACTIONS(4878), + [sym_null_literal] = ACTIONS(4876), [sym__backtick_identifier] = ACTIONS(4878), [sym__automatic_semicolon] = ACTIONS(4878), [sym_safe_nav] = ACTIONS(4878), @@ -167782,7 +167782,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4882), [anon_sym_AMP_AMP] = ACTIONS(4882), [anon_sym_PIPE_PIPE] = ACTIONS(4882), - [anon_sym_null] = ACTIONS(4880), [anon_sym_if] = ACTIONS(4880), [anon_sym_else] = ACTIONS(4880), [anon_sym_when] = ACTIONS(4880), @@ -167854,6 +167853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4880), [anon_sym_false] = ACTIONS(4880), [anon_sym_SQUOTE] = ACTIONS(4882), + [sym_null_literal] = ACTIONS(4880), [sym__backtick_identifier] = ACTIONS(4882), [sym__automatic_semicolon] = ACTIONS(4882), [sym_safe_nav] = ACTIONS(4882), @@ -167888,7 +167888,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3934), [anon_sym_AMP_AMP] = ACTIONS(3934), [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [anon_sym_null] = ACTIONS(3932), [anon_sym_if] = ACTIONS(3932), [anon_sym_else] = ACTIONS(3932), [anon_sym_when] = ACTIONS(3932), @@ -167960,6 +167959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3932), [anon_sym_false] = ACTIONS(3932), [anon_sym_SQUOTE] = ACTIONS(3934), + [sym_null_literal] = ACTIONS(3932), [sym__backtick_identifier] = ACTIONS(3934), [sym__automatic_semicolon] = ACTIONS(3934), [sym_safe_nav] = ACTIONS(3934), @@ -167994,7 +167994,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4345), [anon_sym_AMP_AMP] = ACTIONS(4345), [anon_sym_PIPE_PIPE] = ACTIONS(4345), - [anon_sym_null] = ACTIONS(4343), [anon_sym_if] = ACTIONS(4343), [anon_sym_else] = ACTIONS(4343), [anon_sym_when] = ACTIONS(4343), @@ -168066,6 +168065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4343), [anon_sym_false] = ACTIONS(4343), [anon_sym_SQUOTE] = ACTIONS(4345), + [sym_null_literal] = ACTIONS(4343), [sym__backtick_identifier] = ACTIONS(4345), [sym__automatic_semicolon] = ACTIONS(4345), [sym_safe_nav] = ACTIONS(4345), @@ -168100,7 +168100,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4333), [anon_sym_AMP_AMP] = ACTIONS(4333), [anon_sym_PIPE_PIPE] = ACTIONS(4333), - [anon_sym_null] = ACTIONS(4331), [anon_sym_if] = ACTIONS(4331), [anon_sym_else] = ACTIONS(4331), [anon_sym_when] = ACTIONS(4331), @@ -168172,6 +168171,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4331), [anon_sym_false] = ACTIONS(4331), [anon_sym_SQUOTE] = ACTIONS(4333), + [sym_null_literal] = ACTIONS(4331), [sym__backtick_identifier] = ACTIONS(4333), [sym__automatic_semicolon] = ACTIONS(4333), [sym_safe_nav] = ACTIONS(4333), @@ -168206,7 +168206,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4345), [anon_sym_AMP_AMP] = ACTIONS(4345), [anon_sym_PIPE_PIPE] = ACTIONS(4345), - [anon_sym_null] = ACTIONS(4343), [anon_sym_if] = ACTIONS(4343), [anon_sym_else] = ACTIONS(4343), [anon_sym_when] = ACTIONS(4343), @@ -168278,6 +168277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4343), [anon_sym_false] = ACTIONS(4343), [anon_sym_SQUOTE] = ACTIONS(4345), + [sym_null_literal] = ACTIONS(4343), [sym__backtick_identifier] = ACTIONS(4345), [sym__automatic_semicolon] = ACTIONS(4345), [sym_safe_nav] = ACTIONS(4345), @@ -168312,7 +168312,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4333), [anon_sym_AMP_AMP] = ACTIONS(4333), [anon_sym_PIPE_PIPE] = ACTIONS(4333), - [anon_sym_null] = ACTIONS(4331), [anon_sym_if] = ACTIONS(4331), [anon_sym_else] = ACTIONS(4331), [anon_sym_when] = ACTIONS(4331), @@ -168384,6 +168383,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4331), [anon_sym_false] = ACTIONS(4331), [anon_sym_SQUOTE] = ACTIONS(4333), + [sym_null_literal] = ACTIONS(4331), [sym__backtick_identifier] = ACTIONS(4333), [sym__automatic_semicolon] = ACTIONS(4333), [sym_safe_nav] = ACTIONS(4333), @@ -168418,7 +168418,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4894), [anon_sym_AMP_AMP] = ACTIONS(4894), [anon_sym_PIPE_PIPE] = ACTIONS(4894), - [anon_sym_null] = ACTIONS(4892), [anon_sym_if] = ACTIONS(4892), [anon_sym_else] = ACTIONS(4892), [anon_sym_when] = ACTIONS(4892), @@ -168490,6 +168489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4892), [anon_sym_false] = ACTIONS(4892), [anon_sym_SQUOTE] = ACTIONS(4894), + [sym_null_literal] = ACTIONS(4892), [sym__backtick_identifier] = ACTIONS(4894), [sym__automatic_semicolon] = ACTIONS(4894), [sym_safe_nav] = ACTIONS(4894), @@ -168524,7 +168524,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4898), [anon_sym_AMP_AMP] = ACTIONS(4898), [anon_sym_PIPE_PIPE] = ACTIONS(4898), - [anon_sym_null] = ACTIONS(4896), [anon_sym_if] = ACTIONS(4896), [anon_sym_else] = ACTIONS(4896), [anon_sym_when] = ACTIONS(4896), @@ -168596,6 +168595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4896), [anon_sym_false] = ACTIONS(4896), [anon_sym_SQUOTE] = ACTIONS(4898), + [sym_null_literal] = ACTIONS(4896), [sym__backtick_identifier] = ACTIONS(4898), [sym__automatic_semicolon] = ACTIONS(4898), [sym_safe_nav] = ACTIONS(4898), @@ -168630,7 +168630,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4902), [anon_sym_AMP_AMP] = ACTIONS(4902), [anon_sym_PIPE_PIPE] = ACTIONS(4902), - [anon_sym_null] = ACTIONS(4900), [anon_sym_if] = ACTIONS(4900), [anon_sym_else] = ACTIONS(4900), [anon_sym_when] = ACTIONS(4900), @@ -168702,6 +168701,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4900), [anon_sym_false] = ACTIONS(4900), [anon_sym_SQUOTE] = ACTIONS(4902), + [sym_null_literal] = ACTIONS(4900), [sym__backtick_identifier] = ACTIONS(4902), [sym__automatic_semicolon] = ACTIONS(4902), [sym_safe_nav] = ACTIONS(4902), @@ -168736,7 +168736,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4906), [anon_sym_AMP_AMP] = ACTIONS(4906), [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_null] = ACTIONS(4904), [anon_sym_if] = ACTIONS(4904), [anon_sym_else] = ACTIONS(4904), [anon_sym_when] = ACTIONS(4904), @@ -168808,6 +168807,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4904), [anon_sym_false] = ACTIONS(4904), [anon_sym_SQUOTE] = ACTIONS(4906), + [sym_null_literal] = ACTIONS(4904), [sym__backtick_identifier] = ACTIONS(4906), [sym__automatic_semicolon] = ACTIONS(4906), [sym_safe_nav] = ACTIONS(4906), @@ -168842,7 +168842,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4046), [anon_sym_AMP_AMP] = ACTIONS(4046), [anon_sym_PIPE_PIPE] = ACTIONS(4046), - [anon_sym_null] = ACTIONS(4044), [anon_sym_if] = ACTIONS(4044), [anon_sym_else] = ACTIONS(4044), [anon_sym_when] = ACTIONS(4044), @@ -168914,6 +168913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4044), [anon_sym_false] = ACTIONS(4044), [anon_sym_SQUOTE] = ACTIONS(4046), + [sym_null_literal] = ACTIONS(4044), [sym__backtick_identifier] = ACTIONS(4046), [sym__automatic_semicolon] = ACTIONS(4046), [sym_safe_nav] = ACTIONS(4046), @@ -168948,7 +168948,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4910), [anon_sym_AMP_AMP] = ACTIONS(4910), [anon_sym_PIPE_PIPE] = ACTIONS(4910), - [anon_sym_null] = ACTIONS(4908), [anon_sym_if] = ACTIONS(4908), [anon_sym_else] = ACTIONS(4908), [anon_sym_when] = ACTIONS(4908), @@ -169020,6 +169019,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4908), [anon_sym_false] = ACTIONS(4908), [anon_sym_SQUOTE] = ACTIONS(4910), + [sym_null_literal] = ACTIONS(4908), [sym__backtick_identifier] = ACTIONS(4910), [sym__automatic_semicolon] = ACTIONS(4910), [sym_safe_nav] = ACTIONS(4910), @@ -169054,7 +169054,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4914), [anon_sym_AMP_AMP] = ACTIONS(4914), [anon_sym_PIPE_PIPE] = ACTIONS(4914), - [anon_sym_null] = ACTIONS(4912), [anon_sym_if] = ACTIONS(4912), [anon_sym_else] = ACTIONS(4912), [anon_sym_when] = ACTIONS(4912), @@ -169126,6 +169125,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4912), [anon_sym_false] = ACTIONS(4912), [anon_sym_SQUOTE] = ACTIONS(4914), + [sym_null_literal] = ACTIONS(4912), [sym__backtick_identifier] = ACTIONS(4914), [sym__automatic_semicolon] = ACTIONS(4914), [sym_safe_nav] = ACTIONS(4914), @@ -169160,7 +169160,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4918), [anon_sym_AMP_AMP] = ACTIONS(4918), [anon_sym_PIPE_PIPE] = ACTIONS(4918), - [anon_sym_null] = ACTIONS(4916), [anon_sym_if] = ACTIONS(4916), [anon_sym_else] = ACTIONS(4916), [anon_sym_when] = ACTIONS(4916), @@ -169232,6 +169231,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4916), [anon_sym_false] = ACTIONS(4916), [anon_sym_SQUOTE] = ACTIONS(4918), + [sym_null_literal] = ACTIONS(4916), [sym__backtick_identifier] = ACTIONS(4918), [sym__automatic_semicolon] = ACTIONS(4918), [sym_safe_nav] = ACTIONS(4918), @@ -169266,7 +169266,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4922), [anon_sym_AMP_AMP] = ACTIONS(4922), [anon_sym_PIPE_PIPE] = ACTIONS(4922), - [anon_sym_null] = ACTIONS(4920), [anon_sym_if] = ACTIONS(4920), [anon_sym_else] = ACTIONS(4920), [anon_sym_when] = ACTIONS(4920), @@ -169338,6 +169337,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4920), [anon_sym_false] = ACTIONS(4920), [anon_sym_SQUOTE] = ACTIONS(4922), + [sym_null_literal] = ACTIONS(4920), [sym__backtick_identifier] = ACTIONS(4922), [sym__automatic_semicolon] = ACTIONS(4922), [sym_safe_nav] = ACTIONS(4922), @@ -169372,7 +169372,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4926), [anon_sym_AMP_AMP] = ACTIONS(4926), [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_null] = ACTIONS(4924), [anon_sym_if] = ACTIONS(4924), [anon_sym_else] = ACTIONS(4924), [anon_sym_when] = ACTIONS(4924), @@ -169444,6 +169443,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4924), [anon_sym_false] = ACTIONS(4924), [anon_sym_SQUOTE] = ACTIONS(4926), + [sym_null_literal] = ACTIONS(4924), [sym__backtick_identifier] = ACTIONS(4926), [sym__automatic_semicolon] = ACTIONS(4926), [sym_safe_nav] = ACTIONS(4926), @@ -169478,7 +169478,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4886), [anon_sym_AMP_AMP] = ACTIONS(4886), [anon_sym_PIPE_PIPE] = ACTIONS(4886), - [anon_sym_null] = ACTIONS(4884), [anon_sym_if] = ACTIONS(4884), [anon_sym_else] = ACTIONS(4884), [anon_sym_when] = ACTIONS(4884), @@ -169550,6 +169549,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4884), [anon_sym_false] = ACTIONS(4884), [anon_sym_SQUOTE] = ACTIONS(4886), + [sym_null_literal] = ACTIONS(4884), [sym__backtick_identifier] = ACTIONS(4886), [sym__automatic_semicolon] = ACTIONS(4886), [sym_safe_nav] = ACTIONS(4886), @@ -169584,7 +169584,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4930), [anon_sym_AMP_AMP] = ACTIONS(4930), [anon_sym_PIPE_PIPE] = ACTIONS(4930), - [anon_sym_null] = ACTIONS(4928), [anon_sym_if] = ACTIONS(4928), [anon_sym_else] = ACTIONS(4928), [anon_sym_when] = ACTIONS(4928), @@ -169656,6 +169655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4928), [anon_sym_false] = ACTIONS(4928), [anon_sym_SQUOTE] = ACTIONS(4930), + [sym_null_literal] = ACTIONS(4928), [sym__backtick_identifier] = ACTIONS(4930), [sym__automatic_semicolon] = ACTIONS(4930), [sym_safe_nav] = ACTIONS(4930), @@ -169690,7 +169690,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4934), [anon_sym_AMP_AMP] = ACTIONS(4934), [anon_sym_PIPE_PIPE] = ACTIONS(4934), - [anon_sym_null] = ACTIONS(4932), [anon_sym_if] = ACTIONS(4932), [anon_sym_else] = ACTIONS(4932), [anon_sym_when] = ACTIONS(4932), @@ -169762,6 +169761,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4932), [anon_sym_false] = ACTIONS(4932), [anon_sym_SQUOTE] = ACTIONS(4934), + [sym_null_literal] = ACTIONS(4932), [sym__backtick_identifier] = ACTIONS(4934), [sym__automatic_semicolon] = ACTIONS(4934), [sym_safe_nav] = ACTIONS(4934), @@ -169796,7 +169796,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3098), [anon_sym_AMP_AMP] = ACTIONS(3098), [anon_sym_PIPE_PIPE] = ACTIONS(3098), - [anon_sym_null] = ACTIONS(3096), [anon_sym_if] = ACTIONS(3096), [anon_sym_else] = ACTIONS(3096), [anon_sym_when] = ACTIONS(3096), @@ -169868,6 +169867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3096), [anon_sym_false] = ACTIONS(3096), [anon_sym_SQUOTE] = ACTIONS(3098), + [sym_null_literal] = ACTIONS(3096), [sym__backtick_identifier] = ACTIONS(3098), [sym__automatic_semicolon] = ACTIONS(3098), [sym_safe_nav] = ACTIONS(3098), @@ -169902,7 +169902,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4938), [anon_sym_AMP_AMP] = ACTIONS(4938), [anon_sym_PIPE_PIPE] = ACTIONS(4938), - [anon_sym_null] = ACTIONS(4936), [anon_sym_if] = ACTIONS(4936), [anon_sym_else] = ACTIONS(4936), [anon_sym_when] = ACTIONS(4936), @@ -169974,6 +169973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4936), [anon_sym_false] = ACTIONS(4936), [anon_sym_SQUOTE] = ACTIONS(4938), + [sym_null_literal] = ACTIONS(4936), [sym__backtick_identifier] = ACTIONS(4938), [sym__automatic_semicolon] = ACTIONS(4938), [sym_safe_nav] = ACTIONS(4938), @@ -170008,7 +170008,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4942), [anon_sym_AMP_AMP] = ACTIONS(4942), [anon_sym_PIPE_PIPE] = ACTIONS(4942), - [anon_sym_null] = ACTIONS(4940), [anon_sym_if] = ACTIONS(4940), [anon_sym_else] = ACTIONS(4940), [anon_sym_when] = ACTIONS(4940), @@ -170080,6 +170079,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4940), [anon_sym_false] = ACTIONS(4940), [anon_sym_SQUOTE] = ACTIONS(4942), + [sym_null_literal] = ACTIONS(4940), [sym__backtick_identifier] = ACTIONS(4942), [sym__automatic_semicolon] = ACTIONS(4942), [sym_safe_nav] = ACTIONS(4942), @@ -170114,7 +170114,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4946), [anon_sym_AMP_AMP] = ACTIONS(4946), [anon_sym_PIPE_PIPE] = ACTIONS(4946), - [anon_sym_null] = ACTIONS(4944), [anon_sym_if] = ACTIONS(4944), [anon_sym_else] = ACTIONS(4944), [anon_sym_when] = ACTIONS(4944), @@ -170186,6 +170185,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4944), [anon_sym_false] = ACTIONS(4944), [anon_sym_SQUOTE] = ACTIONS(4946), + [sym_null_literal] = ACTIONS(4944), [sym__backtick_identifier] = ACTIONS(4946), [sym__automatic_semicolon] = ACTIONS(4946), [sym_safe_nav] = ACTIONS(4946), @@ -170220,7 +170220,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4002), [anon_sym_AMP_AMP] = ACTIONS(4002), [anon_sym_PIPE_PIPE] = ACTIONS(4002), - [anon_sym_null] = ACTIONS(4000), [anon_sym_if] = ACTIONS(4000), [anon_sym_else] = ACTIONS(4000), [anon_sym_when] = ACTIONS(4000), @@ -170292,6 +170291,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4000), [anon_sym_false] = ACTIONS(4000), [anon_sym_SQUOTE] = ACTIONS(4002), + [sym_null_literal] = ACTIONS(4000), [sym__backtick_identifier] = ACTIONS(4002), [sym__automatic_semicolon] = ACTIONS(4002), [sym_safe_nav] = ACTIONS(4002), @@ -170326,7 +170326,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4950), [anon_sym_AMP_AMP] = ACTIONS(4950), [anon_sym_PIPE_PIPE] = ACTIONS(4950), - [anon_sym_null] = ACTIONS(4948), [anon_sym_if] = ACTIONS(4948), [anon_sym_else] = ACTIONS(4948), [anon_sym_when] = ACTIONS(4948), @@ -170398,6 +170397,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4948), [anon_sym_false] = ACTIONS(4948), [anon_sym_SQUOTE] = ACTIONS(4950), + [sym_null_literal] = ACTIONS(4948), [sym__backtick_identifier] = ACTIONS(4950), [sym__automatic_semicolon] = ACTIONS(4950), [sym_safe_nav] = ACTIONS(4950), @@ -170432,7 +170432,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4954), [anon_sym_AMP_AMP] = ACTIONS(4954), [anon_sym_PIPE_PIPE] = ACTIONS(4954), - [anon_sym_null] = ACTIONS(4952), [anon_sym_if] = ACTIONS(4952), [anon_sym_else] = ACTIONS(4952), [anon_sym_when] = ACTIONS(4952), @@ -170504,6 +170503,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4952), [anon_sym_false] = ACTIONS(4952), [anon_sym_SQUOTE] = ACTIONS(4954), + [sym_null_literal] = ACTIONS(4952), [sym__backtick_identifier] = ACTIONS(4954), [sym__automatic_semicolon] = ACTIONS(4954), [sym_safe_nav] = ACTIONS(4954), @@ -170538,7 +170538,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4958), [anon_sym_AMP_AMP] = ACTIONS(4958), [anon_sym_PIPE_PIPE] = ACTIONS(4958), - [anon_sym_null] = ACTIONS(4956), [anon_sym_if] = ACTIONS(4956), [anon_sym_else] = ACTIONS(4956), [anon_sym_when] = ACTIONS(4956), @@ -170610,6 +170609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4956), [anon_sym_false] = ACTIONS(4956), [anon_sym_SQUOTE] = ACTIONS(4958), + [sym_null_literal] = ACTIONS(4956), [sym__backtick_identifier] = ACTIONS(4958), [sym__automatic_semicolon] = ACTIONS(4958), [sym_safe_nav] = ACTIONS(4958), @@ -170644,7 +170644,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3230), [anon_sym_AMP_AMP] = ACTIONS(3230), [anon_sym_PIPE_PIPE] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3226), [anon_sym_if] = ACTIONS(3226), [anon_sym_else] = ACTIONS(3226), [anon_sym_when] = ACTIONS(3226), @@ -170716,6 +170715,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3226), [anon_sym_false] = ACTIONS(3226), [anon_sym_SQUOTE] = ACTIONS(3230), + [sym_null_literal] = ACTIONS(3226), [sym__backtick_identifier] = ACTIONS(3230), [sym__automatic_semicolon] = ACTIONS(3230), [sym_safe_nav] = ACTIONS(3230), @@ -170750,7 +170750,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4962), [anon_sym_AMP_AMP] = ACTIONS(4962), [anon_sym_PIPE_PIPE] = ACTIONS(4962), - [anon_sym_null] = ACTIONS(4960), [anon_sym_if] = ACTIONS(4960), [anon_sym_else] = ACTIONS(4960), [anon_sym_when] = ACTIONS(4960), @@ -170822,6 +170821,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4960), [anon_sym_false] = ACTIONS(4960), [anon_sym_SQUOTE] = ACTIONS(4962), + [sym_null_literal] = ACTIONS(4960), [sym__backtick_identifier] = ACTIONS(4962), [sym__automatic_semicolon] = ACTIONS(4962), [sym_safe_nav] = ACTIONS(4962), @@ -170856,7 +170856,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4966), [anon_sym_AMP_AMP] = ACTIONS(4966), [anon_sym_PIPE_PIPE] = ACTIONS(4966), - [anon_sym_null] = ACTIONS(4964), [anon_sym_if] = ACTIONS(4964), [anon_sym_else] = ACTIONS(4964), [anon_sym_when] = ACTIONS(4964), @@ -170928,6 +170927,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4964), [anon_sym_false] = ACTIONS(4964), [anon_sym_SQUOTE] = ACTIONS(4966), + [sym_null_literal] = ACTIONS(4964), [sym__backtick_identifier] = ACTIONS(4966), [sym__automatic_semicolon] = ACTIONS(4966), [sym_safe_nav] = ACTIONS(4966), @@ -170962,7 +170962,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4970), [anon_sym_AMP_AMP] = ACTIONS(4970), [anon_sym_PIPE_PIPE] = ACTIONS(4970), - [anon_sym_null] = ACTIONS(4968), [anon_sym_if] = ACTIONS(4968), [anon_sym_else] = ACTIONS(4968), [anon_sym_when] = ACTIONS(4968), @@ -171034,6 +171033,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4968), [anon_sym_false] = ACTIONS(4968), [anon_sym_SQUOTE] = ACTIONS(4970), + [sym_null_literal] = ACTIONS(4968), [sym__backtick_identifier] = ACTIONS(4970), [sym__automatic_semicolon] = ACTIONS(4970), [sym_safe_nav] = ACTIONS(4970), @@ -171068,7 +171068,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4974), [anon_sym_AMP_AMP] = ACTIONS(4974), [anon_sym_PIPE_PIPE] = ACTIONS(4974), - [anon_sym_null] = ACTIONS(4972), [anon_sym_if] = ACTIONS(4972), [anon_sym_else] = ACTIONS(4972), [anon_sym_when] = ACTIONS(4972), @@ -171140,6 +171139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4972), [anon_sym_false] = ACTIONS(4972), [anon_sym_SQUOTE] = ACTIONS(4974), + [sym_null_literal] = ACTIONS(4972), [sym__backtick_identifier] = ACTIONS(4974), [sym__automatic_semicolon] = ACTIONS(4974), [sym_safe_nav] = ACTIONS(4974), @@ -171174,7 +171174,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4978), [anon_sym_AMP_AMP] = ACTIONS(4978), [anon_sym_PIPE_PIPE] = ACTIONS(4978), - [anon_sym_null] = ACTIONS(4976), [anon_sym_if] = ACTIONS(4976), [anon_sym_else] = ACTIONS(4976), [anon_sym_when] = ACTIONS(4976), @@ -171246,6 +171245,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4976), [anon_sym_false] = ACTIONS(4976), [anon_sym_SQUOTE] = ACTIONS(4978), + [sym_null_literal] = ACTIONS(4976), [sym__backtick_identifier] = ACTIONS(4978), [sym__automatic_semicolon] = ACTIONS(4978), [sym_safe_nav] = ACTIONS(4978), @@ -171280,7 +171280,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4982), [anon_sym_AMP_AMP] = ACTIONS(4982), [anon_sym_PIPE_PIPE] = ACTIONS(4982), - [anon_sym_null] = ACTIONS(4980), [anon_sym_if] = ACTIONS(4980), [anon_sym_else] = ACTIONS(4980), [anon_sym_when] = ACTIONS(4980), @@ -171352,6 +171351,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4980), [anon_sym_false] = ACTIONS(4980), [anon_sym_SQUOTE] = ACTIONS(4982), + [sym_null_literal] = ACTIONS(4980), [sym__backtick_identifier] = ACTIONS(4982), [sym__automatic_semicolon] = ACTIONS(4982), [sym_safe_nav] = ACTIONS(4982), @@ -171386,7 +171386,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4986), [anon_sym_AMP_AMP] = ACTIONS(4986), [anon_sym_PIPE_PIPE] = ACTIONS(4986), - [anon_sym_null] = ACTIONS(4984), [anon_sym_if] = ACTIONS(4984), [anon_sym_else] = ACTIONS(4984), [anon_sym_when] = ACTIONS(4984), @@ -171458,6 +171457,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4984), [anon_sym_false] = ACTIONS(4984), [anon_sym_SQUOTE] = ACTIONS(4986), + [sym_null_literal] = ACTIONS(4984), [sym__backtick_identifier] = ACTIONS(4986), [sym__automatic_semicolon] = ACTIONS(4986), [sym_safe_nav] = ACTIONS(4986), @@ -171492,7 +171492,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3370), [anon_sym_AMP_AMP] = ACTIONS(3370), [anon_sym_PIPE_PIPE] = ACTIONS(3370), - [anon_sym_null] = ACTIONS(3368), [anon_sym_if] = ACTIONS(3368), [anon_sym_else] = ACTIONS(3368), [anon_sym_when] = ACTIONS(3368), @@ -171564,6 +171563,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3368), [anon_sym_false] = ACTIONS(3368), [anon_sym_SQUOTE] = ACTIONS(3370), + [sym_null_literal] = ACTIONS(3368), [sym__backtick_identifier] = ACTIONS(3370), [sym__automatic_semicolon] = ACTIONS(3370), [sym_safe_nav] = ACTIONS(3370), @@ -171598,7 +171598,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4349), [anon_sym_AMP_AMP] = ACTIONS(4349), [anon_sym_PIPE_PIPE] = ACTIONS(4349), - [anon_sym_null] = ACTIONS(4347), [anon_sym_if] = ACTIONS(4347), [anon_sym_else] = ACTIONS(4347), [anon_sym_when] = ACTIONS(4347), @@ -171670,6 +171669,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4347), [anon_sym_false] = ACTIONS(4347), [anon_sym_SQUOTE] = ACTIONS(4349), + [sym_null_literal] = ACTIONS(4347), [sym__backtick_identifier] = ACTIONS(4349), [sym__automatic_semicolon] = ACTIONS(4349), [sym_safe_nav] = ACTIONS(4349), @@ -171704,7 +171704,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4445), [anon_sym_AMP_AMP] = ACTIONS(4445), [anon_sym_PIPE_PIPE] = ACTIONS(4445), - [anon_sym_null] = ACTIONS(4443), [anon_sym_if] = ACTIONS(4443), [anon_sym_else] = ACTIONS(4443), [anon_sym_when] = ACTIONS(4443), @@ -171776,6 +171775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4443), [anon_sym_false] = ACTIONS(4443), [anon_sym_SQUOTE] = ACTIONS(4445), + [sym_null_literal] = ACTIONS(4443), [sym__backtick_identifier] = ACTIONS(4445), [sym__automatic_semicolon] = ACTIONS(4445), [sym_safe_nav] = ACTIONS(4445), @@ -171810,7 +171810,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4632), [anon_sym_AMP_AMP] = ACTIONS(4632), [anon_sym_PIPE_PIPE] = ACTIONS(4632), - [anon_sym_null] = ACTIONS(4630), [anon_sym_if] = ACTIONS(4630), [anon_sym_else] = ACTIONS(4630), [anon_sym_when] = ACTIONS(4630), @@ -171882,6 +171881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4630), [anon_sym_false] = ACTIONS(4630), [anon_sym_SQUOTE] = ACTIONS(4632), + [sym_null_literal] = ACTIONS(4630), [sym__backtick_identifier] = ACTIONS(4632), [sym__automatic_semicolon] = ACTIONS(4632), [sym_safe_nav] = ACTIONS(4632), @@ -171916,7 +171916,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4990), [anon_sym_AMP_AMP] = ACTIONS(4990), [anon_sym_PIPE_PIPE] = ACTIONS(4990), - [anon_sym_null] = ACTIONS(4988), [anon_sym_if] = ACTIONS(4988), [anon_sym_else] = ACTIONS(4988), [anon_sym_when] = ACTIONS(4988), @@ -171988,6 +171987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4988), [anon_sym_false] = ACTIONS(4988), [anon_sym_SQUOTE] = ACTIONS(4990), + [sym_null_literal] = ACTIONS(4988), [sym__backtick_identifier] = ACTIONS(4990), [sym__automatic_semicolon] = ACTIONS(4990), [sym_safe_nav] = ACTIONS(4990), @@ -172022,7 +172022,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4890), [anon_sym_AMP_AMP] = ACTIONS(4890), [anon_sym_PIPE_PIPE] = ACTIONS(4890), - [anon_sym_null] = ACTIONS(4888), [anon_sym_if] = ACTIONS(4888), [anon_sym_else] = ACTIONS(4888), [anon_sym_when] = ACTIONS(4888), @@ -172094,6 +172093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4888), [anon_sym_false] = ACTIONS(4888), [anon_sym_SQUOTE] = ACTIONS(4890), + [sym_null_literal] = ACTIONS(4888), [sym__backtick_identifier] = ACTIONS(4890), [sym__automatic_semicolon] = ACTIONS(4890), [sym_safe_nav] = ACTIONS(4890), @@ -172128,7 +172128,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4994), [anon_sym_AMP_AMP] = ACTIONS(4994), [anon_sym_PIPE_PIPE] = ACTIONS(4994), - [anon_sym_null] = ACTIONS(4992), [anon_sym_if] = ACTIONS(4992), [anon_sym_else] = ACTIONS(4992), [anon_sym_when] = ACTIONS(4992), @@ -172200,6 +172199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4992), [anon_sym_false] = ACTIONS(4992), [anon_sym_SQUOTE] = ACTIONS(4994), + [sym_null_literal] = ACTIONS(4992), [sym__backtick_identifier] = ACTIONS(4994), [sym__automatic_semicolon] = ACTIONS(4994), [sym_safe_nav] = ACTIONS(4994), @@ -172234,7 +172234,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5001), [anon_sym_AMP_AMP] = ACTIONS(5001), [anon_sym_PIPE_PIPE] = ACTIONS(5001), - [anon_sym_null] = ACTIONS(4999), [anon_sym_if] = ACTIONS(4999), [anon_sym_else] = ACTIONS(4999), [anon_sym_when] = ACTIONS(4999), @@ -172306,6 +172305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4999), [anon_sym_false] = ACTIONS(4999), [anon_sym_SQUOTE] = ACTIONS(5001), + [sym_null_literal] = ACTIONS(4999), [sym__backtick_identifier] = ACTIONS(5001), [sym__automatic_semicolon] = ACTIONS(5001), [sym_safe_nav] = ACTIONS(5001), @@ -172340,7 +172340,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5005), [anon_sym_AMP_AMP] = ACTIONS(5005), [anon_sym_PIPE_PIPE] = ACTIONS(5005), - [anon_sym_null] = ACTIONS(5003), [anon_sym_if] = ACTIONS(5003), [anon_sym_else] = ACTIONS(5003), [anon_sym_when] = ACTIONS(5003), @@ -172412,6 +172411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5003), [anon_sym_false] = ACTIONS(5003), [anon_sym_SQUOTE] = ACTIONS(5005), + [sym_null_literal] = ACTIONS(5003), [sym__backtick_identifier] = ACTIONS(5005), [sym__automatic_semicolon] = ACTIONS(5005), [sym_safe_nav] = ACTIONS(5005), @@ -172446,7 +172446,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4418), [anon_sym_AMP_AMP] = ACTIONS(4418), [anon_sym_PIPE_PIPE] = ACTIONS(4418), - [anon_sym_null] = ACTIONS(4416), [anon_sym_if] = ACTIONS(4416), [anon_sym_else] = ACTIONS(4416), [anon_sym_when] = ACTIONS(4416), @@ -172518,6 +172517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4416), [anon_sym_false] = ACTIONS(4416), [anon_sym_SQUOTE] = ACTIONS(4418), + [sym_null_literal] = ACTIONS(4416), [sym__backtick_identifier] = ACTIONS(4418), [sym__automatic_semicolon] = ACTIONS(4418), [sym_safe_nav] = ACTIONS(4418), @@ -172552,7 +172552,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5009), [anon_sym_AMP_AMP] = ACTIONS(5009), [anon_sym_PIPE_PIPE] = ACTIONS(5009), - [anon_sym_null] = ACTIONS(5007), [anon_sym_if] = ACTIONS(5007), [anon_sym_else] = ACTIONS(5007), [anon_sym_when] = ACTIONS(5007), @@ -172624,6 +172623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5007), [anon_sym_false] = ACTIONS(5007), [anon_sym_SQUOTE] = ACTIONS(5009), + [sym_null_literal] = ACTIONS(5007), [sym__backtick_identifier] = ACTIONS(5009), [sym__automatic_semicolon] = ACTIONS(5009), [sym_safe_nav] = ACTIONS(5009), @@ -172658,7 +172658,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4994), [anon_sym_AMP_AMP] = ACTIONS(4994), [anon_sym_PIPE_PIPE] = ACTIONS(4994), - [anon_sym_null] = ACTIONS(4992), [anon_sym_if] = ACTIONS(4992), [anon_sym_else] = ACTIONS(4992), [anon_sym_when] = ACTIONS(4992), @@ -172730,6 +172729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4992), [anon_sym_false] = ACTIONS(4992), [anon_sym_SQUOTE] = ACTIONS(4994), + [sym_null_literal] = ACTIONS(4992), [sym__backtick_identifier] = ACTIONS(4994), [sym__automatic_semicolon] = ACTIONS(4994), [sym_safe_nav] = ACTIONS(4994), @@ -172764,7 +172764,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3952), [anon_sym_AMP_AMP] = ACTIONS(3952), [anon_sym_PIPE_PIPE] = ACTIONS(3952), - [anon_sym_null] = ACTIONS(3950), [anon_sym_if] = ACTIONS(3950), [anon_sym_else] = ACTIONS(3950), [anon_sym_when] = ACTIONS(3950), @@ -172836,6 +172835,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3950), [anon_sym_false] = ACTIONS(3950), [anon_sym_SQUOTE] = ACTIONS(3952), + [sym_null_literal] = ACTIONS(3950), [sym__backtick_identifier] = ACTIONS(3952), [sym__automatic_semicolon] = ACTIONS(3952), [sym_safe_nav] = ACTIONS(3952), @@ -172870,7 +172870,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5017), [anon_sym_AMP_AMP] = ACTIONS(5017), [anon_sym_PIPE_PIPE] = ACTIONS(5017), - [anon_sym_null] = ACTIONS(5015), [anon_sym_if] = ACTIONS(5015), [anon_sym_else] = ACTIONS(5015), [anon_sym_when] = ACTIONS(5015), @@ -172942,6 +172941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5015), [anon_sym_false] = ACTIONS(5015), [anon_sym_SQUOTE] = ACTIONS(5017), + [sym_null_literal] = ACTIONS(5015), [sym__backtick_identifier] = ACTIONS(5017), [sym__automatic_semicolon] = ACTIONS(5017), [sym_safe_nav] = ACTIONS(5017), @@ -172976,7 +172976,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5021), [anon_sym_AMP_AMP] = ACTIONS(5021), [anon_sym_PIPE_PIPE] = ACTIONS(5021), - [anon_sym_null] = ACTIONS(5019), [anon_sym_if] = ACTIONS(5019), [anon_sym_else] = ACTIONS(5019), [anon_sym_when] = ACTIONS(5019), @@ -173048,6 +173047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5019), [anon_sym_false] = ACTIONS(5019), [anon_sym_SQUOTE] = ACTIONS(5021), + [sym_null_literal] = ACTIONS(5019), [sym__backtick_identifier] = ACTIONS(5021), [sym__automatic_semicolon] = ACTIONS(5021), [sym_safe_nav] = ACTIONS(5021), @@ -173082,7 +173082,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5025), [anon_sym_AMP_AMP] = ACTIONS(5025), [anon_sym_PIPE_PIPE] = ACTIONS(5025), - [anon_sym_null] = ACTIONS(5023), [anon_sym_if] = ACTIONS(5023), [anon_sym_else] = ACTIONS(5023), [anon_sym_when] = ACTIONS(5023), @@ -173154,6 +173153,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5023), [anon_sym_false] = ACTIONS(5023), [anon_sym_SQUOTE] = ACTIONS(5025), + [sym_null_literal] = ACTIONS(5023), [sym__backtick_identifier] = ACTIONS(5025), [sym__automatic_semicolon] = ACTIONS(5025), [sym_safe_nav] = ACTIONS(5025), @@ -173188,7 +173188,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1578), [anon_sym_AMP_AMP] = ACTIONS(1578), [anon_sym_PIPE_PIPE] = ACTIONS(1578), - [anon_sym_null] = ACTIONS(1580), [anon_sym_if] = ACTIONS(1580), [anon_sym_else] = ACTIONS(1580), [anon_sym_when] = ACTIONS(1580), @@ -173260,6 +173259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1580), [anon_sym_false] = ACTIONS(1580), [anon_sym_SQUOTE] = ACTIONS(1578), + [sym_null_literal] = ACTIONS(1580), [sym__backtick_identifier] = ACTIONS(1578), [sym__automatic_semicolon] = ACTIONS(1578), [sym_safe_nav] = ACTIONS(1578), @@ -173294,7 +173294,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1766), [anon_sym_AMP_AMP] = ACTIONS(1766), [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), [anon_sym_if] = ACTIONS(1764), [anon_sym_else] = ACTIONS(1764), [anon_sym_when] = ACTIONS(1764), @@ -173366,6 +173365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1764), [anon_sym_false] = ACTIONS(1764), [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_null_literal] = ACTIONS(1764), [sym__backtick_identifier] = ACTIONS(1766), [sym__automatic_semicolon] = ACTIONS(1766), [sym_safe_nav] = ACTIONS(1766), @@ -173400,7 +173400,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5009), [anon_sym_AMP_AMP] = ACTIONS(5009), [anon_sym_PIPE_PIPE] = ACTIONS(5009), - [anon_sym_null] = ACTIONS(5007), [anon_sym_if] = ACTIONS(5007), [anon_sym_else] = ACTIONS(5007), [anon_sym_when] = ACTIONS(5007), @@ -173472,6 +173471,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5007), [anon_sym_false] = ACTIONS(5007), [anon_sym_SQUOTE] = ACTIONS(5009), + [sym_null_literal] = ACTIONS(5007), [sym__backtick_identifier] = ACTIONS(5009), [sym__automatic_semicolon] = ACTIONS(5009), [sym_safe_nav] = ACTIONS(5009), @@ -173506,7 +173506,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5031), [anon_sym_AMP_AMP] = ACTIONS(5031), [anon_sym_PIPE_PIPE] = ACTIONS(5031), - [anon_sym_null] = ACTIONS(5029), [anon_sym_if] = ACTIONS(5029), [anon_sym_else] = ACTIONS(5029), [anon_sym_when] = ACTIONS(5029), @@ -173578,6 +173577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5029), [anon_sym_false] = ACTIONS(5029), [anon_sym_SQUOTE] = ACTIONS(5031), + [sym_null_literal] = ACTIONS(5029), [sym__backtick_identifier] = ACTIONS(5031), [sym__automatic_semicolon] = ACTIONS(5031), [sym_safe_nav] = ACTIONS(5031), @@ -173612,7 +173612,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4453), [anon_sym_AMP_AMP] = ACTIONS(4453), [anon_sym_PIPE_PIPE] = ACTIONS(4453), - [anon_sym_null] = ACTIONS(4451), [anon_sym_if] = ACTIONS(4451), [anon_sym_else] = ACTIONS(4451), [anon_sym_when] = ACTIONS(4451), @@ -173684,6 +173683,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4451), [anon_sym_false] = ACTIONS(4451), [anon_sym_SQUOTE] = ACTIONS(4453), + [sym_null_literal] = ACTIONS(4451), [sym__backtick_identifier] = ACTIONS(4453), [sym__automatic_semicolon] = ACTIONS(4453), [sym_safe_nav] = ACTIONS(4453), @@ -173718,7 +173718,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4333), [anon_sym_AMP_AMP] = ACTIONS(4333), [anon_sym_PIPE_PIPE] = ACTIONS(4333), - [anon_sym_null] = ACTIONS(4331), [anon_sym_if] = ACTIONS(4331), [anon_sym_else] = ACTIONS(4331), [anon_sym_when] = ACTIONS(4331), @@ -173790,6 +173789,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4331), [anon_sym_false] = ACTIONS(4331), [anon_sym_SQUOTE] = ACTIONS(4333), + [sym_null_literal] = ACTIONS(4331), [sym__backtick_identifier] = ACTIONS(4333), [sym__automatic_semicolon] = ACTIONS(4333), [sym_safe_nav] = ACTIONS(4333), @@ -173824,7 +173824,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -173896,6 +173895,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -173930,7 +173930,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5035), [anon_sym_AMP_AMP] = ACTIONS(5035), [anon_sym_PIPE_PIPE] = ACTIONS(5035), - [anon_sym_null] = ACTIONS(5033), [anon_sym_if] = ACTIONS(5033), [anon_sym_else] = ACTIONS(5033), [anon_sym_when] = ACTIONS(5033), @@ -174002,6 +174001,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5033), [anon_sym_false] = ACTIONS(5033), [anon_sym_SQUOTE] = ACTIONS(5035), + [sym_null_literal] = ACTIONS(5033), [sym__backtick_identifier] = ACTIONS(5035), [sym__automatic_semicolon] = ACTIONS(5035), [sym_safe_nav] = ACTIONS(5035), @@ -174036,7 +174036,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4276), [anon_sym_AMP_AMP] = ACTIONS(4276), [anon_sym_PIPE_PIPE] = ACTIONS(4276), - [anon_sym_null] = ACTIONS(4274), [anon_sym_if] = ACTIONS(4274), [anon_sym_else] = ACTIONS(4274), [anon_sym_when] = ACTIONS(4274), @@ -174108,6 +174107,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4274), [anon_sym_false] = ACTIONS(4274), [anon_sym_SQUOTE] = ACTIONS(4276), + [sym_null_literal] = ACTIONS(4274), [sym__backtick_identifier] = ACTIONS(4276), [sym__automatic_semicolon] = ACTIONS(4276), [sym_safe_nav] = ACTIONS(4276), @@ -174142,7 +174142,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4079), [anon_sym_AMP_AMP] = ACTIONS(4079), [anon_sym_PIPE_PIPE] = ACTIONS(4079), - [anon_sym_null] = ACTIONS(4077), [anon_sym_if] = ACTIONS(4077), [anon_sym_else] = ACTIONS(4077), [anon_sym_when] = ACTIONS(4077), @@ -174214,6 +174213,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4077), [anon_sym_false] = ACTIONS(4077), [anon_sym_SQUOTE] = ACTIONS(4079), + [sym_null_literal] = ACTIONS(4077), [sym__backtick_identifier] = ACTIONS(4079), [sym__automatic_semicolon] = ACTIONS(4079), [sym_safe_nav] = ACTIONS(4079), @@ -174248,7 +174248,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4262), [anon_sym_AMP_AMP] = ACTIONS(4262), [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_null] = ACTIONS(4260), [anon_sym_if] = ACTIONS(4260), [anon_sym_else] = ACTIONS(4260), [anon_sym_when] = ACTIONS(4260), @@ -174320,6 +174319,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4260), [anon_sym_false] = ACTIONS(4260), [anon_sym_SQUOTE] = ACTIONS(4262), + [sym_null_literal] = ACTIONS(4260), [sym__backtick_identifier] = ACTIONS(4262), [sym__automatic_semicolon] = ACTIONS(4262), [sym_safe_nav] = ACTIONS(4262), @@ -174354,7 +174354,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4089), [anon_sym_AMP_AMP] = ACTIONS(4089), [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_null] = ACTIONS(4087), [anon_sym_if] = ACTIONS(4087), [anon_sym_else] = ACTIONS(4087), [anon_sym_when] = ACTIONS(4087), @@ -174426,6 +174425,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4087), [anon_sym_false] = ACTIONS(4087), [anon_sym_SQUOTE] = ACTIONS(4089), + [sym_null_literal] = ACTIONS(4087), [sym__backtick_identifier] = ACTIONS(4089), [sym__automatic_semicolon] = ACTIONS(4089), [sym_safe_nav] = ACTIONS(4089), @@ -174460,7 +174460,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5039), [anon_sym_AMP_AMP] = ACTIONS(5039), [anon_sym_PIPE_PIPE] = ACTIONS(5039), - [anon_sym_null] = ACTIONS(5037), [anon_sym_if] = ACTIONS(5037), [anon_sym_else] = ACTIONS(5037), [anon_sym_when] = ACTIONS(5037), @@ -174532,6 +174531,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5037), [anon_sym_false] = ACTIONS(5037), [anon_sym_SQUOTE] = ACTIONS(5039), + [sym_null_literal] = ACTIONS(5037), [sym__backtick_identifier] = ACTIONS(5039), [sym__automatic_semicolon] = ACTIONS(5039), [sym_safe_nav] = ACTIONS(5039), @@ -174566,7 +174566,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -174638,6 +174637,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -174672,7 +174672,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5043), [anon_sym_AMP_AMP] = ACTIONS(5043), [anon_sym_PIPE_PIPE] = ACTIONS(5043), - [anon_sym_null] = ACTIONS(5041), [anon_sym_if] = ACTIONS(5041), [anon_sym_else] = ACTIONS(5041), [anon_sym_when] = ACTIONS(5041), @@ -174744,6 +174743,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5041), [anon_sym_false] = ACTIONS(5041), [anon_sym_SQUOTE] = ACTIONS(5043), + [sym_null_literal] = ACTIONS(5041), [sym__backtick_identifier] = ACTIONS(5043), [sym__automatic_semicolon] = ACTIONS(5043), [sym_safe_nav] = ACTIONS(5043), @@ -174778,7 +174778,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4099), [anon_sym_AMP_AMP] = ACTIONS(4099), [anon_sym_PIPE_PIPE] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4097), [anon_sym_if] = ACTIONS(4097), [anon_sym_else] = ACTIONS(4097), [anon_sym_when] = ACTIONS(4097), @@ -174850,6 +174849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4097), [anon_sym_false] = ACTIONS(4097), [anon_sym_SQUOTE] = ACTIONS(4099), + [sym_null_literal] = ACTIONS(4097), [sym__backtick_identifier] = ACTIONS(4099), [sym__automatic_semicolon] = ACTIONS(4099), [sym_safe_nav] = ACTIONS(4099), @@ -174884,7 +174884,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5047), [anon_sym_AMP_AMP] = ACTIONS(5047), [anon_sym_PIPE_PIPE] = ACTIONS(5047), - [anon_sym_null] = ACTIONS(5045), [anon_sym_if] = ACTIONS(5045), [anon_sym_else] = ACTIONS(5045), [anon_sym_when] = ACTIONS(5045), @@ -174956,6 +174955,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5045), [anon_sym_false] = ACTIONS(5045), [anon_sym_SQUOTE] = ACTIONS(5047), + [sym_null_literal] = ACTIONS(5045), [sym__backtick_identifier] = ACTIONS(5047), [sym__automatic_semicolon] = ACTIONS(5047), [sym_safe_nav] = ACTIONS(5047), @@ -174990,7 +174990,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4079), [anon_sym_AMP_AMP] = ACTIONS(4079), [anon_sym_PIPE_PIPE] = ACTIONS(4079), - [anon_sym_null] = ACTIONS(4077), [anon_sym_if] = ACTIONS(4077), [anon_sym_else] = ACTIONS(4077), [anon_sym_when] = ACTIONS(4077), @@ -175062,6 +175061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4077), [anon_sym_false] = ACTIONS(4077), [anon_sym_SQUOTE] = ACTIONS(4079), + [sym_null_literal] = ACTIONS(4077), [sym__backtick_identifier] = ACTIONS(4079), [sym__automatic_semicolon] = ACTIONS(4079), [sym_safe_nav] = ACTIONS(4079), @@ -175096,7 +175096,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4144), [anon_sym_AMP_AMP] = ACTIONS(4144), [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4142), [anon_sym_if] = ACTIONS(4142), [anon_sym_else] = ACTIONS(4142), [anon_sym_when] = ACTIONS(4142), @@ -175168,6 +175167,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4142), [anon_sym_false] = ACTIONS(4142), [anon_sym_SQUOTE] = ACTIONS(4144), + [sym_null_literal] = ACTIONS(4142), [sym__backtick_identifier] = ACTIONS(4144), [sym__automatic_semicolon] = ACTIONS(4144), [sym_safe_nav] = ACTIONS(4144), @@ -175202,7 +175202,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5051), [anon_sym_AMP_AMP] = ACTIONS(5051), [anon_sym_PIPE_PIPE] = ACTIONS(5051), - [anon_sym_null] = ACTIONS(5049), [anon_sym_if] = ACTIONS(5049), [anon_sym_else] = ACTIONS(5049), [anon_sym_when] = ACTIONS(5049), @@ -175274,6 +175273,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5049), [anon_sym_false] = ACTIONS(5049), [anon_sym_SQUOTE] = ACTIONS(5051), + [sym_null_literal] = ACTIONS(5049), [sym__backtick_identifier] = ACTIONS(5051), [sym__automatic_semicolon] = ACTIONS(5051), [sym_safe_nav] = ACTIONS(5051), @@ -175308,7 +175308,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4422), [anon_sym_AMP_AMP] = ACTIONS(4422), [anon_sym_PIPE_PIPE] = ACTIONS(4422), - [anon_sym_null] = ACTIONS(4420), [anon_sym_if] = ACTIONS(4420), [anon_sym_else] = ACTIONS(4420), [anon_sym_when] = ACTIONS(4420), @@ -175380,6 +175379,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4420), [anon_sym_false] = ACTIONS(4420), [anon_sym_SQUOTE] = ACTIONS(4422), + [sym_null_literal] = ACTIONS(4420), [sym__backtick_identifier] = ACTIONS(4422), [sym__automatic_semicolon] = ACTIONS(4422), [sym_safe_nav] = ACTIONS(4422), @@ -175414,7 +175414,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1684), [anon_sym_AMP_AMP] = ACTIONS(1684), [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_null] = ACTIONS(1682), [anon_sym_if] = ACTIONS(1682), [anon_sym_else] = ACTIONS(1682), [anon_sym_when] = ACTIONS(1682), @@ -175486,6 +175485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1682), [anon_sym_false] = ACTIONS(1682), [anon_sym_SQUOTE] = ACTIONS(1684), + [sym_null_literal] = ACTIONS(1682), [sym__backtick_identifier] = ACTIONS(1684), [sym__automatic_semicolon] = ACTIONS(1684), [sym_safe_nav] = ACTIONS(1684), @@ -175520,7 +175520,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5055), [anon_sym_AMP_AMP] = ACTIONS(5055), [anon_sym_PIPE_PIPE] = ACTIONS(5055), - [anon_sym_null] = ACTIONS(5053), [anon_sym_if] = ACTIONS(5053), [anon_sym_else] = ACTIONS(5053), [anon_sym_when] = ACTIONS(5053), @@ -175592,6 +175591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5053), [anon_sym_false] = ACTIONS(5053), [anon_sym_SQUOTE] = ACTIONS(5055), + [sym_null_literal] = ACTIONS(5053), [sym__backtick_identifier] = ACTIONS(5055), [sym__automatic_semicolon] = ACTIONS(5055), [sym_safe_nav] = ACTIONS(5055), @@ -175626,7 +175626,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4232), [anon_sym_AMP_AMP] = ACTIONS(4232), [anon_sym_PIPE_PIPE] = ACTIONS(4232), - [anon_sym_null] = ACTIONS(4230), [anon_sym_if] = ACTIONS(4230), [anon_sym_else] = ACTIONS(4230), [anon_sym_when] = ACTIONS(4230), @@ -175698,6 +175697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4230), [anon_sym_false] = ACTIONS(4230), [anon_sym_SQUOTE] = ACTIONS(4232), + [sym_null_literal] = ACTIONS(4230), [sym__backtick_identifier] = ACTIONS(4232), [sym__automatic_semicolon] = ACTIONS(4232), [sym_safe_nav] = ACTIONS(4232), @@ -175732,7 +175732,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4620), [anon_sym_AMP_AMP] = ACTIONS(4620), [anon_sym_PIPE_PIPE] = ACTIONS(4620), - [anon_sym_null] = ACTIONS(4618), [anon_sym_if] = ACTIONS(4618), [anon_sym_else] = ACTIONS(4618), [anon_sym_when] = ACTIONS(4618), @@ -175804,6 +175803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4618), [anon_sym_false] = ACTIONS(4618), [anon_sym_SQUOTE] = ACTIONS(4620), + [sym_null_literal] = ACTIONS(4618), [sym__backtick_identifier] = ACTIONS(4620), [sym__automatic_semicolon] = ACTIONS(4620), [sym_safe_nav] = ACTIONS(4620), @@ -175838,7 +175838,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5059), [anon_sym_AMP_AMP] = ACTIONS(5059), [anon_sym_PIPE_PIPE] = ACTIONS(5059), - [anon_sym_null] = ACTIONS(5057), [anon_sym_if] = ACTIONS(5057), [anon_sym_else] = ACTIONS(5057), [anon_sym_when] = ACTIONS(5057), @@ -175910,6 +175909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5057), [anon_sym_false] = ACTIONS(5057), [anon_sym_SQUOTE] = ACTIONS(5059), + [sym_null_literal] = ACTIONS(5057), [sym__backtick_identifier] = ACTIONS(5059), [sym__automatic_semicolon] = ACTIONS(5059), [sym_safe_nav] = ACTIONS(5059), @@ -175944,7 +175944,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4232), [anon_sym_AMP_AMP] = ACTIONS(4232), [anon_sym_PIPE_PIPE] = ACTIONS(4232), - [anon_sym_null] = ACTIONS(4230), [anon_sym_if] = ACTIONS(4230), [anon_sym_else] = ACTIONS(4230), [anon_sym_when] = ACTIONS(4230), @@ -176016,6 +176015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4230), [anon_sym_false] = ACTIONS(4230), [anon_sym_SQUOTE] = ACTIONS(4232), + [sym_null_literal] = ACTIONS(4230), [sym__backtick_identifier] = ACTIONS(4232), [sym__automatic_semicolon] = ACTIONS(4232), [sym_safe_nav] = ACTIONS(4232), @@ -176050,7 +176050,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4262), [anon_sym_AMP_AMP] = ACTIONS(4262), [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_null] = ACTIONS(4260), [anon_sym_if] = ACTIONS(4260), [anon_sym_else] = ACTIONS(4260), [anon_sym_when] = ACTIONS(4260), @@ -176122,6 +176121,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4260), [anon_sym_false] = ACTIONS(4260), [anon_sym_SQUOTE] = ACTIONS(4262), + [sym_null_literal] = ACTIONS(4260), [sym__backtick_identifier] = ACTIONS(4262), [sym__automatic_semicolon] = ACTIONS(4262), [sym_safe_nav] = ACTIONS(4262), @@ -176156,7 +176156,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4345), [anon_sym_AMP_AMP] = ACTIONS(4345), [anon_sym_PIPE_PIPE] = ACTIONS(4345), - [anon_sym_null] = ACTIONS(4343), [anon_sym_if] = ACTIONS(4343), [anon_sym_else] = ACTIONS(4343), [anon_sym_when] = ACTIONS(4343), @@ -176228,6 +176227,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4343), [anon_sym_false] = ACTIONS(4343), [anon_sym_SQUOTE] = ACTIONS(4345), + [sym_null_literal] = ACTIONS(4343), [sym__backtick_identifier] = ACTIONS(4345), [sym__automatic_semicolon] = ACTIONS(4345), [sym_safe_nav] = ACTIONS(4345), @@ -176262,7 +176262,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4445), [anon_sym_AMP_AMP] = ACTIONS(4445), [anon_sym_PIPE_PIPE] = ACTIONS(4445), - [anon_sym_null] = ACTIONS(4443), [anon_sym_if] = ACTIONS(4443), [anon_sym_else] = ACTIONS(4443), [anon_sym_when] = ACTIONS(4443), @@ -176334,6 +176333,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4443), [anon_sym_false] = ACTIONS(4443), [anon_sym_SQUOTE] = ACTIONS(4445), + [sym_null_literal] = ACTIONS(4443), [sym__backtick_identifier] = ACTIONS(4445), [sym__automatic_semicolon] = ACTIONS(4445), [sym_safe_nav] = ACTIONS(4445), @@ -176368,7 +176368,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -176440,6 +176439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -176520,30 +176520,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -176626,30 +176626,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -176732,30 +176732,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -176838,30 +176838,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -176944,30 +176944,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -177050,30 +177050,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -177110,7 +177110,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5079), [anon_sym_AMP_AMP] = ACTIONS(5079), [anon_sym_PIPE_PIPE] = ACTIONS(5079), - [anon_sym_null] = ACTIONS(5077), [anon_sym_if] = ACTIONS(5077), [anon_sym_else] = ACTIONS(5077), [anon_sym_when] = ACTIONS(5077), @@ -177182,6 +177181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5077), [anon_sym_false] = ACTIONS(5077), [anon_sym_SQUOTE] = ACTIONS(5079), + [sym_null_literal] = ACTIONS(5077), [sym__backtick_identifier] = ACTIONS(5079), [sym__automatic_semicolon] = ACTIONS(5079), [sym_safe_nav] = ACTIONS(5079), @@ -177216,7 +177216,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5083), [anon_sym_AMP_AMP] = ACTIONS(5083), [anon_sym_PIPE_PIPE] = ACTIONS(5083), - [anon_sym_null] = ACTIONS(5081), [anon_sym_if] = ACTIONS(5081), [anon_sym_else] = ACTIONS(5081), [anon_sym_when] = ACTIONS(5081), @@ -177288,6 +177287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5081), [anon_sym_false] = ACTIONS(5081), [anon_sym_SQUOTE] = ACTIONS(5083), + [sym_null_literal] = ACTIONS(5081), [sym__backtick_identifier] = ACTIONS(5083), [sym__automatic_semicolon] = ACTIONS(5083), [sym_safe_nav] = ACTIONS(5083), @@ -177322,7 +177322,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5087), [anon_sym_AMP_AMP] = ACTIONS(5087), [anon_sym_PIPE_PIPE] = ACTIONS(5087), - [anon_sym_null] = ACTIONS(5085), [anon_sym_if] = ACTIONS(5085), [anon_sym_else] = ACTIONS(5085), [anon_sym_when] = ACTIONS(5085), @@ -177394,6 +177393,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5085), [anon_sym_false] = ACTIONS(5085), [anon_sym_SQUOTE] = ACTIONS(5087), + [sym_null_literal] = ACTIONS(5085), [sym__backtick_identifier] = ACTIONS(5087), [sym__automatic_semicolon] = ACTIONS(5087), [sym_safe_nav] = ACTIONS(5087), @@ -177428,7 +177428,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4414), [anon_sym_AMP_AMP] = ACTIONS(4414), [anon_sym_PIPE_PIPE] = ACTIONS(4414), - [anon_sym_null] = ACTIONS(4412), [anon_sym_if] = ACTIONS(4412), [anon_sym_else] = ACTIONS(4412), [anon_sym_when] = ACTIONS(4412), @@ -177500,6 +177499,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4412), [anon_sym_false] = ACTIONS(4412), [anon_sym_SQUOTE] = ACTIONS(4414), + [sym_null_literal] = ACTIONS(4412), [sym__backtick_identifier] = ACTIONS(4414), [sym__automatic_semicolon] = ACTIONS(4414), [sym_safe_nav] = ACTIONS(4414), @@ -177534,7 +177534,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5091), [anon_sym_AMP_AMP] = ACTIONS(5091), [anon_sym_PIPE_PIPE] = ACTIONS(5091), - [anon_sym_null] = ACTIONS(5089), [anon_sym_if] = ACTIONS(5089), [anon_sym_else] = ACTIONS(5089), [anon_sym_when] = ACTIONS(5089), @@ -177606,6 +177605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5089), [anon_sym_false] = ACTIONS(5089), [anon_sym_SQUOTE] = ACTIONS(5091), + [sym_null_literal] = ACTIONS(5089), [sym__backtick_identifier] = ACTIONS(5091), [sym__automatic_semicolon] = ACTIONS(5091), [sym_safe_nav] = ACTIONS(5091), @@ -177640,7 +177640,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5095), [anon_sym_AMP_AMP] = ACTIONS(5095), [anon_sym_PIPE_PIPE] = ACTIONS(5095), - [anon_sym_null] = ACTIONS(5093), [anon_sym_if] = ACTIONS(5093), [anon_sym_else] = ACTIONS(5093), [anon_sym_when] = ACTIONS(5093), @@ -177712,6 +177711,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5093), [anon_sym_false] = ACTIONS(5093), [anon_sym_SQUOTE] = ACTIONS(5095), + [sym_null_literal] = ACTIONS(5093), [sym__backtick_identifier] = ACTIONS(5095), [sym__automatic_semicolon] = ACTIONS(5095), [sym_safe_nav] = ACTIONS(5095), @@ -177746,7 +177746,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4204), [anon_sym_AMP_AMP] = ACTIONS(4204), [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_null] = ACTIONS(4202), [anon_sym_if] = ACTIONS(4202), [anon_sym_else] = ACTIONS(4202), [anon_sym_when] = ACTIONS(4202), @@ -177818,6 +177817,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4202), [anon_sym_false] = ACTIONS(4202), [anon_sym_SQUOTE] = ACTIONS(4204), + [sym_null_literal] = ACTIONS(4202), [sym__backtick_identifier] = ACTIONS(4204), [sym__automatic_semicolon] = ACTIONS(4204), [sym_safe_nav] = ACTIONS(4204), @@ -177852,7 +177852,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1756), [anon_sym_AMP_AMP] = ACTIONS(1756), [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -177924,6 +177923,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1756), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1756), @@ -177958,7 +177958,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(123), [anon_sym_if] = ACTIONS(123), [anon_sym_else] = ACTIONS(123), [anon_sym_when] = ACTIONS(123), @@ -178030,6 +178029,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(123), [anon_sym_false] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(121), + [sym_null_literal] = ACTIONS(123), [sym__backtick_identifier] = ACTIONS(121), [sym__automatic_semicolon] = ACTIONS(121), [sym_safe_nav] = ACTIONS(121), @@ -178064,7 +178064,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4185), [anon_sym_AMP_AMP] = ACTIONS(4185), [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_null] = ACTIONS(4182), [anon_sym_if] = ACTIONS(4182), [anon_sym_else] = ACTIONS(4182), [anon_sym_when] = ACTIONS(4182), @@ -178136,6 +178135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4182), [anon_sym_false] = ACTIONS(4182), [anon_sym_SQUOTE] = ACTIONS(4185), + [sym_null_literal] = ACTIONS(4182), [sym__backtick_identifier] = ACTIONS(4185), [sym__automatic_semicolon] = ACTIONS(4185), [sym_safe_nav] = ACTIONS(4185), @@ -178170,7 +178170,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5103), [anon_sym_AMP_AMP] = ACTIONS(5103), [anon_sym_PIPE_PIPE] = ACTIONS(5103), - [anon_sym_null] = ACTIONS(5101), [anon_sym_if] = ACTIONS(5101), [anon_sym_else] = ACTIONS(5101), [anon_sym_when] = ACTIONS(5101), @@ -178242,6 +178241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5101), [anon_sym_false] = ACTIONS(5101), [anon_sym_SQUOTE] = ACTIONS(5103), + [sym_null_literal] = ACTIONS(5101), [sym__backtick_identifier] = ACTIONS(5103), [sym__automatic_semicolon] = ACTIONS(5103), [sym_safe_nav] = ACTIONS(5103), @@ -178276,7 +178276,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4217), [anon_sym_AMP_AMP] = ACTIONS(4217), [anon_sym_PIPE_PIPE] = ACTIONS(4217), - [anon_sym_null] = ACTIONS(4214), [anon_sym_if] = ACTIONS(4214), [anon_sym_else] = ACTIONS(4214), [anon_sym_when] = ACTIONS(4214), @@ -178348,6 +178347,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4214), [anon_sym_false] = ACTIONS(4214), [anon_sym_SQUOTE] = ACTIONS(4217), + [sym_null_literal] = ACTIONS(4214), [sym__backtick_identifier] = ACTIONS(4217), [sym__automatic_semicolon] = ACTIONS(4217), [sym_safe_nav] = ACTIONS(4217), @@ -178382,7 +178382,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4144), [anon_sym_AMP_AMP] = ACTIONS(4144), [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4142), [anon_sym_if] = ACTIONS(4142), [anon_sym_else] = ACTIONS(4142), [anon_sym_when] = ACTIONS(4142), @@ -178454,6 +178453,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4142), [anon_sym_false] = ACTIONS(4142), [anon_sym_SQUOTE] = ACTIONS(4144), + [sym_null_literal] = ACTIONS(4142), [sym__backtick_identifier] = ACTIONS(4144), [sym__automatic_semicolon] = ACTIONS(4144), [sym_safe_nav] = ACTIONS(4144), @@ -178488,7 +178488,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5111), [anon_sym_AMP_AMP] = ACTIONS(5111), [anon_sym_PIPE_PIPE] = ACTIONS(5111), - [anon_sym_null] = ACTIONS(5109), [anon_sym_if] = ACTIONS(5109), [anon_sym_else] = ACTIONS(5109), [anon_sym_when] = ACTIONS(5109), @@ -178560,6 +178559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5109), [anon_sym_false] = ACTIONS(5109), [anon_sym_SQUOTE] = ACTIONS(5111), + [sym_null_literal] = ACTIONS(5109), [sym__backtick_identifier] = ACTIONS(5111), [sym__automatic_semicolon] = ACTIONS(5111), [sym_safe_nav] = ACTIONS(5111), @@ -178594,7 +178594,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4613), [anon_sym_AMP_AMP] = ACTIONS(4613), [anon_sym_PIPE_PIPE] = ACTIONS(4613), - [anon_sym_null] = ACTIONS(4611), [anon_sym_if] = ACTIONS(4611), [anon_sym_else] = ACTIONS(4611), [anon_sym_when] = ACTIONS(4611), @@ -178666,6 +178665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4611), [anon_sym_false] = ACTIONS(4611), [anon_sym_SQUOTE] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4611), [sym__backtick_identifier] = ACTIONS(4613), [sym__automatic_semicolon] = ACTIONS(4613), [sym_safe_nav] = ACTIONS(4613), @@ -178700,7 +178700,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5115), [anon_sym_AMP_AMP] = ACTIONS(5115), [anon_sym_PIPE_PIPE] = ACTIONS(5115), - [anon_sym_null] = ACTIONS(5113), [anon_sym_if] = ACTIONS(5113), [anon_sym_else] = ACTIONS(5113), [anon_sym_when] = ACTIONS(5113), @@ -178772,6 +178771,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5113), [anon_sym_false] = ACTIONS(5113), [anon_sym_SQUOTE] = ACTIONS(5115), + [sym_null_literal] = ACTIONS(5113), [sym__backtick_identifier] = ACTIONS(5115), [sym__automatic_semicolon] = ACTIONS(5115), [sym_safe_nav] = ACTIONS(5115), @@ -178806,7 +178806,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4361), [anon_sym_AMP_AMP] = ACTIONS(4361), [anon_sym_PIPE_PIPE] = ACTIONS(4361), - [anon_sym_null] = ACTIONS(4359), [anon_sym_if] = ACTIONS(4359), [anon_sym_else] = ACTIONS(4359), [anon_sym_when] = ACTIONS(4359), @@ -178878,6 +178877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4359), [anon_sym_false] = ACTIONS(4359), [anon_sym_SQUOTE] = ACTIONS(4361), + [sym_null_literal] = ACTIONS(4359), [sym__backtick_identifier] = ACTIONS(4361), [sym__automatic_semicolon] = ACTIONS(4361), [sym_safe_nav] = ACTIONS(4361), @@ -178912,7 +178912,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5119), [anon_sym_AMP_AMP] = ACTIONS(5119), [anon_sym_PIPE_PIPE] = ACTIONS(5119), - [anon_sym_null] = ACTIONS(5117), [anon_sym_if] = ACTIONS(5117), [anon_sym_else] = ACTIONS(5117), [anon_sym_when] = ACTIONS(5117), @@ -178984,6 +178983,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5117), [anon_sym_false] = ACTIONS(5117), [anon_sym_SQUOTE] = ACTIONS(5119), + [sym_null_literal] = ACTIONS(5117), [sym__backtick_identifier] = ACTIONS(5119), [sym__automatic_semicolon] = ACTIONS(5119), [sym_safe_nav] = ACTIONS(5119), @@ -179018,7 +179018,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5123), [anon_sym_AMP_AMP] = ACTIONS(5123), [anon_sym_PIPE_PIPE] = ACTIONS(5123), - [anon_sym_null] = ACTIONS(5121), [anon_sym_if] = ACTIONS(5121), [anon_sym_else] = ACTIONS(5121), [anon_sym_when] = ACTIONS(5121), @@ -179090,6 +179089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5121), [anon_sym_false] = ACTIONS(5121), [anon_sym_SQUOTE] = ACTIONS(5123), + [sym_null_literal] = ACTIONS(5121), [sym__backtick_identifier] = ACTIONS(5123), [sym__automatic_semicolon] = ACTIONS(5123), [sym_safe_nav] = ACTIONS(5123), @@ -179124,7 +179124,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4089), [anon_sym_AMP_AMP] = ACTIONS(4089), [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_null] = ACTIONS(4087), [anon_sym_if] = ACTIONS(4087), [anon_sym_else] = ACTIONS(4087), [anon_sym_when] = ACTIONS(4087), @@ -179196,6 +179195,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4087), [anon_sym_false] = ACTIONS(4087), [anon_sym_SQUOTE] = ACTIONS(4089), + [sym_null_literal] = ACTIONS(4087), [sym__backtick_identifier] = ACTIONS(4089), [sym__automatic_semicolon] = ACTIONS(4089), [sym_safe_nav] = ACTIONS(4089), @@ -179230,7 +179230,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4609), [anon_sym_AMP_AMP] = ACTIONS(4609), [anon_sym_PIPE_PIPE] = ACTIONS(4609), - [anon_sym_null] = ACTIONS(4607), [anon_sym_if] = ACTIONS(4607), [anon_sym_else] = ACTIONS(4607), [anon_sym_when] = ACTIONS(4607), @@ -179302,6 +179301,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4607), [anon_sym_false] = ACTIONS(4607), [anon_sym_SQUOTE] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4607), [sym__backtick_identifier] = ACTIONS(4609), [sym__automatic_semicolon] = ACTIONS(4609), [sym_safe_nav] = ACTIONS(4609), @@ -179336,7 +179336,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5127), [anon_sym_AMP_AMP] = ACTIONS(5127), [anon_sym_PIPE_PIPE] = ACTIONS(5127), - [anon_sym_null] = ACTIONS(5125), [anon_sym_if] = ACTIONS(5125), [anon_sym_else] = ACTIONS(5125), [anon_sym_when] = ACTIONS(5125), @@ -179408,6 +179407,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5125), [anon_sym_false] = ACTIONS(5125), [anon_sym_SQUOTE] = ACTIONS(5127), + [sym_null_literal] = ACTIONS(5125), [sym__backtick_identifier] = ACTIONS(5127), [sym__automatic_semicolon] = ACTIONS(5127), [sym_safe_nav] = ACTIONS(5127), @@ -179442,7 +179442,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5131), [anon_sym_AMP_AMP] = ACTIONS(5131), [anon_sym_PIPE_PIPE] = ACTIONS(5131), - [anon_sym_null] = ACTIONS(5129), [anon_sym_if] = ACTIONS(5129), [anon_sym_else] = ACTIONS(5129), [anon_sym_when] = ACTIONS(5129), @@ -179514,6 +179513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5129), [anon_sym_false] = ACTIONS(5129), [anon_sym_SQUOTE] = ACTIONS(5131), + [sym_null_literal] = ACTIONS(5129), [sym__backtick_identifier] = ACTIONS(5131), [sym__automatic_semicolon] = ACTIONS(5131), [sym_safe_nav] = ACTIONS(5131), @@ -179548,7 +179548,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4449), [anon_sym_AMP_AMP] = ACTIONS(4449), [anon_sym_PIPE_PIPE] = ACTIONS(4449), - [anon_sym_null] = ACTIONS(4447), [anon_sym_if] = ACTIONS(4447), [anon_sym_else] = ACTIONS(4447), [anon_sym_when] = ACTIONS(4447), @@ -179620,6 +179619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4447), [anon_sym_false] = ACTIONS(4447), [anon_sym_SQUOTE] = ACTIONS(4449), + [sym_null_literal] = ACTIONS(4447), [sym__backtick_identifier] = ACTIONS(4449), [sym__automatic_semicolon] = ACTIONS(4449), [sym_safe_nav] = ACTIONS(4449), @@ -179654,7 +179654,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5135), [anon_sym_AMP_AMP] = ACTIONS(5135), [anon_sym_PIPE_PIPE] = ACTIONS(5135), - [anon_sym_null] = ACTIONS(5133), [anon_sym_if] = ACTIONS(5133), [anon_sym_else] = ACTIONS(5133), [anon_sym_when] = ACTIONS(5133), @@ -179726,6 +179725,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5133), [anon_sym_false] = ACTIONS(5133), [anon_sym_SQUOTE] = ACTIONS(5135), + [sym_null_literal] = ACTIONS(5133), [sym__backtick_identifier] = ACTIONS(5135), [sym__automatic_semicolon] = ACTIONS(5135), [sym_safe_nav] = ACTIONS(5135), @@ -179760,7 +179760,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4185), [anon_sym_AMP_AMP] = ACTIONS(4185), [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_null] = ACTIONS(4182), [anon_sym_if] = ACTIONS(4182), [anon_sym_else] = ACTIONS(4182), [anon_sym_when] = ACTIONS(4182), @@ -179832,6 +179831,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4182), [anon_sym_false] = ACTIONS(4182), [anon_sym_SQUOTE] = ACTIONS(4185), + [sym_null_literal] = ACTIONS(4182), [sym__backtick_identifier] = ACTIONS(4185), [sym__automatic_semicolon] = ACTIONS(4185), [sym_safe_nav] = ACTIONS(4185), @@ -179866,7 +179866,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4217), [anon_sym_AMP_AMP] = ACTIONS(4217), [anon_sym_PIPE_PIPE] = ACTIONS(4217), - [anon_sym_null] = ACTIONS(4214), [anon_sym_if] = ACTIONS(4214), [anon_sym_else] = ACTIONS(4214), [anon_sym_when] = ACTIONS(4214), @@ -179938,6 +179937,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4214), [anon_sym_false] = ACTIONS(4214), [anon_sym_SQUOTE] = ACTIONS(4217), + [sym_null_literal] = ACTIONS(4214), [sym__backtick_identifier] = ACTIONS(4217), [sym__automatic_semicolon] = ACTIONS(4217), [sym_safe_nav] = ACTIONS(4217), @@ -179972,7 +179972,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5139), [anon_sym_AMP_AMP] = ACTIONS(5139), [anon_sym_PIPE_PIPE] = ACTIONS(5139), - [anon_sym_null] = ACTIONS(5137), [anon_sym_if] = ACTIONS(5137), [anon_sym_else] = ACTIONS(5137), [anon_sym_when] = ACTIONS(5137), @@ -180044,6 +180043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5137), [anon_sym_false] = ACTIONS(5137), [anon_sym_SQUOTE] = ACTIONS(5139), + [sym_null_literal] = ACTIONS(5137), [sym__backtick_identifier] = ACTIONS(5139), [sym__automatic_semicolon] = ACTIONS(5139), [sym_safe_nav] = ACTIONS(5139), @@ -180078,7 +180078,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5143), [anon_sym_AMP_AMP] = ACTIONS(5143), [anon_sym_PIPE_PIPE] = ACTIONS(5143), - [anon_sym_null] = ACTIONS(5141), [anon_sym_if] = ACTIONS(5141), [anon_sym_else] = ACTIONS(5141), [anon_sym_when] = ACTIONS(5141), @@ -180150,6 +180149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5141), [anon_sym_false] = ACTIONS(5141), [anon_sym_SQUOTE] = ACTIONS(5143), + [sym_null_literal] = ACTIONS(5141), [sym__backtick_identifier] = ACTIONS(5143), [sym__automatic_semicolon] = ACTIONS(5143), [sym_safe_nav] = ACTIONS(5143), @@ -180184,7 +180184,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -180256,6 +180255,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -180290,7 +180290,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5147), [anon_sym_AMP_AMP] = ACTIONS(5147), [anon_sym_PIPE_PIPE] = ACTIONS(5147), - [anon_sym_null] = ACTIONS(5145), [anon_sym_if] = ACTIONS(5145), [anon_sym_else] = ACTIONS(5145), [anon_sym_when] = ACTIONS(5145), @@ -180362,6 +180361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5145), [anon_sym_false] = ACTIONS(5145), [anon_sym_SQUOTE] = ACTIONS(5147), + [sym_null_literal] = ACTIONS(5145), [sym__backtick_identifier] = ACTIONS(5147), [sym__automatic_semicolon] = ACTIONS(5147), [sym_safe_nav] = ACTIONS(5147), @@ -180396,7 +180396,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -180468,6 +180467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -180502,7 +180502,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5151), [anon_sym_AMP_AMP] = ACTIONS(5151), [anon_sym_PIPE_PIPE] = ACTIONS(5151), - [anon_sym_null] = ACTIONS(5149), [anon_sym_if] = ACTIONS(5149), [anon_sym_else] = ACTIONS(5149), [anon_sym_when] = ACTIONS(5149), @@ -180574,6 +180573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5149), [anon_sym_false] = ACTIONS(5149), [anon_sym_SQUOTE] = ACTIONS(5151), + [sym_null_literal] = ACTIONS(5149), [sym__backtick_identifier] = ACTIONS(5151), [sym__automatic_semicolon] = ACTIONS(5151), [sym_safe_nav] = ACTIONS(5151), @@ -180608,7 +180608,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3240), [anon_sym_AMP_AMP] = ACTIONS(3240), [anon_sym_PIPE_PIPE] = ACTIONS(3240), - [anon_sym_null] = ACTIONS(3236), [anon_sym_if] = ACTIONS(3236), [anon_sym_else] = ACTIONS(3236), [anon_sym_when] = ACTIONS(3236), @@ -180680,6 +180679,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3236), [anon_sym_false] = ACTIONS(3236), [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), [sym__backtick_identifier] = ACTIONS(3240), [sym__automatic_semicolon] = ACTIONS(3240), [sym_safe_nav] = ACTIONS(3240), @@ -180714,7 +180714,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5155), [anon_sym_AMP_AMP] = ACTIONS(5155), [anon_sym_PIPE_PIPE] = ACTIONS(5155), - [anon_sym_null] = ACTIONS(5153), [anon_sym_if] = ACTIONS(5153), [anon_sym_else] = ACTIONS(5153), [anon_sym_when] = ACTIONS(5153), @@ -180786,6 +180785,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5153), [anon_sym_false] = ACTIONS(5153), [anon_sym_SQUOTE] = ACTIONS(5155), + [sym_null_literal] = ACTIONS(5153), [sym__backtick_identifier] = ACTIONS(5155), [sym__automatic_semicolon] = ACTIONS(5155), [sym_safe_nav] = ACTIONS(5155), @@ -180820,7 +180820,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4457), [anon_sym_AMP_AMP] = ACTIONS(4457), [anon_sym_PIPE_PIPE] = ACTIONS(4457), - [anon_sym_null] = ACTIONS(4455), [anon_sym_if] = ACTIONS(4455), [anon_sym_else] = ACTIONS(4455), [anon_sym_when] = ACTIONS(4455), @@ -180892,6 +180891,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4455), [anon_sym_false] = ACTIONS(4455), [anon_sym_SQUOTE] = ACTIONS(4457), + [sym_null_literal] = ACTIONS(4455), [sym__backtick_identifier] = ACTIONS(4457), [sym__automatic_semicolon] = ACTIONS(4457), [sym_safe_nav] = ACTIONS(4457), @@ -180926,7 +180926,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4337), [anon_sym_AMP_AMP] = ACTIONS(4337), [anon_sym_PIPE_PIPE] = ACTIONS(4337), - [anon_sym_null] = ACTIONS(4335), [anon_sym_if] = ACTIONS(4335), [anon_sym_else] = ACTIONS(4335), [anon_sym_when] = ACTIONS(4335), @@ -180998,6 +180997,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4335), [anon_sym_false] = ACTIONS(4335), [anon_sym_SQUOTE] = ACTIONS(4337), + [sym_null_literal] = ACTIONS(4335), [sym__backtick_identifier] = ACTIONS(4337), [sym__automatic_semicolon] = ACTIONS(4337), [sym_safe_nav] = ACTIONS(4337), @@ -181032,7 +181032,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5159), [anon_sym_AMP_AMP] = ACTIONS(5159), [anon_sym_PIPE_PIPE] = ACTIONS(5159), - [anon_sym_null] = ACTIONS(5157), [anon_sym_if] = ACTIONS(5157), [anon_sym_else] = ACTIONS(5157), [anon_sym_when] = ACTIONS(5157), @@ -181104,6 +181103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5157), [anon_sym_false] = ACTIONS(5157), [anon_sym_SQUOTE] = ACTIONS(5159), + [sym_null_literal] = ACTIONS(5157), [sym__backtick_identifier] = ACTIONS(5159), [sym__automatic_semicolon] = ACTIONS(5159), [sym_safe_nav] = ACTIONS(5159), @@ -181138,7 +181138,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5163), [anon_sym_AMP_AMP] = ACTIONS(5163), [anon_sym_PIPE_PIPE] = ACTIONS(5163), - [anon_sym_null] = ACTIONS(5161), [anon_sym_if] = ACTIONS(5161), [anon_sym_else] = ACTIONS(5161), [anon_sym_when] = ACTIONS(5161), @@ -181210,6 +181209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5161), [anon_sym_false] = ACTIONS(5161), [anon_sym_SQUOTE] = ACTIONS(5163), + [sym_null_literal] = ACTIONS(5161), [sym__backtick_identifier] = ACTIONS(5163), [sym__automatic_semicolon] = ACTIONS(5163), [sym_safe_nav] = ACTIONS(5163), @@ -181244,7 +181244,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4099), [anon_sym_AMP_AMP] = ACTIONS(4099), [anon_sym_PIPE_PIPE] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4097), [anon_sym_if] = ACTIONS(4097), [anon_sym_else] = ACTIONS(4097), [anon_sym_when] = ACTIONS(4097), @@ -181316,6 +181315,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4097), [anon_sym_false] = ACTIONS(4097), [anon_sym_SQUOTE] = ACTIONS(4099), + [sym_null_literal] = ACTIONS(4097), [sym__backtick_identifier] = ACTIONS(4099), [sym__automatic_semicolon] = ACTIONS(4099), [sym_safe_nav] = ACTIONS(4099), @@ -181370,7 +181370,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5173), [anon_sym_AMP_AMP] = ACTIONS(5175), [anon_sym_PIPE_PIPE] = ACTIONS(5177), - [anon_sym_null] = ACTIONS(3122), [anon_sym_if] = ACTIONS(3122), [anon_sym_else] = ACTIONS(3122), [anon_sym_when] = ACTIONS(3122), @@ -181421,6 +181420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3122), [anon_sym_false] = ACTIONS(3122), [anon_sym_SQUOTE] = ACTIONS(3124), + [sym_null_literal] = ACTIONS(3122), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3124), [sym_safe_nav] = ACTIONS(4479), @@ -181475,7 +181475,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3052), [anon_sym_AMP_AMP] = ACTIONS(3052), [anon_sym_PIPE_PIPE] = ACTIONS(3052), - [anon_sym_null] = ACTIONS(3050), [anon_sym_if] = ACTIONS(3050), [anon_sym_else] = ACTIONS(3050), [anon_sym_when] = ACTIONS(3050), @@ -181526,6 +181525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3050), [anon_sym_false] = ACTIONS(3050), [anon_sym_SQUOTE] = ACTIONS(3052), + [sym_null_literal] = ACTIONS(3050), [sym__backtick_identifier] = ACTIONS(3052), [sym__automatic_semicolon] = ACTIONS(3052), [sym_safe_nav] = ACTIONS(4479), @@ -181580,7 +181580,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3102), [anon_sym_AMP_AMP] = ACTIONS(3102), [anon_sym_PIPE_PIPE] = ACTIONS(3102), - [anon_sym_null] = ACTIONS(3100), [anon_sym_if] = ACTIONS(3100), [anon_sym_else] = ACTIONS(3100), [anon_sym_when] = ACTIONS(3100), @@ -181631,6 +181630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3100), [anon_sym_false] = ACTIONS(3100), [anon_sym_SQUOTE] = ACTIONS(3102), + [sym_null_literal] = ACTIONS(3100), [sym__backtick_identifier] = ACTIONS(3102), [sym__automatic_semicolon] = ACTIONS(3102), [sym_safe_nav] = ACTIONS(4479), @@ -182509,7 +182509,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4125), [anon_sym_AMP_AMP] = ACTIONS(4125), [anon_sym_PIPE_PIPE] = ACTIONS(4125), - [anon_sym_null] = ACTIONS(4123), [anon_sym_if] = ACTIONS(4123), [anon_sym_else] = ACTIONS(4123), [anon_sym_when] = ACTIONS(4123), @@ -182576,6 +182575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4123), [anon_sym_false] = ACTIONS(4123), [anon_sym_SQUOTE] = ACTIONS(4125), + [sym_null_literal] = ACTIONS(4123), [sym__backtick_identifier] = ACTIONS(4125), [sym__automatic_semicolon] = ACTIONS(4125), [sym_safe_nav] = ACTIONS(4125), @@ -183139,7 +183139,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4079), [anon_sym_AMP_AMP] = ACTIONS(4079), [anon_sym_PIPE_PIPE] = ACTIONS(4079), - [anon_sym_null] = ACTIONS(4077), [anon_sym_if] = ACTIONS(4077), [anon_sym_else] = ACTIONS(4077), [anon_sym_when] = ACTIONS(4077), @@ -183206,6 +183205,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4077), [anon_sym_false] = ACTIONS(4077), [anon_sym_SQUOTE] = ACTIONS(4079), + [sym_null_literal] = ACTIONS(4077), [sym__backtick_identifier] = ACTIONS(4079), [sym__automatic_semicolon] = ACTIONS(4079), [sym_safe_nav] = ACTIONS(4079), @@ -183244,7 +183244,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4089), [anon_sym_AMP_AMP] = ACTIONS(4089), [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_null] = ACTIONS(4087), [anon_sym_if] = ACTIONS(4087), [anon_sym_else] = ACTIONS(4087), [anon_sym_when] = ACTIONS(4087), @@ -183311,6 +183310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4087), [anon_sym_false] = ACTIONS(4087), [anon_sym_SQUOTE] = ACTIONS(4089), + [sym_null_literal] = ACTIONS(4087), [sym__backtick_identifier] = ACTIONS(4089), [sym__automatic_semicolon] = ACTIONS(4089), [sym_safe_nav] = ACTIONS(4089), @@ -183390,30 +183390,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -183664,7 +183664,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4099), [anon_sym_AMP_AMP] = ACTIONS(4099), [anon_sym_PIPE_PIPE] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4097), [anon_sym_if] = ACTIONS(4097), [anon_sym_else] = ACTIONS(4097), [anon_sym_when] = ACTIONS(4097), @@ -183731,6 +183730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4097), [anon_sym_false] = ACTIONS(4097), [anon_sym_SQUOTE] = ACTIONS(4099), + [sym_null_literal] = ACTIONS(4097), [sym__backtick_identifier] = ACTIONS(4099), [sym__automatic_semicolon] = ACTIONS(4099), [sym_safe_nav] = ACTIONS(4099), @@ -183765,7 +183765,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4188), [anon_sym_AMP_AMP] = ACTIONS(4188), [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(4190), [anon_sym_when] = ACTIONS(3938), @@ -183837,6 +183836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(4185), [sym_safe_nav] = ACTIONS(4188), [sym_multiline_comment] = ACTIONS(3), @@ -183870,7 +183870,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4220), [anon_sym_AMP_AMP] = ACTIONS(4220), [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(4222), [anon_sym_when] = ACTIONS(3938), @@ -183942,6 +183941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(4217), [sym_safe_nav] = ACTIONS(4220), [sym_multiline_comment] = ACTIONS(3), @@ -184020,30 +184020,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -184205,7 +184205,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3143), [anon_sym_AMP_AMP] = ACTIONS(3143), [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_null] = ACTIONS(3141), [anon_sym_if] = ACTIONS(3141), [anon_sym_else] = ACTIONS(3141), [anon_sym_when] = ACTIONS(3141), @@ -184256,6 +184255,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3141), [anon_sym_false] = ACTIONS(3141), [anon_sym_SQUOTE] = ACTIONS(3143), + [sym_null_literal] = ACTIONS(3141), [sym__backtick_identifier] = ACTIONS(3143), [sym__automatic_semicolon] = ACTIONS(3143), [sym_safe_nav] = ACTIONS(4479), @@ -184310,7 +184310,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5173), [anon_sym_AMP_AMP] = ACTIONS(3067), [anon_sym_PIPE_PIPE] = ACTIONS(3067), - [anon_sym_null] = ACTIONS(3065), [anon_sym_if] = ACTIONS(3065), [anon_sym_else] = ACTIONS(3065), [anon_sym_when] = ACTIONS(3065), @@ -184361,6 +184360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3065), [anon_sym_false] = ACTIONS(3065), [anon_sym_SQUOTE] = ACTIONS(3067), + [sym_null_literal] = ACTIONS(3065), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3067), [sym_safe_nav] = ACTIONS(4479), @@ -184440,30 +184440,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -184520,7 +184520,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5173), [anon_sym_AMP_AMP] = ACTIONS(3059), [anon_sym_PIPE_PIPE] = ACTIONS(3059), - [anon_sym_null] = ACTIONS(3057), [anon_sym_if] = ACTIONS(3057), [anon_sym_else] = ACTIONS(3057), [anon_sym_when] = ACTIONS(3057), @@ -184571,6 +184570,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3057), [anon_sym_false] = ACTIONS(3057), [anon_sym_SQUOTE] = ACTIONS(3059), + [sym_null_literal] = ACTIONS(3057), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3059), [sym_safe_nav] = ACTIONS(4479), @@ -184625,7 +184625,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5173), [anon_sym_AMP_AMP] = ACTIONS(3086), [anon_sym_PIPE_PIPE] = ACTIONS(3086), - [anon_sym_null] = ACTIONS(3084), [anon_sym_if] = ACTIONS(3084), [anon_sym_else] = ACTIONS(3084), [anon_sym_when] = ACTIONS(3084), @@ -184676,6 +184675,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3084), [anon_sym_false] = ACTIONS(3084), [anon_sym_SQUOTE] = ACTIONS(3086), + [sym_null_literal] = ACTIONS(3084), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3086), [sym_safe_nav] = ACTIONS(4479), @@ -184835,7 +184835,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5173), [anon_sym_AMP_AMP] = ACTIONS(5175), [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_null] = ACTIONS(3137), [anon_sym_if] = ACTIONS(3137), [anon_sym_else] = ACTIONS(3137), [anon_sym_when] = ACTIONS(3137), @@ -184886,6 +184885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3137), [anon_sym_false] = ACTIONS(3137), [anon_sym_SQUOTE] = ACTIONS(3139), + [sym_null_literal] = ACTIONS(3137), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3139), [sym_safe_nav] = ACTIONS(4479), @@ -184940,7 +184940,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5173), [anon_sym_AMP_AMP] = ACTIONS(5175), [anon_sym_PIPE_PIPE] = ACTIONS(5177), - [anon_sym_null] = ACTIONS(3044), [anon_sym_if] = ACTIONS(3044), [anon_sym_else] = ACTIONS(3044), [anon_sym_when] = ACTIONS(3044), @@ -184991,6 +184990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3044), [anon_sym_false] = ACTIONS(3044), [anon_sym_SQUOTE] = ACTIONS(3046), + [sym_null_literal] = ACTIONS(3044), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3046), [sym_safe_nav] = ACTIONS(4479), @@ -185045,7 +185045,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5173), [anon_sym_AMP_AMP] = ACTIONS(3078), [anon_sym_PIPE_PIPE] = ACTIONS(3078), - [anon_sym_null] = ACTIONS(3076), [anon_sym_if] = ACTIONS(3076), [anon_sym_else] = ACTIONS(3076), [anon_sym_when] = ACTIONS(3076), @@ -185096,6 +185095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3076), [anon_sym_false] = ACTIONS(3076), [anon_sym_SQUOTE] = ACTIONS(3078), + [sym_null_literal] = ACTIONS(3076), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3078), [sym_safe_nav] = ACTIONS(4479), @@ -185150,7 +185150,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3132), [anon_sym_AMP_AMP] = ACTIONS(3132), [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), [anon_sym_if] = ACTIONS(3130), [anon_sym_else] = ACTIONS(3130), [anon_sym_when] = ACTIONS(3130), @@ -185201,6 +185200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3130), [anon_sym_false] = ACTIONS(3130), [anon_sym_SQUOTE] = ACTIONS(3132), + [sym_null_literal] = ACTIONS(3130), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3132), [sym_safe_nav] = ACTIONS(4479), @@ -185255,7 +185255,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3117), [anon_sym_AMP_AMP] = ACTIONS(3117), [anon_sym_PIPE_PIPE] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3115), [anon_sym_if] = ACTIONS(3115), [anon_sym_else] = ACTIONS(3115), [anon_sym_when] = ACTIONS(3115), @@ -185306,6 +185305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3115), [anon_sym_false] = ACTIONS(3115), [anon_sym_SQUOTE] = ACTIONS(3117), + [sym_null_literal] = ACTIONS(3115), [sym__backtick_identifier] = ACTIONS(3117), [sym__automatic_semicolon] = ACTIONS(3117), [sym_safe_nav] = ACTIONS(4479), @@ -185385,30 +185385,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -185490,30 +185490,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -185570,7 +185570,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5173), [anon_sym_AMP_AMP] = ACTIONS(5175), [anon_sym_PIPE_PIPE] = ACTIONS(5177), - [anon_sym_null] = ACTIONS(3107), [anon_sym_if] = ACTIONS(3107), [anon_sym_else] = ACTIONS(3107), [anon_sym_when] = ACTIONS(3107), @@ -185621,6 +185620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3107), [anon_sym_false] = ACTIONS(3107), [anon_sym_SQUOTE] = ACTIONS(3109), + [sym_null_literal] = ACTIONS(3107), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3109), [sym_safe_nav] = ACTIONS(4479), @@ -185675,7 +185675,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5173), [anon_sym_AMP_AMP] = ACTIONS(5175), [anon_sym_PIPE_PIPE] = ACTIONS(5177), - [anon_sym_null] = ACTIONS(3080), [anon_sym_if] = ACTIONS(3080), [anon_sym_else] = ACTIONS(3080), [anon_sym_when] = ACTIONS(3080), @@ -185726,6 +185725,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3080), [anon_sym_false] = ACTIONS(3080), [anon_sym_SQUOTE] = ACTIONS(3082), + [sym_null_literal] = ACTIONS(3080), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3082), [sym_safe_nav] = ACTIONS(4479), @@ -185780,7 +185780,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5173), [anon_sym_AMP_AMP] = ACTIONS(5175), [anon_sym_PIPE_PIPE] = ACTIONS(5177), - [anon_sym_null] = ACTIONS(3096), [anon_sym_if] = ACTIONS(3096), [anon_sym_else] = ACTIONS(3096), [anon_sym_when] = ACTIONS(3096), @@ -185831,6 +185830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3096), [anon_sym_false] = ACTIONS(3096), [anon_sym_SQUOTE] = ACTIONS(3098), + [sym_null_literal] = ACTIONS(3096), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3098), [sym_safe_nav] = ACTIONS(4479), @@ -185869,7 +185869,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4144), [anon_sym_AMP_AMP] = ACTIONS(4144), [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4142), [anon_sym_if] = ACTIONS(4142), [anon_sym_else] = ACTIONS(4142), [anon_sym_when] = ACTIONS(4142), @@ -185936,6 +185935,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4142), [anon_sym_false] = ACTIONS(4142), [anon_sym_SQUOTE] = ACTIONS(4144), + [sym_null_literal] = ACTIONS(4142), [sym__backtick_identifier] = ACTIONS(4144), [sym__automatic_semicolon] = ACTIONS(4144), [sym_safe_nav] = ACTIONS(4144), @@ -185990,7 +185990,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5173), [anon_sym_AMP_AMP] = ACTIONS(5175), [anon_sym_PIPE_PIPE] = ACTIONS(5177), - [anon_sym_null] = ACTIONS(3126), [anon_sym_if] = ACTIONS(3126), [anon_sym_else] = ACTIONS(3126), [anon_sym_when] = ACTIONS(3126), @@ -186041,6 +186040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3126), [anon_sym_false] = ACTIONS(3126), [anon_sym_SQUOTE] = ACTIONS(3128), + [sym_null_literal] = ACTIONS(3126), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3128), [sym_safe_nav] = ACTIONS(4479), @@ -186120,30 +186120,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3660), [anon_sym_DASH_DASH] = ACTIONS(3660), [anon_sym_BANG_BANG] = ACTIONS(3660), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -186200,7 +186200,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5173), [anon_sym_AMP_AMP] = ACTIONS(5175), [anon_sym_PIPE_PIPE] = ACTIONS(5177), - [anon_sym_null] = ACTIONS(3111), [anon_sym_if] = ACTIONS(3111), [anon_sym_else] = ACTIONS(3111), [anon_sym_when] = ACTIONS(3111), @@ -186251,6 +186250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3111), [anon_sym_false] = ACTIONS(3111), [anon_sym_SQUOTE] = ACTIONS(3113), + [sym_null_literal] = ACTIONS(3111), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3113), [sym_safe_nav] = ACTIONS(4479), @@ -186498,7 +186498,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4262), [anon_sym_AMP_AMP] = ACTIONS(4262), [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_null] = ACTIONS(4260), [anon_sym_if] = ACTIONS(4260), [anon_sym_else] = ACTIONS(4260), [anon_sym_when] = ACTIONS(4260), @@ -186565,6 +186564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4260), [anon_sym_false] = ACTIONS(4260), [anon_sym_SQUOTE] = ACTIONS(4262), + [sym_null_literal] = ACTIONS(4260), [sym__backtick_identifier] = ACTIONS(4262), [sym__automatic_semicolon] = ACTIONS(4262), [sym_safe_nav] = ACTIONS(4262), @@ -186639,38 +186639,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2545), - [anon_sym_if] = ACTIONS(2548), - [anon_sym_when] = ACTIONS(2551), - [anon_sym_try] = ACTIONS(2554), - [anon_sym_throw] = ACTIONS(2557), - [anon_sym_return] = ACTIONS(2560), - [anon_sym_continue] = ACTIONS(2563), - [anon_sym_break] = ACTIONS(2563), - [anon_sym_COLON_COLON] = ACTIONS(2566), + [anon_sym_if] = ACTIONS(2545), + [anon_sym_when] = ACTIONS(2548), + [anon_sym_try] = ACTIONS(2551), + [anon_sym_throw] = ACTIONS(2554), + [anon_sym_return] = ACTIONS(2557), + [anon_sym_continue] = ACTIONS(2560), + [anon_sym_break] = ACTIONS(2560), + [anon_sym_COLON_COLON] = ACTIONS(2563), [anon_sym_PLUS] = ACTIONS(2542), [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_PLUS_PLUS] = ACTIONS(2569), - [anon_sym_DASH_DASH] = ACTIONS(2569), - [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_PLUS_PLUS] = ACTIONS(2566), + [anon_sym_DASH_DASH] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), [anon_sym_data] = ACTIONS(5234), [anon_sym_inner] = ACTIONS(5234), [anon_sym_value] = ACTIONS(5234), [anon_sym_expect] = ACTIONS(5234), [anon_sym_actual] = ACTIONS(5234), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2091), - [anon_sym_continue_AT] = ACTIONS(2572), - [anon_sym_break_AT] = ACTIONS(2575), - [anon_sym_this_AT] = ACTIONS(2578), - [anon_sym_super_AT] = ACTIONS(2581), - [sym_real_literal] = ACTIONS(2584), - [sym_integer_literal] = ACTIONS(2587), - [sym_hex_literal] = ACTIONS(2590), - [sym_bin_literal] = ACTIONS(2590), - [anon_sym_true] = ACTIONS(2593), - [anon_sym_false] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_return_AT] = ACTIONS(2088), + [anon_sym_continue_AT] = ACTIONS(2569), + [anon_sym_break_AT] = ACTIONS(2572), + [anon_sym_this_AT] = ACTIONS(2575), + [anon_sym_super_AT] = ACTIONS(2578), + [sym_real_literal] = ACTIONS(2581), + [sym_integer_literal] = ACTIONS(2584), + [sym_hex_literal] = ACTIONS(2587), + [sym_bin_literal] = ACTIONS(2587), + [anon_sym_true] = ACTIONS(2590), + [anon_sym_false] = ACTIONS(2590), + [anon_sym_SQUOTE] = ACTIONS(2593), + [sym_null_literal] = ACTIONS(2596), [sym__backtick_identifier] = ACTIONS(2599), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2602), @@ -186706,7 +186706,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4125), [anon_sym_AMP_AMP] = ACTIONS(4125), [anon_sym_PIPE_PIPE] = ACTIONS(4125), - [anon_sym_null] = ACTIONS(4123), [anon_sym_if] = ACTIONS(4123), [anon_sym_else] = ACTIONS(4123), [anon_sym_when] = ACTIONS(4123), @@ -186773,6 +186772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4123), [anon_sym_false] = ACTIONS(4123), [anon_sym_SQUOTE] = ACTIONS(4125), + [sym_null_literal] = ACTIONS(4123), [sym__backtick_identifier] = ACTIONS(4125), [sym__automatic_semicolon] = ACTIONS(4125), [sym_safe_nav] = ACTIONS(4125), @@ -186847,15 +186847,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2641), [anon_sym_if] = ACTIONS(2912), - [anon_sym_when] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2650), + [anon_sym_when] = ACTIONS(2644), + [anon_sym_try] = ACTIONS(2647), [anon_sym_throw] = ACTIONS(2915), [anon_sym_return] = ACTIONS(2918), - [anon_sym_continue] = ACTIONS(2659), - [anon_sym_break] = ACTIONS(2659), - [anon_sym_COLON_COLON] = ACTIONS(2662), + [anon_sym_continue] = ACTIONS(2656), + [anon_sym_break] = ACTIONS(2656), + [anon_sym_COLON_COLON] = ACTIONS(2659), [anon_sym_PLUS] = ACTIONS(2909), [anon_sym_DASH] = ACTIONS(2909), [anon_sym_PLUS_PLUS] = ACTIONS(2921), @@ -186867,18 +186866,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(5247), [anon_sym_actual] = ACTIONS(5247), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2668), - [anon_sym_continue_AT] = ACTIONS(2671), - [anon_sym_break_AT] = ACTIONS(2674), - [anon_sym_this_AT] = ACTIONS(2677), - [anon_sym_super_AT] = ACTIONS(2680), - [sym_real_literal] = ACTIONS(2683), - [sym_integer_literal] = ACTIONS(2686), - [sym_hex_literal] = ACTIONS(2689), - [sym_bin_literal] = ACTIONS(2689), - [anon_sym_true] = ACTIONS(2692), - [anon_sym_false] = ACTIONS(2692), - [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_return_AT] = ACTIONS(2665), + [anon_sym_continue_AT] = ACTIONS(2668), + [anon_sym_break_AT] = ACTIONS(2671), + [anon_sym_this_AT] = ACTIONS(2674), + [anon_sym_super_AT] = ACTIONS(2677), + [sym_real_literal] = ACTIONS(2680), + [sym_integer_literal] = ACTIONS(2683), + [sym_hex_literal] = ACTIONS(2686), + [sym_bin_literal] = ACTIONS(2686), + [anon_sym_true] = ACTIONS(2689), + [anon_sym_false] = ACTIONS(2689), + [anon_sym_SQUOTE] = ACTIONS(2692), + [sym_null_literal] = ACTIONS(2695), [sym__backtick_identifier] = ACTIONS(2698), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2701), @@ -186914,7 +186914,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4232), [anon_sym_AMP_AMP] = ACTIONS(4232), [anon_sym_PIPE_PIPE] = ACTIONS(4232), - [anon_sym_null] = ACTIONS(4230), [anon_sym_if] = ACTIONS(4230), [anon_sym_else] = ACTIONS(4230), [anon_sym_when] = ACTIONS(4230), @@ -186981,6 +186980,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4230), [anon_sym_false] = ACTIONS(4230), [anon_sym_SQUOTE] = ACTIONS(4232), + [sym_null_literal] = ACTIONS(4230), [sym__backtick_identifier] = ACTIONS(4232), [sym__automatic_semicolon] = ACTIONS(4232), [sym_safe_nav] = ACTIONS(4232), @@ -187055,15 +187055,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2064), [anon_sym_if] = ACTIONS(2280), - [anon_sym_when] = ACTIONS(2070), - [anon_sym_try] = ACTIONS(2073), + [anon_sym_when] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2070), [anon_sym_throw] = ACTIONS(2283), [anon_sym_return] = ACTIONS(2286), - [anon_sym_continue] = ACTIONS(2082), - [anon_sym_break] = ACTIONS(2082), - [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_continue] = ACTIONS(2079), + [anon_sym_break] = ACTIONS(2079), + [anon_sym_COLON_COLON] = ACTIONS(2082), [anon_sym_PLUS] = ACTIONS(2277), [anon_sym_DASH] = ACTIONS(2277), [anon_sym_PLUS_PLUS] = ACTIONS(2289), @@ -187075,18 +187074,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(5256), [anon_sym_actual] = ACTIONS(5256), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2091), - [anon_sym_continue_AT] = ACTIONS(2094), - [anon_sym_break_AT] = ACTIONS(2097), - [anon_sym_this_AT] = ACTIONS(2100), - [anon_sym_super_AT] = ACTIONS(2103), - [sym_real_literal] = ACTIONS(2106), - [sym_integer_literal] = ACTIONS(2109), - [sym_hex_literal] = ACTIONS(2112), - [sym_bin_literal] = ACTIONS(2112), - [anon_sym_true] = ACTIONS(2115), - [anon_sym_false] = ACTIONS(2115), - [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_return_AT] = ACTIONS(2088), + [anon_sym_continue_AT] = ACTIONS(2091), + [anon_sym_break_AT] = ACTIONS(2094), + [anon_sym_this_AT] = ACTIONS(2097), + [anon_sym_super_AT] = ACTIONS(2100), + [sym_real_literal] = ACTIONS(2103), + [sym_integer_literal] = ACTIONS(2106), + [sym_hex_literal] = ACTIONS(2109), + [sym_bin_literal] = ACTIONS(2109), + [anon_sym_true] = ACTIONS(2112), + [anon_sym_false] = ACTIONS(2112), + [anon_sym_SQUOTE] = ACTIONS(2115), + [sym_null_literal] = ACTIONS(2118), [sym__backtick_identifier] = ACTIONS(2121), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2124), @@ -187164,30 +187164,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -187263,15 +187263,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2545), [anon_sym_if] = ACTIONS(2978), - [anon_sym_when] = ACTIONS(2551), - [anon_sym_try] = ACTIONS(2554), + [anon_sym_when] = ACTIONS(2548), + [anon_sym_try] = ACTIONS(2551), [anon_sym_throw] = ACTIONS(2981), [anon_sym_return] = ACTIONS(2984), - [anon_sym_continue] = ACTIONS(2563), - [anon_sym_break] = ACTIONS(2563), - [anon_sym_COLON_COLON] = ACTIONS(2566), + [anon_sym_continue] = ACTIONS(2560), + [anon_sym_break] = ACTIONS(2560), + [anon_sym_COLON_COLON] = ACTIONS(2563), [anon_sym_PLUS] = ACTIONS(2975), [anon_sym_DASH] = ACTIONS(2975), [anon_sym_PLUS_PLUS] = ACTIONS(2987), @@ -187283,18 +187282,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(5234), [anon_sym_actual] = ACTIONS(5234), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2091), - [anon_sym_continue_AT] = ACTIONS(2572), - [anon_sym_break_AT] = ACTIONS(2575), - [anon_sym_this_AT] = ACTIONS(2578), - [anon_sym_super_AT] = ACTIONS(2581), - [sym_real_literal] = ACTIONS(2584), - [sym_integer_literal] = ACTIONS(2587), - [sym_hex_literal] = ACTIONS(2590), - [sym_bin_literal] = ACTIONS(2590), - [anon_sym_true] = ACTIONS(2593), - [anon_sym_false] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_return_AT] = ACTIONS(2088), + [anon_sym_continue_AT] = ACTIONS(2569), + [anon_sym_break_AT] = ACTIONS(2572), + [anon_sym_this_AT] = ACTIONS(2575), + [anon_sym_super_AT] = ACTIONS(2578), + [sym_real_literal] = ACTIONS(2581), + [sym_integer_literal] = ACTIONS(2584), + [sym_hex_literal] = ACTIONS(2587), + [sym_bin_literal] = ACTIONS(2587), + [anon_sym_true] = ACTIONS(2590), + [anon_sym_false] = ACTIONS(2590), + [anon_sym_SQUOTE] = ACTIONS(2593), + [sym_null_literal] = ACTIONS(2596), [sym__backtick_identifier] = ACTIONS(2599), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2602), @@ -187367,15 +187367,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2328), [anon_sym_if] = ACTIONS(2890), - [anon_sym_when] = ACTIONS(2334), - [anon_sym_try] = ACTIONS(2337), + [anon_sym_when] = ACTIONS(2331), + [anon_sym_try] = ACTIONS(2334), [anon_sym_throw] = ACTIONS(2893), [anon_sym_return] = ACTIONS(2896), - [anon_sym_continue] = ACTIONS(2346), - [anon_sym_break] = ACTIONS(2346), - [anon_sym_COLON_COLON] = ACTIONS(2349), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_break] = ACTIONS(2343), + [anon_sym_COLON_COLON] = ACTIONS(2346), [anon_sym_PLUS] = ACTIONS(2887), [anon_sym_DASH] = ACTIONS(2887), [anon_sym_PLUS_PLUS] = ACTIONS(2899), @@ -187387,18 +187386,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(5274), [anon_sym_actual] = ACTIONS(5274), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2190), - [anon_sym_continue_AT] = ACTIONS(2355), - [anon_sym_break_AT] = ACTIONS(2358), - [anon_sym_this_AT] = ACTIONS(2361), - [anon_sym_super_AT] = ACTIONS(2364), - [sym_real_literal] = ACTIONS(2367), - [sym_integer_literal] = ACTIONS(2370), - [sym_hex_literal] = ACTIONS(2373), - [sym_bin_literal] = ACTIONS(2373), - [anon_sym_true] = ACTIONS(2376), - [anon_sym_false] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(2379), + [anon_sym_return_AT] = ACTIONS(2187), + [anon_sym_continue_AT] = ACTIONS(2352), + [anon_sym_break_AT] = ACTIONS(2355), + [anon_sym_this_AT] = ACTIONS(2358), + [anon_sym_super_AT] = ACTIONS(2361), + [sym_real_literal] = ACTIONS(2364), + [sym_integer_literal] = ACTIONS(2367), + [sym_hex_literal] = ACTIONS(2370), + [sym_bin_literal] = ACTIONS(2370), + [anon_sym_true] = ACTIONS(2373), + [anon_sym_false] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2376), + [sym_null_literal] = ACTIONS(2379), [sym__backtick_identifier] = ACTIONS(2382), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2385), @@ -187471,15 +187471,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2163), [anon_sym_if] = ACTIONS(2258), - [anon_sym_when] = ACTIONS(2169), - [anon_sym_try] = ACTIONS(2172), + [anon_sym_when] = ACTIONS(2166), + [anon_sym_try] = ACTIONS(2169), [anon_sym_throw] = ACTIONS(2261), [anon_sym_return] = ACTIONS(2264), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_COLON_COLON] = ACTIONS(2181), [anon_sym_PLUS] = ACTIONS(2255), [anon_sym_DASH] = ACTIONS(2255), [anon_sym_PLUS_PLUS] = ACTIONS(2267), @@ -187491,18 +187490,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(5283), [anon_sym_actual] = ACTIONS(5283), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2190), - [anon_sym_continue_AT] = ACTIONS(2193), - [anon_sym_break_AT] = ACTIONS(2196), - [anon_sym_this_AT] = ACTIONS(2199), - [anon_sym_super_AT] = ACTIONS(2202), - [sym_real_literal] = ACTIONS(2205), - [sym_integer_literal] = ACTIONS(2208), - [sym_hex_literal] = ACTIONS(2211), - [sym_bin_literal] = ACTIONS(2211), - [anon_sym_true] = ACTIONS(2214), - [anon_sym_false] = ACTIONS(2214), - [anon_sym_SQUOTE] = ACTIONS(2217), + [anon_sym_return_AT] = ACTIONS(2187), + [anon_sym_continue_AT] = ACTIONS(2190), + [anon_sym_break_AT] = ACTIONS(2193), + [anon_sym_this_AT] = ACTIONS(2196), + [anon_sym_super_AT] = ACTIONS(2199), + [sym_real_literal] = ACTIONS(2202), + [sym_integer_literal] = ACTIONS(2205), + [sym_hex_literal] = ACTIONS(2208), + [sym_bin_literal] = ACTIONS(2208), + [anon_sym_true] = ACTIONS(2211), + [anon_sym_false] = ACTIONS(2211), + [anon_sym_SQUOTE] = ACTIONS(2214), + [sym_null_literal] = ACTIONS(2217), [sym__backtick_identifier] = ACTIONS(2220), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2223), @@ -187575,15 +187575,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2446), [anon_sym_if] = ACTIONS(2934), - [anon_sym_when] = ACTIONS(2452), - [anon_sym_try] = ACTIONS(2455), + [anon_sym_when] = ACTIONS(2449), + [anon_sym_try] = ACTIONS(2452), [anon_sym_throw] = ACTIONS(2937), [anon_sym_return] = ACTIONS(2940), - [anon_sym_continue] = ACTIONS(2464), - [anon_sym_break] = ACTIONS(2464), - [anon_sym_COLON_COLON] = ACTIONS(2467), + [anon_sym_continue] = ACTIONS(2461), + [anon_sym_break] = ACTIONS(2461), + [anon_sym_COLON_COLON] = ACTIONS(2464), [anon_sym_PLUS] = ACTIONS(2931), [anon_sym_DASH] = ACTIONS(2931), [anon_sym_PLUS_PLUS] = ACTIONS(2943), @@ -187595,18 +187594,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(5292), [anon_sym_actual] = ACTIONS(5292), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2473), - [anon_sym_continue_AT] = ACTIONS(2476), - [anon_sym_break_AT] = ACTIONS(2479), - [anon_sym_this_AT] = ACTIONS(2482), - [anon_sym_super_AT] = ACTIONS(2485), - [sym_real_literal] = ACTIONS(2488), - [sym_integer_literal] = ACTIONS(2491), - [sym_hex_literal] = ACTIONS(2494), - [sym_bin_literal] = ACTIONS(2494), - [anon_sym_true] = ACTIONS(2497), - [anon_sym_false] = ACTIONS(2497), - [anon_sym_SQUOTE] = ACTIONS(2500), + [anon_sym_return_AT] = ACTIONS(2470), + [anon_sym_continue_AT] = ACTIONS(2473), + [anon_sym_break_AT] = ACTIONS(2476), + [anon_sym_this_AT] = ACTIONS(2479), + [anon_sym_super_AT] = ACTIONS(2482), + [sym_real_literal] = ACTIONS(2485), + [sym_integer_literal] = ACTIONS(2488), + [sym_hex_literal] = ACTIONS(2491), + [sym_bin_literal] = ACTIONS(2491), + [anon_sym_true] = ACTIONS(2494), + [anon_sym_false] = ACTIONS(2494), + [anon_sym_SQUOTE] = ACTIONS(2497), + [sym_null_literal] = ACTIONS(2500), [sym__backtick_identifier] = ACTIONS(2503), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2506), @@ -187679,15 +187679,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2163), [anon_sym_if] = ACTIONS(2824), - [anon_sym_when] = ACTIONS(2169), - [anon_sym_try] = ACTIONS(2172), + [anon_sym_when] = ACTIONS(2166), + [anon_sym_try] = ACTIONS(2169), [anon_sym_throw] = ACTIONS(2827), [anon_sym_return] = ACTIONS(2830), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_COLON_COLON] = ACTIONS(2181), [anon_sym_PLUS] = ACTIONS(2821), [anon_sym_DASH] = ACTIONS(2821), [anon_sym_PLUS_PLUS] = ACTIONS(2833), @@ -187699,18 +187698,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(5283), [anon_sym_actual] = ACTIONS(5283), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2190), - [anon_sym_continue_AT] = ACTIONS(2193), - [anon_sym_break_AT] = ACTIONS(2196), - [anon_sym_this_AT] = ACTIONS(2199), - [anon_sym_super_AT] = ACTIONS(2202), - [sym_real_literal] = ACTIONS(2205), - [sym_integer_literal] = ACTIONS(2208), - [sym_hex_literal] = ACTIONS(2211), - [sym_bin_literal] = ACTIONS(2211), - [anon_sym_true] = ACTIONS(2214), - [anon_sym_false] = ACTIONS(2214), - [anon_sym_SQUOTE] = ACTIONS(2217), + [anon_sym_return_AT] = ACTIONS(2187), + [anon_sym_continue_AT] = ACTIONS(2190), + [anon_sym_break_AT] = ACTIONS(2193), + [anon_sym_this_AT] = ACTIONS(2196), + [anon_sym_super_AT] = ACTIONS(2199), + [sym_real_literal] = ACTIONS(2202), + [sym_integer_literal] = ACTIONS(2205), + [sym_hex_literal] = ACTIONS(2208), + [sym_bin_literal] = ACTIONS(2208), + [anon_sym_true] = ACTIONS(2211), + [anon_sym_false] = ACTIONS(2211), + [anon_sym_SQUOTE] = ACTIONS(2214), + [sym_null_literal] = ACTIONS(2217), [sym__backtick_identifier] = ACTIONS(2220), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2223), @@ -187783,15 +187783,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2446), [anon_sym_if] = ACTIONS(2758), - [anon_sym_when] = ACTIONS(2452), - [anon_sym_try] = ACTIONS(2455), + [anon_sym_when] = ACTIONS(2449), + [anon_sym_try] = ACTIONS(2452), [anon_sym_throw] = ACTIONS(2761), [anon_sym_return] = ACTIONS(2764), - [anon_sym_continue] = ACTIONS(2464), - [anon_sym_break] = ACTIONS(2464), - [anon_sym_COLON_COLON] = ACTIONS(2467), + [anon_sym_continue] = ACTIONS(2461), + [anon_sym_break] = ACTIONS(2461), + [anon_sym_COLON_COLON] = ACTIONS(2464), [anon_sym_PLUS] = ACTIONS(2755), [anon_sym_DASH] = ACTIONS(2755), [anon_sym_PLUS_PLUS] = ACTIONS(2767), @@ -187803,18 +187802,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(5292), [anon_sym_actual] = ACTIONS(5292), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2473), - [anon_sym_continue_AT] = ACTIONS(2476), - [anon_sym_break_AT] = ACTIONS(2479), - [anon_sym_this_AT] = ACTIONS(2482), - [anon_sym_super_AT] = ACTIONS(2485), - [sym_real_literal] = ACTIONS(2488), - [sym_integer_literal] = ACTIONS(2491), - [sym_hex_literal] = ACTIONS(2494), - [sym_bin_literal] = ACTIONS(2494), - [anon_sym_true] = ACTIONS(2497), - [anon_sym_false] = ACTIONS(2497), - [anon_sym_SQUOTE] = ACTIONS(2500), + [anon_sym_return_AT] = ACTIONS(2470), + [anon_sym_continue_AT] = ACTIONS(2473), + [anon_sym_break_AT] = ACTIONS(2476), + [anon_sym_this_AT] = ACTIONS(2479), + [anon_sym_super_AT] = ACTIONS(2482), + [sym_real_literal] = ACTIONS(2485), + [sym_integer_literal] = ACTIONS(2488), + [sym_hex_literal] = ACTIONS(2491), + [sym_bin_literal] = ACTIONS(2491), + [anon_sym_true] = ACTIONS(2494), + [anon_sym_false] = ACTIONS(2494), + [anon_sym_SQUOTE] = ACTIONS(2497), + [sym_null_literal] = ACTIONS(2500), [sym__backtick_identifier] = ACTIONS(2503), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2506), @@ -187887,38 +187887,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2446), - [anon_sym_if] = ACTIONS(2449), - [anon_sym_when] = ACTIONS(2452), - [anon_sym_try] = ACTIONS(2455), - [anon_sym_throw] = ACTIONS(2458), - [anon_sym_return] = ACTIONS(2461), - [anon_sym_continue] = ACTIONS(2464), - [anon_sym_break] = ACTIONS(2464), - [anon_sym_COLON_COLON] = ACTIONS(2467), + [anon_sym_if] = ACTIONS(2446), + [anon_sym_when] = ACTIONS(2449), + [anon_sym_try] = ACTIONS(2452), + [anon_sym_throw] = ACTIONS(2455), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2461), + [anon_sym_break] = ACTIONS(2461), + [anon_sym_COLON_COLON] = ACTIONS(2464), [anon_sym_PLUS] = ACTIONS(2443), [anon_sym_DASH] = ACTIONS(2443), - [anon_sym_PLUS_PLUS] = ACTIONS(2470), - [anon_sym_DASH_DASH] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2467), + [anon_sym_DASH_DASH] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2467), [anon_sym_data] = ACTIONS(5292), [anon_sym_inner] = ACTIONS(5292), [anon_sym_value] = ACTIONS(5292), [anon_sym_expect] = ACTIONS(5292), [anon_sym_actual] = ACTIONS(5292), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2473), - [anon_sym_continue_AT] = ACTIONS(2476), - [anon_sym_break_AT] = ACTIONS(2479), - [anon_sym_this_AT] = ACTIONS(2482), - [anon_sym_super_AT] = ACTIONS(2485), - [sym_real_literal] = ACTIONS(2488), - [sym_integer_literal] = ACTIONS(2491), - [sym_hex_literal] = ACTIONS(2494), - [sym_bin_literal] = ACTIONS(2494), - [anon_sym_true] = ACTIONS(2497), - [anon_sym_false] = ACTIONS(2497), - [anon_sym_SQUOTE] = ACTIONS(2500), + [anon_sym_return_AT] = ACTIONS(2470), + [anon_sym_continue_AT] = ACTIONS(2473), + [anon_sym_break_AT] = ACTIONS(2476), + [anon_sym_this_AT] = ACTIONS(2479), + [anon_sym_super_AT] = ACTIONS(2482), + [sym_real_literal] = ACTIONS(2485), + [sym_integer_literal] = ACTIONS(2488), + [sym_hex_literal] = ACTIONS(2491), + [sym_bin_literal] = ACTIONS(2491), + [anon_sym_true] = ACTIONS(2494), + [anon_sym_false] = ACTIONS(2494), + [anon_sym_SQUOTE] = ACTIONS(2497), + [sym_null_literal] = ACTIONS(2500), [sym__backtick_identifier] = ACTIONS(2503), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2506), @@ -187949,7 +187949,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4852), [anon_sym_AMP_AMP] = ACTIONS(4852), [anon_sym_PIPE_PIPE] = ACTIONS(4852), - [anon_sym_null] = ACTIONS(4850), [anon_sym_if] = ACTIONS(4850), [anon_sym_else] = ACTIONS(4850), [anon_sym_when] = ACTIONS(4850), @@ -188021,6 +188020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4850), [anon_sym_false] = ACTIONS(4850), [anon_sym_SQUOTE] = ACTIONS(4852), + [sym_null_literal] = ACTIONS(4850), [sym__backtick_identifier] = ACTIONS(4852), [sym__automatic_semicolon] = ACTIONS(4852), [sym_safe_nav] = ACTIONS(4852), @@ -188053,7 +188053,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4842), [anon_sym_AMP_AMP] = ACTIONS(4842), [anon_sym_PIPE_PIPE] = ACTIONS(4842), - [anon_sym_null] = ACTIONS(4840), [anon_sym_if] = ACTIONS(4840), [anon_sym_else] = ACTIONS(4840), [anon_sym_when] = ACTIONS(4840), @@ -188125,6 +188124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4840), [anon_sym_false] = ACTIONS(4840), [anon_sym_SQUOTE] = ACTIONS(4842), + [sym_null_literal] = ACTIONS(4840), [sym__backtick_identifier] = ACTIONS(4842), [sym__automatic_semicolon] = ACTIONS(4842), [sym_safe_nav] = ACTIONS(4842), @@ -188157,7 +188157,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4185), [anon_sym_AMP_AMP] = ACTIONS(4185), [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_null] = ACTIONS(4182), [anon_sym_if] = ACTIONS(4182), [anon_sym_else] = ACTIONS(4182), [anon_sym_when] = ACTIONS(4182), @@ -188229,6 +188228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4182), [anon_sym_false] = ACTIONS(4182), [anon_sym_SQUOTE] = ACTIONS(4185), + [sym_null_literal] = ACTIONS(4182), [sym__backtick_identifier] = ACTIONS(4185), [sym__automatic_semicolon] = ACTIONS(4185), [sym_safe_nav] = ACTIONS(4185), @@ -188261,7 +188261,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4217), [anon_sym_AMP_AMP] = ACTIONS(4217), [anon_sym_PIPE_PIPE] = ACTIONS(4217), - [anon_sym_null] = ACTIONS(4214), [anon_sym_if] = ACTIONS(4214), [anon_sym_else] = ACTIONS(4214), [anon_sym_when] = ACTIONS(4214), @@ -188333,6 +188332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4214), [anon_sym_false] = ACTIONS(4214), [anon_sym_SQUOTE] = ACTIONS(4217), + [sym_null_literal] = ACTIONS(4214), [sym__backtick_identifier] = ACTIONS(4217), [sym__automatic_semicolon] = ACTIONS(4217), [sym_safe_nav] = ACTIONS(4217), @@ -188407,15 +188407,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2328), [anon_sym_if] = ACTIONS(2846), - [anon_sym_when] = ACTIONS(2334), - [anon_sym_try] = ACTIONS(2337), + [anon_sym_when] = ACTIONS(2331), + [anon_sym_try] = ACTIONS(2334), [anon_sym_throw] = ACTIONS(2849), [anon_sym_return] = ACTIONS(2852), - [anon_sym_continue] = ACTIONS(2346), - [anon_sym_break] = ACTIONS(2346), - [anon_sym_COLON_COLON] = ACTIONS(2349), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_break] = ACTIONS(2343), + [anon_sym_COLON_COLON] = ACTIONS(2346), [anon_sym_PLUS] = ACTIONS(2843), [anon_sym_DASH] = ACTIONS(2843), [anon_sym_PLUS_PLUS] = ACTIONS(2855), @@ -188427,18 +188426,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(5274), [anon_sym_actual] = ACTIONS(5274), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2190), - [anon_sym_continue_AT] = ACTIONS(2355), - [anon_sym_break_AT] = ACTIONS(2358), - [anon_sym_this_AT] = ACTIONS(2361), - [anon_sym_super_AT] = ACTIONS(2364), - [sym_real_literal] = ACTIONS(2367), - [sym_integer_literal] = ACTIONS(2370), - [sym_hex_literal] = ACTIONS(2373), - [sym_bin_literal] = ACTIONS(2373), - [anon_sym_true] = ACTIONS(2376), - [anon_sym_false] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(2379), + [anon_sym_return_AT] = ACTIONS(2187), + [anon_sym_continue_AT] = ACTIONS(2352), + [anon_sym_break_AT] = ACTIONS(2355), + [anon_sym_this_AT] = ACTIONS(2358), + [anon_sym_super_AT] = ACTIONS(2361), + [sym_real_literal] = ACTIONS(2364), + [sym_integer_literal] = ACTIONS(2367), + [sym_hex_literal] = ACTIONS(2370), + [sym_bin_literal] = ACTIONS(2370), + [anon_sym_true] = ACTIONS(2373), + [anon_sym_false] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2376), + [sym_null_literal] = ACTIONS(2379), [sym__backtick_identifier] = ACTIONS(2382), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2385), @@ -188516,30 +188516,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -188573,7 +188573,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4188), [anon_sym_AMP_AMP] = ACTIONS(4188), [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_null] = ACTIONS(4190), [anon_sym_if] = ACTIONS(4190), [anon_sym_else] = ACTIONS(4190), [anon_sym_when] = ACTIONS(4190), @@ -188645,6 +188644,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4190), [anon_sym_false] = ACTIONS(4190), [anon_sym_SQUOTE] = ACTIONS(4188), + [sym_null_literal] = ACTIONS(4190), [sym__backtick_identifier] = ACTIONS(4188), [sym__automatic_semicolon] = ACTIONS(4188), [sym_safe_nav] = ACTIONS(4188), @@ -188677,7 +188677,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4220), [anon_sym_AMP_AMP] = ACTIONS(4220), [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(4222), [anon_sym_if] = ACTIONS(4222), [anon_sym_else] = ACTIONS(4222), [anon_sym_when] = ACTIONS(4222), @@ -188749,6 +188748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4222), [anon_sym_false] = ACTIONS(4222), [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_null_literal] = ACTIONS(4222), [sym__backtick_identifier] = ACTIONS(4220), [sym__automatic_semicolon] = ACTIONS(4220), [sym_safe_nav] = ACTIONS(4220), @@ -188823,15 +188823,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2545), [anon_sym_if] = ACTIONS(2736), - [anon_sym_when] = ACTIONS(2551), - [anon_sym_try] = ACTIONS(2554), + [anon_sym_when] = ACTIONS(2548), + [anon_sym_try] = ACTIONS(2551), [anon_sym_throw] = ACTIONS(2739), [anon_sym_return] = ACTIONS(2742), - [anon_sym_continue] = ACTIONS(2563), - [anon_sym_break] = ACTIONS(2563), - [anon_sym_COLON_COLON] = ACTIONS(2566), + [anon_sym_continue] = ACTIONS(2560), + [anon_sym_break] = ACTIONS(2560), + [anon_sym_COLON_COLON] = ACTIONS(2563), [anon_sym_PLUS] = ACTIONS(2733), [anon_sym_DASH] = ACTIONS(2733), [anon_sym_PLUS_PLUS] = ACTIONS(2745), @@ -188843,18 +188842,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(5234), [anon_sym_actual] = ACTIONS(5234), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2091), - [anon_sym_continue_AT] = ACTIONS(2572), - [anon_sym_break_AT] = ACTIONS(2575), - [anon_sym_this_AT] = ACTIONS(2578), - [anon_sym_super_AT] = ACTIONS(2581), - [sym_real_literal] = ACTIONS(2584), - [sym_integer_literal] = ACTIONS(2587), - [sym_hex_literal] = ACTIONS(2590), - [sym_bin_literal] = ACTIONS(2590), - [anon_sym_true] = ACTIONS(2593), - [anon_sym_false] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_return_AT] = ACTIONS(2088), + [anon_sym_continue_AT] = ACTIONS(2569), + [anon_sym_break_AT] = ACTIONS(2572), + [anon_sym_this_AT] = ACTIONS(2575), + [anon_sym_super_AT] = ACTIONS(2578), + [sym_real_literal] = ACTIONS(2581), + [sym_integer_literal] = ACTIONS(2584), + [sym_hex_literal] = ACTIONS(2587), + [sym_bin_literal] = ACTIONS(2587), + [anon_sym_true] = ACTIONS(2590), + [anon_sym_false] = ACTIONS(2590), + [anon_sym_SQUOTE] = ACTIONS(2593), + [sym_null_literal] = ACTIONS(2596), [sym__backtick_identifier] = ACTIONS(2599), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2602), @@ -188927,38 +188927,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2064), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_when] = ACTIONS(2070), - [anon_sym_try] = ACTIONS(2073), - [anon_sym_throw] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2079), - [anon_sym_continue] = ACTIONS(2082), - [anon_sym_break] = ACTIONS(2082), - [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_if] = ACTIONS(2064), + [anon_sym_when] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2070), + [anon_sym_throw] = ACTIONS(2073), + [anon_sym_return] = ACTIONS(2076), + [anon_sym_continue] = ACTIONS(2079), + [anon_sym_break] = ACTIONS(2079), + [anon_sym_COLON_COLON] = ACTIONS(2082), [anon_sym_PLUS] = ACTIONS(2059), [anon_sym_DASH] = ACTIONS(2059), - [anon_sym_PLUS_PLUS] = ACTIONS(2088), - [anon_sym_DASH_DASH] = ACTIONS(2088), - [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_PLUS_PLUS] = ACTIONS(2085), + [anon_sym_DASH_DASH] = ACTIONS(2085), + [anon_sym_BANG] = ACTIONS(2085), [anon_sym_data] = ACTIONS(5256), [anon_sym_inner] = ACTIONS(5256), [anon_sym_value] = ACTIONS(5256), [anon_sym_expect] = ACTIONS(5256), [anon_sym_actual] = ACTIONS(5256), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2091), - [anon_sym_continue_AT] = ACTIONS(2094), - [anon_sym_break_AT] = ACTIONS(2097), - [anon_sym_this_AT] = ACTIONS(2100), - [anon_sym_super_AT] = ACTIONS(2103), - [sym_real_literal] = ACTIONS(2106), - [sym_integer_literal] = ACTIONS(2109), - [sym_hex_literal] = ACTIONS(2112), - [sym_bin_literal] = ACTIONS(2112), - [anon_sym_true] = ACTIONS(2115), - [anon_sym_false] = ACTIONS(2115), - [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_return_AT] = ACTIONS(2088), + [anon_sym_continue_AT] = ACTIONS(2091), + [anon_sym_break_AT] = ACTIONS(2094), + [anon_sym_this_AT] = ACTIONS(2097), + [anon_sym_super_AT] = ACTIONS(2100), + [sym_real_literal] = ACTIONS(2103), + [sym_integer_literal] = ACTIONS(2106), + [sym_hex_literal] = ACTIONS(2109), + [sym_bin_literal] = ACTIONS(2109), + [anon_sym_true] = ACTIONS(2112), + [anon_sym_false] = ACTIONS(2112), + [anon_sym_SQUOTE] = ACTIONS(2115), + [sym_null_literal] = ACTIONS(2118), [sym__backtick_identifier] = ACTIONS(2121), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2124), @@ -188994,7 +188994,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4144), [anon_sym_AMP_AMP] = ACTIONS(4144), [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4142), [anon_sym_if] = ACTIONS(4142), [anon_sym_else] = ACTIONS(4142), [anon_sym_when] = ACTIONS(4142), @@ -189061,6 +189060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4142), [anon_sym_false] = ACTIONS(4142), [anon_sym_SQUOTE] = ACTIONS(4144), + [sym_null_literal] = ACTIONS(4142), [sym__backtick_identifier] = ACTIONS(4144), [sym__automatic_semicolon] = ACTIONS(4144), [sym_safe_nav] = ACTIONS(4144), @@ -189093,7 +189093,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4185), [anon_sym_AMP_AMP] = ACTIONS(4185), [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_null] = ACTIONS(4182), [anon_sym_if] = ACTIONS(4182), [anon_sym_else] = ACTIONS(4182), [anon_sym_when] = ACTIONS(4182), @@ -189165,6 +189164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4182), [anon_sym_false] = ACTIONS(4182), [anon_sym_SQUOTE] = ACTIONS(4185), + [sym_null_literal] = ACTIONS(4182), [sym__backtick_identifier] = ACTIONS(4185), [sym__automatic_semicolon] = ACTIONS(4185), [sym_safe_nav] = ACTIONS(4185), @@ -189197,7 +189197,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4217), [anon_sym_AMP_AMP] = ACTIONS(4217), [anon_sym_PIPE_PIPE] = ACTIONS(4217), - [anon_sym_null] = ACTIONS(4214), [anon_sym_if] = ACTIONS(4214), [anon_sym_else] = ACTIONS(4214), [anon_sym_when] = ACTIONS(4214), @@ -189269,6 +189268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4214), [anon_sym_false] = ACTIONS(4214), [anon_sym_SQUOTE] = ACTIONS(4217), + [sym_null_literal] = ACTIONS(4214), [sym__backtick_identifier] = ACTIONS(4217), [sym__automatic_semicolon] = ACTIONS(4217), [sym_safe_nav] = ACTIONS(4217), @@ -189348,30 +189348,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -189410,7 +189410,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4144), [anon_sym_AMP_AMP] = ACTIONS(4144), [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4142), [anon_sym_if] = ACTIONS(4142), [anon_sym_else] = ACTIONS(4142), [anon_sym_when] = ACTIONS(4142), @@ -189477,6 +189476,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4142), [anon_sym_false] = ACTIONS(4142), [anon_sym_SQUOTE] = ACTIONS(4144), + [sym_null_literal] = ACTIONS(4142), [sym__backtick_identifier] = ACTIONS(4144), [sym__automatic_semicolon] = ACTIONS(4144), [sym_safe_nav] = ACTIONS(4144), @@ -189514,7 +189514,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4079), [anon_sym_AMP_AMP] = ACTIONS(4079), [anon_sym_PIPE_PIPE] = ACTIONS(4079), - [anon_sym_null] = ACTIONS(4077), [anon_sym_if] = ACTIONS(4077), [anon_sym_else] = ACTIONS(4077), [anon_sym_when] = ACTIONS(4077), @@ -189581,6 +189580,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4077), [anon_sym_false] = ACTIONS(4077), [anon_sym_SQUOTE] = ACTIONS(4079), + [sym_null_literal] = ACTIONS(4077), [sym__backtick_identifier] = ACTIONS(4079), [sym__automatic_semicolon] = ACTIONS(4079), [sym_safe_nav] = ACTIONS(4079), @@ -189618,7 +189618,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4252), [anon_sym_AMP_AMP] = ACTIONS(4252), [anon_sym_PIPE_PIPE] = ACTIONS(4252), - [anon_sym_null] = ACTIONS(4250), [anon_sym_if] = ACTIONS(4250), [anon_sym_else] = ACTIONS(4250), [anon_sym_when] = ACTIONS(4250), @@ -189685,6 +189684,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4250), [anon_sym_false] = ACTIONS(4250), [anon_sym_SQUOTE] = ACTIONS(4252), + [sym_null_literal] = ACTIONS(4250), [sym__backtick_identifier] = ACTIONS(4252), [sym__automatic_semicolon] = ACTIONS(4252), [sym_safe_nav] = ACTIONS(4252), @@ -189759,15 +189759,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2641), [anon_sym_if] = ACTIONS(2714), - [anon_sym_when] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2650), + [anon_sym_when] = ACTIONS(2644), + [anon_sym_try] = ACTIONS(2647), [anon_sym_throw] = ACTIONS(2717), [anon_sym_return] = ACTIONS(2720), - [anon_sym_continue] = ACTIONS(2659), - [anon_sym_break] = ACTIONS(2659), - [anon_sym_COLON_COLON] = ACTIONS(2662), + [anon_sym_continue] = ACTIONS(2656), + [anon_sym_break] = ACTIONS(2656), + [anon_sym_COLON_COLON] = ACTIONS(2659), [anon_sym_PLUS] = ACTIONS(2711), [anon_sym_DASH] = ACTIONS(2711), [anon_sym_PLUS_PLUS] = ACTIONS(2723), @@ -189779,18 +189778,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(5247), [anon_sym_actual] = ACTIONS(5247), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2668), - [anon_sym_continue_AT] = ACTIONS(2671), - [anon_sym_break_AT] = ACTIONS(2674), - [anon_sym_this_AT] = ACTIONS(2677), - [anon_sym_super_AT] = ACTIONS(2680), - [sym_real_literal] = ACTIONS(2683), - [sym_integer_literal] = ACTIONS(2686), - [sym_hex_literal] = ACTIONS(2689), - [sym_bin_literal] = ACTIONS(2689), - [anon_sym_true] = ACTIONS(2692), - [anon_sym_false] = ACTIONS(2692), - [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_return_AT] = ACTIONS(2665), + [anon_sym_continue_AT] = ACTIONS(2668), + [anon_sym_break_AT] = ACTIONS(2671), + [anon_sym_this_AT] = ACTIONS(2674), + [anon_sym_super_AT] = ACTIONS(2677), + [sym_real_literal] = ACTIONS(2680), + [sym_integer_literal] = ACTIONS(2683), + [sym_hex_literal] = ACTIONS(2686), + [sym_bin_literal] = ACTIONS(2686), + [anon_sym_true] = ACTIONS(2689), + [anon_sym_false] = ACTIONS(2689), + [anon_sym_SQUOTE] = ACTIONS(2692), + [sym_null_literal] = ACTIONS(2695), [sym__backtick_identifier] = ACTIONS(2698), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2701), @@ -189821,7 +189821,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4188), [anon_sym_AMP_AMP] = ACTIONS(4188), [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(4190), [anon_sym_when] = ACTIONS(3938), @@ -189893,6 +189892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(4185), [sym__automatic_semicolon] = ACTIONS(4188), [sym_safe_nav] = ACTIONS(4188), @@ -189930,7 +189930,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4099), [anon_sym_AMP_AMP] = ACTIONS(4099), [anon_sym_PIPE_PIPE] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4097), [anon_sym_if] = ACTIONS(4097), [anon_sym_else] = ACTIONS(4097), [anon_sym_when] = ACTIONS(4097), @@ -189997,6 +189996,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4097), [anon_sym_false] = ACTIONS(4097), [anon_sym_SQUOTE] = ACTIONS(4099), + [sym_null_literal] = ACTIONS(4097), [sym__backtick_identifier] = ACTIONS(4099), [sym__automatic_semicolon] = ACTIONS(4099), [sym_safe_nav] = ACTIONS(4099), @@ -190029,7 +190029,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4220), [anon_sym_AMP_AMP] = ACTIONS(4220), [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(4222), [anon_sym_when] = ACTIONS(3938), @@ -190101,6 +190100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(4217), [sym__automatic_semicolon] = ACTIONS(4220), [sym_safe_nav] = ACTIONS(4220), @@ -190180,30 +190180,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -190279,15 +190279,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2163), [anon_sym_if] = ACTIONS(2780), - [anon_sym_when] = ACTIONS(2169), - [anon_sym_try] = ACTIONS(2172), + [anon_sym_when] = ACTIONS(2166), + [anon_sym_try] = ACTIONS(2169), [anon_sym_throw] = ACTIONS(2783), [anon_sym_return] = ACTIONS(2786), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_COLON_COLON] = ACTIONS(2181), [anon_sym_PLUS] = ACTIONS(2777), [anon_sym_DASH] = ACTIONS(2777), [anon_sym_PLUS_PLUS] = ACTIONS(2789), @@ -190299,18 +190298,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(5283), [anon_sym_actual] = ACTIONS(5283), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2190), - [anon_sym_continue_AT] = ACTIONS(2193), - [anon_sym_break_AT] = ACTIONS(2196), - [anon_sym_this_AT] = ACTIONS(2199), - [anon_sym_super_AT] = ACTIONS(2202), - [sym_real_literal] = ACTIONS(2205), - [sym_integer_literal] = ACTIONS(2208), - [sym_hex_literal] = ACTIONS(2211), - [sym_bin_literal] = ACTIONS(2211), - [anon_sym_true] = ACTIONS(2214), - [anon_sym_false] = ACTIONS(2214), - [anon_sym_SQUOTE] = ACTIONS(2217), + [anon_sym_return_AT] = ACTIONS(2187), + [anon_sym_continue_AT] = ACTIONS(2190), + [anon_sym_break_AT] = ACTIONS(2193), + [anon_sym_this_AT] = ACTIONS(2196), + [anon_sym_super_AT] = ACTIONS(2199), + [sym_real_literal] = ACTIONS(2202), + [sym_integer_literal] = ACTIONS(2205), + [sym_hex_literal] = ACTIONS(2208), + [sym_bin_literal] = ACTIONS(2208), + [anon_sym_true] = ACTIONS(2211), + [anon_sym_false] = ACTIONS(2211), + [anon_sym_SQUOTE] = ACTIONS(2214), + [sym_null_literal] = ACTIONS(2217), [sym__backtick_identifier] = ACTIONS(2220), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2223), @@ -190346,7 +190346,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4089), [anon_sym_AMP_AMP] = ACTIONS(4089), [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_null] = ACTIONS(4087), [anon_sym_if] = ACTIONS(4087), [anon_sym_else] = ACTIONS(4087), [anon_sym_when] = ACTIONS(4087), @@ -190413,6 +190412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4087), [anon_sym_false] = ACTIONS(4087), [anon_sym_SQUOTE] = ACTIONS(4089), + [sym_null_literal] = ACTIONS(4087), [sym__backtick_identifier] = ACTIONS(4089), [sym__automatic_semicolon] = ACTIONS(4089), [sym_safe_nav] = ACTIONS(4089), @@ -190492,30 +190492,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -190591,38 +190591,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2328), - [anon_sym_if] = ACTIONS(2331), - [anon_sym_when] = ACTIONS(2334), - [anon_sym_try] = ACTIONS(2337), - [anon_sym_throw] = ACTIONS(2340), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_continue] = ACTIONS(2346), - [anon_sym_break] = ACTIONS(2346), - [anon_sym_COLON_COLON] = ACTIONS(2349), + [anon_sym_if] = ACTIONS(2328), + [anon_sym_when] = ACTIONS(2331), + [anon_sym_try] = ACTIONS(2334), + [anon_sym_throw] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2340), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_break] = ACTIONS(2343), + [anon_sym_COLON_COLON] = ACTIONS(2346), [anon_sym_PLUS] = ACTIONS(2325), [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_PLUS_PLUS] = ACTIONS(2352), - [anon_sym_DASH_DASH] = ACTIONS(2352), - [anon_sym_BANG] = ACTIONS(2352), + [anon_sym_PLUS_PLUS] = ACTIONS(2349), + [anon_sym_DASH_DASH] = ACTIONS(2349), + [anon_sym_BANG] = ACTIONS(2349), [anon_sym_data] = ACTIONS(5274), [anon_sym_inner] = ACTIONS(5274), [anon_sym_value] = ACTIONS(5274), [anon_sym_expect] = ACTIONS(5274), [anon_sym_actual] = ACTIONS(5274), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2190), - [anon_sym_continue_AT] = ACTIONS(2355), - [anon_sym_break_AT] = ACTIONS(2358), - [anon_sym_this_AT] = ACTIONS(2361), - [anon_sym_super_AT] = ACTIONS(2364), - [sym_real_literal] = ACTIONS(2367), - [sym_integer_literal] = ACTIONS(2370), - [sym_hex_literal] = ACTIONS(2373), - [sym_bin_literal] = ACTIONS(2373), - [anon_sym_true] = ACTIONS(2376), - [anon_sym_false] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(2379), + [anon_sym_return_AT] = ACTIONS(2187), + [anon_sym_continue_AT] = ACTIONS(2352), + [anon_sym_break_AT] = ACTIONS(2355), + [anon_sym_this_AT] = ACTIONS(2358), + [anon_sym_super_AT] = ACTIONS(2361), + [sym_real_literal] = ACTIONS(2364), + [sym_integer_literal] = ACTIONS(2367), + [sym_hex_literal] = ACTIONS(2370), + [sym_bin_literal] = ACTIONS(2370), + [anon_sym_true] = ACTIONS(2373), + [anon_sym_false] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2376), + [sym_null_literal] = ACTIONS(2379), [sym__backtick_identifier] = ACTIONS(2382), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2385), @@ -190695,15 +190695,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2446), [anon_sym_if] = ACTIONS(2802), - [anon_sym_when] = ACTIONS(2452), - [anon_sym_try] = ACTIONS(2455), + [anon_sym_when] = ACTIONS(2449), + [anon_sym_try] = ACTIONS(2452), [anon_sym_throw] = ACTIONS(2805), [anon_sym_return] = ACTIONS(2808), - [anon_sym_continue] = ACTIONS(2464), - [anon_sym_break] = ACTIONS(2464), - [anon_sym_COLON_COLON] = ACTIONS(2467), + [anon_sym_continue] = ACTIONS(2461), + [anon_sym_break] = ACTIONS(2461), + [anon_sym_COLON_COLON] = ACTIONS(2464), [anon_sym_PLUS] = ACTIONS(2799), [anon_sym_DASH] = ACTIONS(2799), [anon_sym_PLUS_PLUS] = ACTIONS(2811), @@ -190715,18 +190714,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(5292), [anon_sym_actual] = ACTIONS(5292), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2473), - [anon_sym_continue_AT] = ACTIONS(2476), - [anon_sym_break_AT] = ACTIONS(2479), - [anon_sym_this_AT] = ACTIONS(2482), - [anon_sym_super_AT] = ACTIONS(2485), - [sym_real_literal] = ACTIONS(2488), - [sym_integer_literal] = ACTIONS(2491), - [sym_hex_literal] = ACTIONS(2494), - [sym_bin_literal] = ACTIONS(2494), - [anon_sym_true] = ACTIONS(2497), - [anon_sym_false] = ACTIONS(2497), - [anon_sym_SQUOTE] = ACTIONS(2500), + [anon_sym_return_AT] = ACTIONS(2470), + [anon_sym_continue_AT] = ACTIONS(2473), + [anon_sym_break_AT] = ACTIONS(2476), + [anon_sym_this_AT] = ACTIONS(2479), + [anon_sym_super_AT] = ACTIONS(2482), + [sym_real_literal] = ACTIONS(2485), + [sym_integer_literal] = ACTIONS(2488), + [sym_hex_literal] = ACTIONS(2491), + [sym_bin_literal] = ACTIONS(2491), + [anon_sym_true] = ACTIONS(2494), + [anon_sym_false] = ACTIONS(2494), + [anon_sym_SQUOTE] = ACTIONS(2497), + [sym_null_literal] = ACTIONS(2500), [sym__backtick_identifier] = ACTIONS(2503), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2506), @@ -190799,15 +190799,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2328), [anon_sym_if] = ACTIONS(2398), - [anon_sym_when] = ACTIONS(2334), - [anon_sym_try] = ACTIONS(2337), + [anon_sym_when] = ACTIONS(2331), + [anon_sym_try] = ACTIONS(2334), [anon_sym_throw] = ACTIONS(2401), [anon_sym_return] = ACTIONS(2404), - [anon_sym_continue] = ACTIONS(2346), - [anon_sym_break] = ACTIONS(2346), - [anon_sym_COLON_COLON] = ACTIONS(2349), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_break] = ACTIONS(2343), + [anon_sym_COLON_COLON] = ACTIONS(2346), [anon_sym_PLUS] = ACTIONS(2395), [anon_sym_DASH] = ACTIONS(2395), [anon_sym_PLUS_PLUS] = ACTIONS(2407), @@ -190819,18 +190818,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(5274), [anon_sym_actual] = ACTIONS(5274), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2190), - [anon_sym_continue_AT] = ACTIONS(2355), - [anon_sym_break_AT] = ACTIONS(2358), - [anon_sym_this_AT] = ACTIONS(2361), - [anon_sym_super_AT] = ACTIONS(2364), - [sym_real_literal] = ACTIONS(2367), - [sym_integer_literal] = ACTIONS(2370), - [sym_hex_literal] = ACTIONS(2373), - [sym_bin_literal] = ACTIONS(2373), - [anon_sym_true] = ACTIONS(2376), - [anon_sym_false] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(2379), + [anon_sym_return_AT] = ACTIONS(2187), + [anon_sym_continue_AT] = ACTIONS(2352), + [anon_sym_break_AT] = ACTIONS(2355), + [anon_sym_this_AT] = ACTIONS(2358), + [anon_sym_super_AT] = ACTIONS(2361), + [sym_real_literal] = ACTIONS(2364), + [sym_integer_literal] = ACTIONS(2367), + [sym_hex_literal] = ACTIONS(2370), + [sym_bin_literal] = ACTIONS(2370), + [anon_sym_true] = ACTIONS(2373), + [anon_sym_false] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2376), + [sym_null_literal] = ACTIONS(2379), [sym__backtick_identifier] = ACTIONS(2382), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2385), @@ -190903,38 +190903,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2641), - [anon_sym_if] = ACTIONS(2644), - [anon_sym_when] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2650), - [anon_sym_throw] = ACTIONS(2653), - [anon_sym_return] = ACTIONS(2656), - [anon_sym_continue] = ACTIONS(2659), - [anon_sym_break] = ACTIONS(2659), - [anon_sym_COLON_COLON] = ACTIONS(2662), + [anon_sym_if] = ACTIONS(2641), + [anon_sym_when] = ACTIONS(2644), + [anon_sym_try] = ACTIONS(2647), + [anon_sym_throw] = ACTIONS(2650), + [anon_sym_return] = ACTIONS(2653), + [anon_sym_continue] = ACTIONS(2656), + [anon_sym_break] = ACTIONS(2656), + [anon_sym_COLON_COLON] = ACTIONS(2659), [anon_sym_PLUS] = ACTIONS(2638), [anon_sym_DASH] = ACTIONS(2638), - [anon_sym_PLUS_PLUS] = ACTIONS(2665), - [anon_sym_DASH_DASH] = ACTIONS(2665), - [anon_sym_BANG] = ACTIONS(2665), + [anon_sym_PLUS_PLUS] = ACTIONS(2662), + [anon_sym_DASH_DASH] = ACTIONS(2662), + [anon_sym_BANG] = ACTIONS(2662), [anon_sym_data] = ACTIONS(5247), [anon_sym_inner] = ACTIONS(5247), [anon_sym_value] = ACTIONS(5247), [anon_sym_expect] = ACTIONS(5247), [anon_sym_actual] = ACTIONS(5247), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2668), - [anon_sym_continue_AT] = ACTIONS(2671), - [anon_sym_break_AT] = ACTIONS(2674), - [anon_sym_this_AT] = ACTIONS(2677), - [anon_sym_super_AT] = ACTIONS(2680), - [sym_real_literal] = ACTIONS(2683), - [sym_integer_literal] = ACTIONS(2686), - [sym_hex_literal] = ACTIONS(2689), - [sym_bin_literal] = ACTIONS(2689), - [anon_sym_true] = ACTIONS(2692), - [anon_sym_false] = ACTIONS(2692), - [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_return_AT] = ACTIONS(2665), + [anon_sym_continue_AT] = ACTIONS(2668), + [anon_sym_break_AT] = ACTIONS(2671), + [anon_sym_this_AT] = ACTIONS(2674), + [anon_sym_super_AT] = ACTIONS(2677), + [sym_real_literal] = ACTIONS(2680), + [sym_integer_literal] = ACTIONS(2683), + [sym_hex_literal] = ACTIONS(2686), + [sym_bin_literal] = ACTIONS(2686), + [anon_sym_true] = ACTIONS(2689), + [anon_sym_false] = ACTIONS(2689), + [anon_sym_SQUOTE] = ACTIONS(2692), + [sym_null_literal] = ACTIONS(2695), [sym__backtick_identifier] = ACTIONS(2698), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2701), @@ -190970,7 +190970,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4089), [anon_sym_AMP_AMP] = ACTIONS(4089), [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_null] = ACTIONS(4087), [anon_sym_if] = ACTIONS(4087), [anon_sym_else] = ACTIONS(4087), [anon_sym_when] = ACTIONS(4087), @@ -191037,6 +191036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4087), [anon_sym_false] = ACTIONS(4087), [anon_sym_SQUOTE] = ACTIONS(4089), + [sym_null_literal] = ACTIONS(4087), [sym__backtick_identifier] = ACTIONS(4089), [sym__automatic_semicolon] = ACTIONS(4089), [sym_safe_nav] = ACTIONS(4089), @@ -191069,7 +191069,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4188), [anon_sym_AMP_AMP] = ACTIONS(4188), [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_null] = ACTIONS(4182), [anon_sym_if] = ACTIONS(4182), [anon_sym_else] = ACTIONS(4190), [anon_sym_when] = ACTIONS(4182), @@ -191141,6 +191140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4182), [anon_sym_false] = ACTIONS(4182), [anon_sym_SQUOTE] = ACTIONS(4185), + [sym_null_literal] = ACTIONS(4182), [sym__backtick_identifier] = ACTIONS(4185), [sym__automatic_semicolon] = ACTIONS(4188), [sym_safe_nav] = ACTIONS(4188), @@ -191173,7 +191173,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4220), [anon_sym_AMP_AMP] = ACTIONS(4220), [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(4214), [anon_sym_if] = ACTIONS(4214), [anon_sym_else] = ACTIONS(4222), [anon_sym_when] = ACTIONS(4214), @@ -191245,6 +191244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4214), [anon_sym_false] = ACTIONS(4214), [anon_sym_SQUOTE] = ACTIONS(4217), + [sym_null_literal] = ACTIONS(4214), [sym__backtick_identifier] = ACTIONS(4217), [sym__automatic_semicolon] = ACTIONS(4220), [sym_safe_nav] = ACTIONS(4220), @@ -191319,15 +191319,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2641), [anon_sym_if] = ACTIONS(2868), - [anon_sym_when] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2650), + [anon_sym_when] = ACTIONS(2644), + [anon_sym_try] = ACTIONS(2647), [anon_sym_throw] = ACTIONS(2871), [anon_sym_return] = ACTIONS(2874), - [anon_sym_continue] = ACTIONS(2659), - [anon_sym_break] = ACTIONS(2659), - [anon_sym_COLON_COLON] = ACTIONS(2662), + [anon_sym_continue] = ACTIONS(2656), + [anon_sym_break] = ACTIONS(2656), + [anon_sym_COLON_COLON] = ACTIONS(2659), [anon_sym_PLUS] = ACTIONS(2865), [anon_sym_DASH] = ACTIONS(2865), [anon_sym_PLUS_PLUS] = ACTIONS(2877), @@ -191339,18 +191338,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(5247), [anon_sym_actual] = ACTIONS(5247), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2668), - [anon_sym_continue_AT] = ACTIONS(2671), - [anon_sym_break_AT] = ACTIONS(2674), - [anon_sym_this_AT] = ACTIONS(2677), - [anon_sym_super_AT] = ACTIONS(2680), - [sym_real_literal] = ACTIONS(2683), - [sym_integer_literal] = ACTIONS(2686), - [sym_hex_literal] = ACTIONS(2689), - [sym_bin_literal] = ACTIONS(2689), - [anon_sym_true] = ACTIONS(2692), - [anon_sym_false] = ACTIONS(2692), - [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_return_AT] = ACTIONS(2665), + [anon_sym_continue_AT] = ACTIONS(2668), + [anon_sym_break_AT] = ACTIONS(2671), + [anon_sym_this_AT] = ACTIONS(2674), + [anon_sym_super_AT] = ACTIONS(2677), + [sym_real_literal] = ACTIONS(2680), + [sym_integer_literal] = ACTIONS(2683), + [sym_hex_literal] = ACTIONS(2686), + [sym_bin_literal] = ACTIONS(2686), + [anon_sym_true] = ACTIONS(2689), + [anon_sym_false] = ACTIONS(2689), + [anon_sym_SQUOTE] = ACTIONS(2692), + [sym_null_literal] = ACTIONS(2695), [sym__backtick_identifier] = ACTIONS(2698), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2701), @@ -191423,15 +191423,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2064), [anon_sym_if] = ACTIONS(3000), - [anon_sym_when] = ACTIONS(2070), - [anon_sym_try] = ACTIONS(2073), + [anon_sym_when] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2070), [anon_sym_throw] = ACTIONS(3003), [anon_sym_return] = ACTIONS(3006), - [anon_sym_continue] = ACTIONS(2082), - [anon_sym_break] = ACTIONS(2082), - [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_continue] = ACTIONS(2079), + [anon_sym_break] = ACTIONS(2079), + [anon_sym_COLON_COLON] = ACTIONS(2082), [anon_sym_PLUS] = ACTIONS(2997), [anon_sym_DASH] = ACTIONS(2997), [anon_sym_PLUS_PLUS] = ACTIONS(3009), @@ -191443,18 +191442,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(5256), [anon_sym_actual] = ACTIONS(5256), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2091), - [anon_sym_continue_AT] = ACTIONS(2094), - [anon_sym_break_AT] = ACTIONS(2097), - [anon_sym_this_AT] = ACTIONS(2100), - [anon_sym_super_AT] = ACTIONS(2103), - [sym_real_literal] = ACTIONS(2106), - [sym_integer_literal] = ACTIONS(2109), - [sym_hex_literal] = ACTIONS(2112), - [sym_bin_literal] = ACTIONS(2112), - [anon_sym_true] = ACTIONS(2115), - [anon_sym_false] = ACTIONS(2115), - [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_return_AT] = ACTIONS(2088), + [anon_sym_continue_AT] = ACTIONS(2091), + [anon_sym_break_AT] = ACTIONS(2094), + [anon_sym_this_AT] = ACTIONS(2097), + [anon_sym_super_AT] = ACTIONS(2100), + [sym_real_literal] = ACTIONS(2103), + [sym_integer_literal] = ACTIONS(2106), + [sym_hex_literal] = ACTIONS(2109), + [sym_bin_literal] = ACTIONS(2109), + [anon_sym_true] = ACTIONS(2112), + [anon_sym_false] = ACTIONS(2112), + [anon_sym_SQUOTE] = ACTIONS(2115), + [sym_null_literal] = ACTIONS(2118), [sym__backtick_identifier] = ACTIONS(2121), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2124), @@ -191527,15 +191527,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2064), [anon_sym_if] = ACTIONS(2236), - [anon_sym_when] = ACTIONS(2070), - [anon_sym_try] = ACTIONS(2073), + [anon_sym_when] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2070), [anon_sym_throw] = ACTIONS(2239), [anon_sym_return] = ACTIONS(2242), - [anon_sym_continue] = ACTIONS(2082), - [anon_sym_break] = ACTIONS(2082), - [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_continue] = ACTIONS(2079), + [anon_sym_break] = ACTIONS(2079), + [anon_sym_COLON_COLON] = ACTIONS(2082), [anon_sym_PLUS] = ACTIONS(2233), [anon_sym_DASH] = ACTIONS(2233), [anon_sym_PLUS_PLUS] = ACTIONS(2245), @@ -191547,18 +191546,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(5256), [anon_sym_actual] = ACTIONS(5256), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2091), - [anon_sym_continue_AT] = ACTIONS(2094), - [anon_sym_break_AT] = ACTIONS(2097), - [anon_sym_this_AT] = ACTIONS(2100), - [anon_sym_super_AT] = ACTIONS(2103), - [sym_real_literal] = ACTIONS(2106), - [sym_integer_literal] = ACTIONS(2109), - [sym_hex_literal] = ACTIONS(2112), - [sym_bin_literal] = ACTIONS(2112), - [anon_sym_true] = ACTIONS(2115), - [anon_sym_false] = ACTIONS(2115), - [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_return_AT] = ACTIONS(2088), + [anon_sym_continue_AT] = ACTIONS(2091), + [anon_sym_break_AT] = ACTIONS(2094), + [anon_sym_this_AT] = ACTIONS(2097), + [anon_sym_super_AT] = ACTIONS(2100), + [sym_real_literal] = ACTIONS(2103), + [sym_integer_literal] = ACTIONS(2106), + [sym_hex_literal] = ACTIONS(2109), + [sym_bin_literal] = ACTIONS(2109), + [anon_sym_true] = ACTIONS(2112), + [anon_sym_false] = ACTIONS(2112), + [anon_sym_SQUOTE] = ACTIONS(2115), + [sym_null_literal] = ACTIONS(2118), [sym__backtick_identifier] = ACTIONS(2121), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2124), @@ -191594,7 +191594,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4099), [anon_sym_AMP_AMP] = ACTIONS(4099), [anon_sym_PIPE_PIPE] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4097), [anon_sym_if] = ACTIONS(4097), [anon_sym_else] = ACTIONS(4097), [anon_sym_when] = ACTIONS(4097), @@ -191661,6 +191660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4097), [anon_sym_false] = ACTIONS(4097), [anon_sym_SQUOTE] = ACTIONS(4099), + [sym_null_literal] = ACTIONS(4097), [sym__backtick_identifier] = ACTIONS(4099), [sym__automatic_semicolon] = ACTIONS(4099), [sym_safe_nav] = ACTIONS(4099), @@ -191693,7 +191693,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4858), [anon_sym_AMP_AMP] = ACTIONS(4858), [anon_sym_PIPE_PIPE] = ACTIONS(4858), - [anon_sym_null] = ACTIONS(4856), [anon_sym_if] = ACTIONS(4856), [anon_sym_else] = ACTIONS(5392), [anon_sym_when] = ACTIONS(4856), @@ -191765,6 +191764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4856), [anon_sym_false] = ACTIONS(4856), [anon_sym_SQUOTE] = ACTIONS(4858), + [sym_null_literal] = ACTIONS(4856), [sym__backtick_identifier] = ACTIONS(4858), [sym__automatic_semicolon] = ACTIONS(4858), [sym_safe_nav] = ACTIONS(4858), @@ -191802,7 +191802,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4198), [anon_sym_AMP_AMP] = ACTIONS(4198), [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), [anon_sym_if] = ACTIONS(4196), [anon_sym_else] = ACTIONS(4196), [anon_sym_when] = ACTIONS(4196), @@ -191869,6 +191868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4196), [anon_sym_false] = ACTIONS(4196), [anon_sym_SQUOTE] = ACTIONS(4198), + [sym_null_literal] = ACTIONS(4196), [sym__backtick_identifier] = ACTIONS(4198), [sym__automatic_semicolon] = ACTIONS(4198), [sym_safe_nav] = ACTIONS(4198), @@ -191948,30 +191948,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3568), [anon_sym_DASH_DASH] = ACTIONS(3568), [anon_sym_BANG_BANG] = ACTIONS(3568), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), [anon_sym_data] = ACTIONS(1732), [anon_sym_inner] = ACTIONS(1732), [anon_sym_value] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(1734), [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), @@ -192010,7 +192010,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4240), [anon_sym_AMP_AMP] = ACTIONS(4240), [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4238), [anon_sym_if] = ACTIONS(4238), [anon_sym_else] = ACTIONS(4238), [anon_sym_when] = ACTIONS(4238), @@ -192077,6 +192076,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4238), [anon_sym_false] = ACTIONS(4238), [anon_sym_SQUOTE] = ACTIONS(4240), + [sym_null_literal] = ACTIONS(4238), [sym__backtick_identifier] = ACTIONS(4240), [sym__automatic_semicolon] = ACTIONS(4240), [sym_safe_nav] = ACTIONS(4240), @@ -192151,38 +192151,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2163), - [anon_sym_if] = ACTIONS(2166), - [anon_sym_when] = ACTIONS(2169), - [anon_sym_try] = ACTIONS(2172), - [anon_sym_throw] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2178), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_if] = ACTIONS(2163), + [anon_sym_when] = ACTIONS(2166), + [anon_sym_try] = ACTIONS(2169), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_COLON_COLON] = ACTIONS(2181), [anon_sym_PLUS] = ACTIONS(2160), [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2187), - [anon_sym_DASH_DASH] = ACTIONS(2187), - [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), [anon_sym_data] = ACTIONS(5283), [anon_sym_inner] = ACTIONS(5283), [anon_sym_value] = ACTIONS(5283), [anon_sym_expect] = ACTIONS(5283), [anon_sym_actual] = ACTIONS(5283), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2190), - [anon_sym_continue_AT] = ACTIONS(2193), - [anon_sym_break_AT] = ACTIONS(2196), - [anon_sym_this_AT] = ACTIONS(2199), - [anon_sym_super_AT] = ACTIONS(2202), - [sym_real_literal] = ACTIONS(2205), - [sym_integer_literal] = ACTIONS(2208), - [sym_hex_literal] = ACTIONS(2211), - [sym_bin_literal] = ACTIONS(2211), - [anon_sym_true] = ACTIONS(2214), - [anon_sym_false] = ACTIONS(2214), - [anon_sym_SQUOTE] = ACTIONS(2217), + [anon_sym_return_AT] = ACTIONS(2187), + [anon_sym_continue_AT] = ACTIONS(2190), + [anon_sym_break_AT] = ACTIONS(2193), + [anon_sym_this_AT] = ACTIONS(2196), + [anon_sym_super_AT] = ACTIONS(2199), + [sym_real_literal] = ACTIONS(2202), + [sym_integer_literal] = ACTIONS(2205), + [sym_hex_literal] = ACTIONS(2208), + [sym_bin_literal] = ACTIONS(2208), + [anon_sym_true] = ACTIONS(2211), + [anon_sym_false] = ACTIONS(2211), + [anon_sym_SQUOTE] = ACTIONS(2214), + [sym_null_literal] = ACTIONS(2217), [sym__backtick_identifier] = ACTIONS(2220), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2223), @@ -192255,15 +192255,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2062), [anon_sym_while] = ACTIONS(2062), [anon_sym_do] = ACTIONS(2062), - [anon_sym_null] = ACTIONS(2545), [anon_sym_if] = ACTIONS(2956), - [anon_sym_when] = ACTIONS(2551), - [anon_sym_try] = ACTIONS(2554), + [anon_sym_when] = ACTIONS(2548), + [anon_sym_try] = ACTIONS(2551), [anon_sym_throw] = ACTIONS(2959), [anon_sym_return] = ACTIONS(2962), - [anon_sym_continue] = ACTIONS(2563), - [anon_sym_break] = ACTIONS(2563), - [anon_sym_COLON_COLON] = ACTIONS(2566), + [anon_sym_continue] = ACTIONS(2560), + [anon_sym_break] = ACTIONS(2560), + [anon_sym_COLON_COLON] = ACTIONS(2563), [anon_sym_PLUS] = ACTIONS(2953), [anon_sym_DASH] = ACTIONS(2953), [anon_sym_PLUS_PLUS] = ACTIONS(2965), @@ -192275,18 +192274,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(5234), [anon_sym_actual] = ACTIONS(5234), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2091), - [anon_sym_continue_AT] = ACTIONS(2572), - [anon_sym_break_AT] = ACTIONS(2575), - [anon_sym_this_AT] = ACTIONS(2578), - [anon_sym_super_AT] = ACTIONS(2581), - [sym_real_literal] = ACTIONS(2584), - [sym_integer_literal] = ACTIONS(2587), - [sym_hex_literal] = ACTIONS(2590), - [sym_bin_literal] = ACTIONS(2590), - [anon_sym_true] = ACTIONS(2593), - [anon_sym_false] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_return_AT] = ACTIONS(2088), + [anon_sym_continue_AT] = ACTIONS(2569), + [anon_sym_break_AT] = ACTIONS(2572), + [anon_sym_this_AT] = ACTIONS(2575), + [anon_sym_super_AT] = ACTIONS(2578), + [sym_real_literal] = ACTIONS(2581), + [sym_integer_literal] = ACTIONS(2584), + [sym_hex_literal] = ACTIONS(2587), + [sym_bin_literal] = ACTIONS(2587), + [anon_sym_true] = ACTIONS(2590), + [anon_sym_false] = ACTIONS(2590), + [anon_sym_SQUOTE] = ACTIONS(2593), + [sym_null_literal] = ACTIONS(2596), [sym__backtick_identifier] = ACTIONS(2599), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(2602), @@ -192317,7 +192317,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4858), [anon_sym_AMP_AMP] = ACTIONS(4858), [anon_sym_PIPE_PIPE] = ACTIONS(4858), - [anon_sym_null] = ACTIONS(4856), [anon_sym_if] = ACTIONS(4856), [anon_sym_else] = ACTIONS(5392), [anon_sym_when] = ACTIONS(4856), @@ -192389,6 +192388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4856), [anon_sym_false] = ACTIONS(4856), [anon_sym_SQUOTE] = ACTIONS(4858), + [sym_null_literal] = ACTIONS(4856), [sym__backtick_identifier] = ACTIONS(4858), [sym__automatic_semicolon] = ACTIONS(4858), [sym_safe_nav] = ACTIONS(4858), @@ -192528,7 +192528,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4232), [anon_sym_AMP_AMP] = ACTIONS(4232), [anon_sym_PIPE_PIPE] = ACTIONS(4232), - [anon_sym_null] = ACTIONS(4230), [anon_sym_if] = ACTIONS(4230), [anon_sym_else] = ACTIONS(4230), [anon_sym_when] = ACTIONS(4230), @@ -192595,6 +192594,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4230), [anon_sym_false] = ACTIONS(4230), [anon_sym_SQUOTE] = ACTIONS(4232), + [sym_null_literal] = ACTIONS(4230), [sym__backtick_identifier] = ACTIONS(4232), [sym__automatic_semicolon] = ACTIONS(4232), [sym_safe_nav] = ACTIONS(4232), @@ -192631,7 +192631,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4418), [anon_sym_AMP_AMP] = ACTIONS(4418), [anon_sym_PIPE_PIPE] = ACTIONS(4418), - [anon_sym_null] = ACTIONS(4416), [anon_sym_if] = ACTIONS(4416), [anon_sym_else] = ACTIONS(4416), [anon_sym_when] = ACTIONS(4416), @@ -192698,6 +192697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4416), [anon_sym_false] = ACTIONS(4416), [anon_sym_SQUOTE] = ACTIONS(4418), + [sym_null_literal] = ACTIONS(4416), [sym__backtick_identifier] = ACTIONS(4418), [sym__automatic_semicolon] = ACTIONS(4418), [sym_safe_nav] = ACTIONS(4418), @@ -192771,15 +192771,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -192791,18 +192790,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -192837,7 +192837,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4204), [anon_sym_AMP_AMP] = ACTIONS(4204), [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_null] = ACTIONS(4202), [anon_sym_if] = ACTIONS(4202), [anon_sym_else] = ACTIONS(4202), [anon_sym_when] = ACTIONS(4202), @@ -192904,6 +192903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4202), [anon_sym_false] = ACTIONS(4202), [anon_sym_SQUOTE] = ACTIONS(4204), + [sym_null_literal] = ACTIONS(4202), [sym__backtick_identifier] = ACTIONS(4204), [sym__automatic_semicolon] = ACTIONS(4204), [sym_safe_nav] = ACTIONS(4204), @@ -192940,7 +192940,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4204), [anon_sym_AMP_AMP] = ACTIONS(4204), [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_null] = ACTIONS(4202), [anon_sym_if] = ACTIONS(4202), [anon_sym_else] = ACTIONS(4202), [anon_sym_when] = ACTIONS(4202), @@ -193007,6 +193006,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4202), [anon_sym_false] = ACTIONS(4202), [anon_sym_SQUOTE] = ACTIONS(4204), + [sym_null_literal] = ACTIONS(4202), [sym__backtick_identifier] = ACTIONS(4204), [sym__automatic_semicolon] = ACTIONS(4204), [sym_safe_nav] = ACTIONS(4204), @@ -193043,7 +193043,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -193110,6 +193109,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -193146,7 +193146,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -193213,6 +193212,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -193286,15 +193286,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -193306,18 +193305,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -193389,15 +193389,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -193409,18 +193408,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -193455,7 +193455,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3230), [anon_sym_AMP_AMP] = ACTIONS(3230), [anon_sym_PIPE_PIPE] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3226), [anon_sym_if] = ACTIONS(3226), [anon_sym_else] = ACTIONS(3226), [anon_sym_when] = ACTIONS(3226), @@ -193522,6 +193521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3226), [anon_sym_false] = ACTIONS(3226), [anon_sym_SQUOTE] = ACTIONS(3230), + [sym_null_literal] = ACTIONS(3226), [sym__backtick_identifier] = ACTIONS(3230), [sym__automatic_semicolon] = ACTIONS(3230), [sym_safe_nav] = ACTIONS(3230), @@ -193661,7 +193661,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4089), [anon_sym_AMP_AMP] = ACTIONS(4089), [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_null] = ACTIONS(4087), [anon_sym_if] = ACTIONS(4087), [anon_sym_else] = ACTIONS(4087), [anon_sym_when] = ACTIONS(4087), @@ -193728,6 +193727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4087), [anon_sym_false] = ACTIONS(4087), [anon_sym_SQUOTE] = ACTIONS(4089), + [sym_null_literal] = ACTIONS(4087), [sym__backtick_identifier] = ACTIONS(4089), [sym__automatic_semicolon] = ACTIONS(4089), [sym_safe_nav] = ACTIONS(4089), @@ -193764,7 +193764,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4453), [anon_sym_AMP_AMP] = ACTIONS(4453), [anon_sym_PIPE_PIPE] = ACTIONS(4453), - [anon_sym_null] = ACTIONS(4451), [anon_sym_if] = ACTIONS(4451), [anon_sym_else] = ACTIONS(4451), [anon_sym_when] = ACTIONS(4451), @@ -193831,6 +193830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4451), [anon_sym_false] = ACTIONS(4451), [anon_sym_SQUOTE] = ACTIONS(4453), + [sym_null_literal] = ACTIONS(4451), [sym__backtick_identifier] = ACTIONS(4453), [sym__automatic_semicolon] = ACTIONS(4453), [sym_safe_nav] = ACTIONS(4453), @@ -193867,7 +193867,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4099), [anon_sym_AMP_AMP] = ACTIONS(4099), [anon_sym_PIPE_PIPE] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4097), [anon_sym_if] = ACTIONS(4097), [anon_sym_else] = ACTIONS(4097), [anon_sym_when] = ACTIONS(4097), @@ -193934,6 +193933,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4097), [anon_sym_false] = ACTIONS(4097), [anon_sym_SQUOTE] = ACTIONS(4099), + [sym_null_literal] = ACTIONS(4097), [sym__backtick_identifier] = ACTIONS(4099), [sym__automatic_semicolon] = ACTIONS(4099), [sym_safe_nav] = ACTIONS(4099), @@ -193971,7 +193971,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4188), [anon_sym_AMP_AMP] = ACTIONS(4188), [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(4190), [anon_sym_when] = ACTIONS(3938), @@ -194038,6 +194037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(4185), [sym_safe_nav] = ACTIONS(4188), [sym_multiline_comment] = ACTIONS(3), @@ -194073,7 +194073,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4198), [anon_sym_AMP_AMP] = ACTIONS(4198), [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), [anon_sym_if] = ACTIONS(4196), [anon_sym_else] = ACTIONS(4196), [anon_sym_when] = ACTIONS(4196), @@ -194140,6 +194139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4196), [anon_sym_false] = ACTIONS(4196), [anon_sym_SQUOTE] = ACTIONS(4198), + [sym_null_literal] = ACTIONS(4196), [sym__backtick_identifier] = ACTIONS(4198), [sym__automatic_semicolon] = ACTIONS(4198), [sym_safe_nav] = ACTIONS(4198), @@ -194213,15 +194213,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -194233,18 +194232,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -194419,15 +194419,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -194439,18 +194438,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -194485,7 +194485,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4154), [anon_sym_AMP_AMP] = ACTIONS(4154), [anon_sym_PIPE_PIPE] = ACTIONS(4154), - [anon_sym_null] = ACTIONS(4152), [anon_sym_if] = ACTIONS(4152), [anon_sym_else] = ACTIONS(4152), [anon_sym_when] = ACTIONS(4152), @@ -194552,6 +194551,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4152), [anon_sym_false] = ACTIONS(4152), [anon_sym_SQUOTE] = ACTIONS(4154), + [sym_null_literal] = ACTIONS(4152), [sym__backtick_identifier] = ACTIONS(4154), [sym__automatic_semicolon] = ACTIONS(4154), [sym_safe_nav] = ACTIONS(4154), @@ -194728,15 +194728,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -194748,18 +194747,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -194794,7 +194794,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4276), [anon_sym_AMP_AMP] = ACTIONS(4276), [anon_sym_PIPE_PIPE] = ACTIONS(4276), - [anon_sym_null] = ACTIONS(4274), [anon_sym_if] = ACTIONS(4274), [anon_sym_else] = ACTIONS(4274), [anon_sym_when] = ACTIONS(4274), @@ -194861,6 +194860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4274), [anon_sym_false] = ACTIONS(4274), [anon_sym_SQUOTE] = ACTIONS(4276), + [sym_null_literal] = ACTIONS(4274), [sym__backtick_identifier] = ACTIONS(4276), [sym__automatic_semicolon] = ACTIONS(4276), [sym_safe_nav] = ACTIONS(4276), @@ -195000,7 +195000,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4079), [anon_sym_AMP_AMP] = ACTIONS(4079), [anon_sym_PIPE_PIPE] = ACTIONS(4079), - [anon_sym_null] = ACTIONS(4077), [anon_sym_if] = ACTIONS(4077), [anon_sym_else] = ACTIONS(4077), [anon_sym_when] = ACTIONS(4077), @@ -195067,6 +195066,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4077), [anon_sym_false] = ACTIONS(4077), [anon_sym_SQUOTE] = ACTIONS(4079), + [sym_null_literal] = ACTIONS(4077), [sym__backtick_identifier] = ACTIONS(4079), [sym__automatic_semicolon] = ACTIONS(4079), [sym_safe_nav] = ACTIONS(4079), @@ -195243,15 +195243,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -195263,18 +195262,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -195346,15 +195346,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -195366,18 +195365,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -195449,15 +195449,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -195469,18 +195468,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -195552,15 +195552,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -195572,18 +195571,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -195655,15 +195655,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -195675,18 +195674,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -195758,15 +195758,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -195778,18 +195777,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -195861,15 +195861,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -195881,18 +195880,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -195927,7 +195927,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4089), [anon_sym_AMP_AMP] = ACTIONS(4089), [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_null] = ACTIONS(4087), [anon_sym_if] = ACTIONS(4087), [anon_sym_else] = ACTIONS(4087), [anon_sym_when] = ACTIONS(4087), @@ -195994,6 +195993,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4087), [anon_sym_false] = ACTIONS(4087), [anon_sym_SQUOTE] = ACTIONS(4089), + [sym_null_literal] = ACTIONS(4087), [sym__backtick_identifier] = ACTIONS(4089), [sym__automatic_semicolon] = ACTIONS(4089), [sym_safe_nav] = ACTIONS(4089), @@ -196067,15 +196067,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -196087,18 +196086,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -196170,15 +196170,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -196190,18 +196189,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -196236,7 +196236,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4099), [anon_sym_AMP_AMP] = ACTIONS(4099), [anon_sym_PIPE_PIPE] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4097), [anon_sym_if] = ACTIONS(4097), [anon_sym_else] = ACTIONS(4097), [anon_sym_when] = ACTIONS(4097), @@ -196303,6 +196302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4097), [anon_sym_false] = ACTIONS(4097), [anon_sym_SQUOTE] = ACTIONS(4099), + [sym_null_literal] = ACTIONS(4097), [sym__backtick_identifier] = ACTIONS(4099), [sym__automatic_semicolon] = ACTIONS(4099), [sym_safe_nav] = ACTIONS(4099), @@ -196376,15 +196376,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -196396,18 +196395,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -196442,7 +196442,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4144), [anon_sym_AMP_AMP] = ACTIONS(4144), [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4142), [anon_sym_if] = ACTIONS(4142), [anon_sym_else] = ACTIONS(4142), [anon_sym_when] = ACTIONS(4142), @@ -196509,6 +196508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4142), [anon_sym_false] = ACTIONS(4142), [anon_sym_SQUOTE] = ACTIONS(4144), + [sym_null_literal] = ACTIONS(4142), [sym__backtick_identifier] = ACTIONS(4144), [sym__automatic_semicolon] = ACTIONS(4144), [sym_safe_nav] = ACTIONS(4144), @@ -196582,15 +196582,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -196602,18 +196601,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -196685,15 +196685,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -196705,18 +196704,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -196752,7 +196752,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4220), [anon_sym_AMP_AMP] = ACTIONS(4220), [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(4222), [anon_sym_when] = ACTIONS(3938), @@ -196819,6 +196818,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(4217), [sym_safe_nav] = ACTIONS(4220), [sym_multiline_comment] = ACTIONS(3), @@ -196854,7 +196854,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4232), [anon_sym_AMP_AMP] = ACTIONS(4232), [anon_sym_PIPE_PIPE] = ACTIONS(4232), - [anon_sym_null] = ACTIONS(4230), [anon_sym_if] = ACTIONS(4230), [anon_sym_else] = ACTIONS(4230), [anon_sym_when] = ACTIONS(4230), @@ -196921,6 +196920,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4230), [anon_sym_false] = ACTIONS(4230), [anon_sym_SQUOTE] = ACTIONS(4232), + [sym_null_literal] = ACTIONS(4230), [sym__backtick_identifier] = ACTIONS(4232), [sym__automatic_semicolon] = ACTIONS(4232), [sym_safe_nav] = ACTIONS(4232), @@ -196957,7 +196957,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4262), [anon_sym_AMP_AMP] = ACTIONS(4262), [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_null] = ACTIONS(4260), [anon_sym_if] = ACTIONS(4260), [anon_sym_else] = ACTIONS(4260), [anon_sym_when] = ACTIONS(4260), @@ -197024,6 +197023,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4260), [anon_sym_false] = ACTIONS(4260), [anon_sym_SQUOTE] = ACTIONS(4262), + [sym_null_literal] = ACTIONS(4260), [sym__backtick_identifier] = ACTIONS(4262), [sym__automatic_semicolon] = ACTIONS(4262), [sym_safe_nav] = ACTIONS(4262), @@ -197163,7 +197163,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4445), [anon_sym_AMP_AMP] = ACTIONS(4445), [anon_sym_PIPE_PIPE] = ACTIONS(4445), - [anon_sym_null] = ACTIONS(4443), [anon_sym_if] = ACTIONS(4443), [anon_sym_else] = ACTIONS(4443), [anon_sym_when] = ACTIONS(4443), @@ -197230,6 +197229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4443), [anon_sym_false] = ACTIONS(4443), [anon_sym_SQUOTE] = ACTIONS(4445), + [sym_null_literal] = ACTIONS(4443), [sym__backtick_identifier] = ACTIONS(4445), [sym__automatic_semicolon] = ACTIONS(4445), [sym_safe_nav] = ACTIONS(4445), @@ -197303,15 +197303,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -197323,18 +197322,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -197406,15 +197406,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -197426,18 +197425,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -197509,15 +197509,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -197529,18 +197528,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -197575,7 +197575,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4262), [anon_sym_AMP_AMP] = ACTIONS(4262), [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_null] = ACTIONS(4260), [anon_sym_if] = ACTIONS(4260), [anon_sym_else] = ACTIONS(4260), [anon_sym_when] = ACTIONS(4260), @@ -197642,6 +197641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4260), [anon_sym_false] = ACTIONS(4260), [anon_sym_SQUOTE] = ACTIONS(4262), + [sym_null_literal] = ACTIONS(4260), [sym__backtick_identifier] = ACTIONS(4262), [sym__automatic_semicolon] = ACTIONS(4262), [sym_safe_nav] = ACTIONS(4262), @@ -197715,15 +197715,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -197735,18 +197734,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -197818,15 +197818,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -197838,18 +197837,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -197921,15 +197921,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -197941,18 +197940,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -198024,15 +198024,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -198044,18 +198043,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -198127,15 +198127,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -198147,18 +198146,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -198230,15 +198230,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -198250,18 +198249,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -198333,15 +198333,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -198353,18 +198352,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -198436,15 +198436,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -198456,18 +198455,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -198539,15 +198539,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -198559,18 +198558,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -198642,15 +198642,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -198662,18 +198661,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -198745,15 +198745,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -198765,18 +198764,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -198951,15 +198951,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -198971,18 +198970,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -199054,15 +199054,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -199074,18 +199073,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -199157,15 +199157,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -199177,18 +199176,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -199259,39 +199259,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -199326,7 +199326,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3240), [anon_sym_AMP_AMP] = ACTIONS(3240), [anon_sym_PIPE_PIPE] = ACTIONS(3240), - [anon_sym_null] = ACTIONS(3236), [anon_sym_if] = ACTIONS(3236), [anon_sym_else] = ACTIONS(3236), [anon_sym_when] = ACTIONS(3236), @@ -199393,6 +199392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3236), [anon_sym_false] = ACTIONS(3236), [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), [sym__backtick_identifier] = ACTIONS(3240), [sym__automatic_semicolon] = ACTIONS(3240), [sym_safe_nav] = ACTIONS(3240), @@ -199466,15 +199466,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -199486,18 +199485,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -199569,15 +199569,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -199589,18 +199588,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -199672,15 +199672,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -199692,18 +199691,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -199775,15 +199775,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -199795,18 +199794,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -199878,15 +199878,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -199898,18 +199897,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -199981,15 +199981,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -200001,18 +200000,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -200084,15 +200084,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -200104,18 +200103,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -200187,15 +200187,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -200207,18 +200206,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -200290,15 +200290,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -200310,18 +200309,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -200393,15 +200393,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -200413,18 +200412,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -200496,15 +200496,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -200516,18 +200515,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -200599,15 +200599,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -200619,18 +200618,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -200702,15 +200702,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -200722,18 +200721,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -200805,15 +200805,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -200825,18 +200824,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -200908,15 +200908,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -200928,18 +200927,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -201011,15 +201011,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -201031,18 +201030,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -201114,15 +201114,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -201134,18 +201133,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -201180,7 +201180,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4144), [anon_sym_AMP_AMP] = ACTIONS(4144), [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4142), [anon_sym_if] = ACTIONS(4142), [anon_sym_else] = ACTIONS(4142), [anon_sym_when] = ACTIONS(4142), @@ -201247,6 +201246,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4142), [anon_sym_false] = ACTIONS(4142), [anon_sym_SQUOTE] = ACTIONS(4144), + [sym_null_literal] = ACTIONS(4142), [sym__backtick_identifier] = ACTIONS(4144), [sym__automatic_semicolon] = ACTIONS(4144), [sym_safe_nav] = ACTIONS(4144), @@ -201320,15 +201320,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -201340,18 +201339,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -201423,15 +201423,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -201443,18 +201442,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -201526,15 +201526,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -201546,18 +201545,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -201629,15 +201629,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -201649,18 +201648,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -201832,39 +201832,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -201935,15 +201935,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5420), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -201955,18 +201954,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -202000,7 +202000,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -202067,6 +202066,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -202306,7 +202306,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -202373,6 +202372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -202408,7 +202408,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4276), [anon_sym_AMP_AMP] = ACTIONS(4276), [anon_sym_PIPE_PIPE] = ACTIONS(4276), - [anon_sym_null] = ACTIONS(4274), [anon_sym_if] = ACTIONS(4274), [anon_sym_else] = ACTIONS(4274), [anon_sym_when] = ACTIONS(4274), @@ -202475,6 +202474,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4274), [anon_sym_false] = ACTIONS(4274), [anon_sym_SQUOTE] = ACTIONS(4276), + [sym_null_literal] = ACTIONS(4274), [sym__backtick_identifier] = ACTIONS(4276), [sym__automatic_semicolon] = ACTIONS(4276), [sym_safe_nav] = ACTIONS(4276), @@ -202510,7 +202510,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4252), [anon_sym_AMP_AMP] = ACTIONS(4252), [anon_sym_PIPE_PIPE] = ACTIONS(4252), - [anon_sym_null] = ACTIONS(4250), [anon_sym_if] = ACTIONS(4250), [anon_sym_else] = ACTIONS(4250), [anon_sym_when] = ACTIONS(4250), @@ -202577,6 +202576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4250), [anon_sym_false] = ACTIONS(4250), [anon_sym_SQUOTE] = ACTIONS(4252), + [sym_null_literal] = ACTIONS(4250), [sym__backtick_identifier] = ACTIONS(4252), [sym__automatic_semicolon] = ACTIONS(4252), [sym_safe_nav] = ACTIONS(4252), @@ -202612,7 +202612,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4349), [anon_sym_AMP_AMP] = ACTIONS(4349), [anon_sym_PIPE_PIPE] = ACTIONS(4349), - [anon_sym_null] = ACTIONS(4347), [anon_sym_if] = ACTIONS(4347), [anon_sym_else] = ACTIONS(4347), [anon_sym_when] = ACTIONS(4347), @@ -202679,6 +202678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4347), [anon_sym_false] = ACTIONS(4347), [anon_sym_SQUOTE] = ACTIONS(4349), + [sym_null_literal] = ACTIONS(4347), [sym__backtick_identifier] = ACTIONS(4349), [sym__automatic_semicolon] = ACTIONS(4349), [sym_safe_nav] = ACTIONS(4349), @@ -202714,7 +202714,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3230), [anon_sym_AMP_AMP] = ACTIONS(3230), [anon_sym_PIPE_PIPE] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3226), [anon_sym_if] = ACTIONS(3226), [anon_sym_else] = ACTIONS(3226), [anon_sym_when] = ACTIONS(3226), @@ -202781,6 +202780,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3226), [anon_sym_false] = ACTIONS(3226), [anon_sym_SQUOTE] = ACTIONS(3230), + [sym_null_literal] = ACTIONS(3226), [sym__backtick_identifier] = ACTIONS(3230), [sym__automatic_semicolon] = ACTIONS(3230), [sym_safe_nav] = ACTIONS(3230), @@ -202816,7 +202816,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4240), [anon_sym_AMP_AMP] = ACTIONS(4240), [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4238), [anon_sym_if] = ACTIONS(4238), [anon_sym_else] = ACTIONS(4238), [anon_sym_when] = ACTIONS(4238), @@ -202883,6 +202882,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4238), [anon_sym_false] = ACTIONS(4238), [anon_sym_SQUOTE] = ACTIONS(4240), + [sym_null_literal] = ACTIONS(4238), [sym__backtick_identifier] = ACTIONS(4240), [sym__automatic_semicolon] = ACTIONS(4240), [sym_safe_nav] = ACTIONS(4240), @@ -203158,39 +203158,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -203734,7 +203734,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4204), [anon_sym_AMP_AMP] = ACTIONS(4204), [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_null] = ACTIONS(4202), [anon_sym_if] = ACTIONS(4202), [anon_sym_else] = ACTIONS(4202), [anon_sym_when] = ACTIONS(4202), @@ -203801,6 +203800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4202), [anon_sym_false] = ACTIONS(4202), [anon_sym_SQUOTE] = ACTIONS(4204), + [sym_null_literal] = ACTIONS(4202), [sym__backtick_identifier] = ACTIONS(4204), [sym__automatic_semicolon] = ACTIONS(4204), [sym_safe_nav] = ACTIONS(4204), @@ -204856,7 +204856,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4198), [anon_sym_AMP_AMP] = ACTIONS(4198), [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), [anon_sym_if] = ACTIONS(4196), [anon_sym_else] = ACTIONS(4196), [anon_sym_when] = ACTIONS(4196), @@ -204923,6 +204922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4196), [anon_sym_false] = ACTIONS(4196), [anon_sym_SQUOTE] = ACTIONS(4198), + [sym_null_literal] = ACTIONS(4196), [sym__backtick_identifier] = ACTIONS(4198), [sym__automatic_semicolon] = ACTIONS(4198), [sym_safe_nav] = ACTIONS(4198), @@ -205162,7 +205162,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4355), [anon_sym_AMP_AMP] = ACTIONS(4355), [anon_sym_PIPE_PIPE] = ACTIONS(4355), - [anon_sym_null] = ACTIONS(4353), [anon_sym_if] = ACTIONS(4353), [anon_sym_else] = ACTIONS(4353), [anon_sym_when] = ACTIONS(4353), @@ -205229,6 +205228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4353), [anon_sym_false] = ACTIONS(4353), [anon_sym_SQUOTE] = ACTIONS(4355), + [sym_null_literal] = ACTIONS(4353), [sym__backtick_identifier] = ACTIONS(4355), [sym__automatic_semicolon] = ACTIONS(4355), [sym_safe_nav] = ACTIONS(4355), @@ -205264,7 +205264,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4154), [anon_sym_AMP_AMP] = ACTIONS(4154), [anon_sym_PIPE_PIPE] = ACTIONS(4154), - [anon_sym_null] = ACTIONS(4152), [anon_sym_if] = ACTIONS(4152), [anon_sym_else] = ACTIONS(4152), [anon_sym_when] = ACTIONS(4152), @@ -205331,6 +205330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4152), [anon_sym_false] = ACTIONS(4152), [anon_sym_SQUOTE] = ACTIONS(4154), + [sym_null_literal] = ACTIONS(4152), [sym__backtick_identifier] = ACTIONS(4154), [sym__automatic_semicolon] = ACTIONS(4154), [sym_safe_nav] = ACTIONS(4154), @@ -205570,7 +205570,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4327), [anon_sym_AMP_AMP] = ACTIONS(4327), [anon_sym_PIPE_PIPE] = ACTIONS(4327), - [anon_sym_null] = ACTIONS(4325), [anon_sym_if] = ACTIONS(4325), [anon_sym_else] = ACTIONS(4325), [anon_sym_when] = ACTIONS(4325), @@ -205637,6 +205636,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4325), [anon_sym_false] = ACTIONS(4325), [anon_sym_SQUOTE] = ACTIONS(4327), + [sym_null_literal] = ACTIONS(4325), [sym__backtick_identifier] = ACTIONS(4327), [sym__automatic_semicolon] = ACTIONS(4327), [sym_safe_nav] = ACTIONS(4327), @@ -205774,7 +205774,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4204), [anon_sym_AMP_AMP] = ACTIONS(4204), [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_null] = ACTIONS(4202), [anon_sym_if] = ACTIONS(4202), [anon_sym_else] = ACTIONS(4202), [anon_sym_when] = ACTIONS(4202), @@ -205841,6 +205840,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4202), [anon_sym_false] = ACTIONS(4202), [anon_sym_SQUOTE] = ACTIONS(4204), + [sym_null_literal] = ACTIONS(4202), [sym__backtick_identifier] = ACTIONS(4204), [sym__automatic_semicolon] = ACTIONS(4204), [sym_safe_nav] = ACTIONS(4204), @@ -205876,7 +205876,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3240), [anon_sym_AMP_AMP] = ACTIONS(3240), [anon_sym_PIPE_PIPE] = ACTIONS(3240), - [anon_sym_null] = ACTIONS(3236), [anon_sym_if] = ACTIONS(3236), [anon_sym_else] = ACTIONS(3236), [anon_sym_when] = ACTIONS(3236), @@ -205943,6 +205942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3236), [anon_sym_false] = ACTIONS(3236), [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), [sym__backtick_identifier] = ACTIONS(3240), [sym__automatic_semicolon] = ACTIONS(3240), [sym_safe_nav] = ACTIONS(3240), @@ -206217,39 +206217,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1197), - [sym_label] = ACTIONS(391), - [anon_sym_null] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -206319,15 +206319,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -206339,18 +206338,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -206419,39 +206419,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -206521,15 +206521,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1209), [sym_label] = ACTIONS(707), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), @@ -206541,18 +206540,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -206622,15 +206622,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1209), [sym_label] = ACTIONS(707), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), @@ -206642,18 +206641,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -206723,15 +206723,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1209), [sym_label] = ACTIONS(707), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), @@ -206743,18 +206742,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -206824,15 +206824,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1209), [sym_label] = ACTIONS(707), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), @@ -206844,18 +206843,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -206925,15 +206925,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1209), [sym_label] = ACTIONS(707), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), @@ -206945,18 +206944,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -207026,15 +207026,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -207046,18 +207045,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -207127,15 +207127,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -207147,18 +207146,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -207228,15 +207228,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -207248,18 +207247,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -207329,15 +207329,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -207349,18 +207348,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -207430,15 +207430,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1209), [sym_label] = ACTIONS(707), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), @@ -207450,18 +207449,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -207531,15 +207531,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1209), [sym_label] = ACTIONS(707), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), @@ -207551,18 +207550,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -207631,39 +207631,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(809), - [sym_label] = ACTIONS(819), - [anon_sym_null] = ACTIONS(1590), + [sym_label] = ACTIONS(817), [anon_sym_if] = ACTIONS(1626), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1628), [anon_sym_return] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -207733,15 +207733,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1209), [sym_label] = ACTIONS(707), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), @@ -207753,18 +207752,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -207833,39 +207833,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1870), + [sym_label] = ACTIONS(67), [anon_sym_if] = ACTIONS(3038), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3040), [anon_sym_return] = ACTIONS(3042), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -207934,39 +207934,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(809), - [sym_label] = ACTIONS(819), - [anon_sym_null] = ACTIONS(1590), + [sym_label] = ACTIONS(817), [anon_sym_if] = ACTIONS(1626), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1628), [anon_sym_return] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -208036,15 +208036,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -208056,18 +208055,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -208137,15 +208137,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -208157,18 +208156,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -208238,15 +208238,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -208258,18 +208257,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -208339,15 +208339,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -208359,18 +208358,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -208440,15 +208440,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -208460,18 +208459,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -208541,15 +208541,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -208561,18 +208560,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -208642,15 +208642,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -208662,18 +208661,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -208743,15 +208743,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1085), [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3090), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3092), [anon_sym_return] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(1093), [anon_sym_DASH] = ACTIONS(1093), [anon_sym_PLUS_PLUS] = ACTIONS(1095), @@ -208763,18 +208762,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -208843,39 +208843,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(921), - [sym_label] = ACTIONS(931), - [anon_sym_null] = ACTIONS(1614), + [sym_label] = ACTIONS(929), [anon_sym_if] = ACTIONS(1634), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1636), [anon_sym_return] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -208944,39 +208944,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1233), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -209046,15 +209046,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1209), [sym_label] = ACTIONS(707), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), @@ -209066,18 +209065,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -209147,15 +209147,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1209), [sym_label] = ACTIONS(707), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), @@ -209167,18 +209166,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -209247,39 +209247,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1257), - [sym_label] = ACTIONS(515), - [anon_sym_null] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), + [sym_label] = ACTIONS(513), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -209348,39 +209348,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1233), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -209450,15 +209450,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -209470,18 +209469,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -209550,39 +209550,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1233), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -209651,39 +209651,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1233), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -209752,39 +209752,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1233), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -209853,39 +209853,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1233), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -209954,39 +209954,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(809), - [sym_label] = ACTIONS(819), - [anon_sym_null] = ACTIONS(1590), + [sym_label] = ACTIONS(817), [anon_sym_if] = ACTIONS(1626), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1628), [anon_sym_return] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -210055,39 +210055,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1233), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -210156,39 +210156,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1233), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -210257,39 +210257,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1233), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -210358,39 +210358,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1233), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -210460,15 +210460,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1209), [sym_label] = ACTIONS(707), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), @@ -210480,18 +210479,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -210560,39 +210560,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1233), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -210662,15 +210662,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1209), [sym_label] = ACTIONS(707), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), @@ -210682,18 +210681,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -210763,15 +210763,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -210783,18 +210782,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -210864,15 +210864,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -210884,18 +210883,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -210965,15 +210965,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1209), [sym_label] = ACTIONS(707), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), @@ -210985,18 +210984,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -211065,39 +211065,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1233), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -211167,15 +211167,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -211187,18 +211186,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -211268,15 +211268,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -211288,18 +211287,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -211369,15 +211369,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1085), [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3090), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3092), [anon_sym_return] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(1093), [anon_sym_DASH] = ACTIONS(1093), [anon_sym_PLUS_PLUS] = ACTIONS(1095), @@ -211389,18 +211388,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -211469,39 +211469,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1233), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -211534,7 +211534,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4453), [anon_sym_AMP_AMP] = ACTIONS(4453), [anon_sym_PIPE_PIPE] = ACTIONS(4453), - [anon_sym_null] = ACTIONS(4451), [anon_sym_if] = ACTIONS(4451), [anon_sym_else] = ACTIONS(4451), [anon_sym_when] = ACTIONS(4451), @@ -211601,6 +211600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4451), [anon_sym_false] = ACTIONS(4451), [anon_sym_SQUOTE] = ACTIONS(4453), + [sym_null_literal] = ACTIONS(4451), [sym__backtick_identifier] = ACTIONS(4453), [sym__automatic_semicolon] = ACTIONS(4453), [sym_safe_nav] = ACTIONS(4453), @@ -211671,39 +211671,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1233), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -211772,39 +211772,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(809), - [sym_label] = ACTIONS(819), - [anon_sym_null] = ACTIONS(1590), + [sym_label] = ACTIONS(817), [anon_sym_if] = ACTIONS(1626), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1628), [anon_sym_return] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -211874,15 +211874,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -211894,18 +211893,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -211975,15 +211975,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1289), [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(677), [anon_sym_DASH] = ACTIONS(677), [anon_sym_PLUS_PLUS] = ACTIONS(679), @@ -211995,18 +211994,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -212076,15 +212076,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1251), [sym_label] = ACTIONS(791), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(785), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(791), [anon_sym_DASH] = ACTIONS(791), [anon_sym_PLUS_PLUS] = ACTIONS(793), @@ -212096,18 +212095,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -212177,15 +212177,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1251), [sym_label] = ACTIONS(791), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(785), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(791), [anon_sym_DASH] = ACTIONS(791), [anon_sym_PLUS_PLUS] = ACTIONS(793), @@ -212197,18 +212196,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -212278,15 +212278,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -212298,18 +212297,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -212379,15 +212379,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1209), [sym_label] = ACTIONS(707), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), @@ -212399,18 +212398,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -212480,15 +212480,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1209), [sym_label] = ACTIONS(707), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), @@ -212500,18 +212499,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -212580,39 +212580,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(809), - [sym_label] = ACTIONS(819), - [anon_sym_null] = ACTIONS(1590), + [sym_label] = ACTIONS(817), [anon_sym_if] = ACTIONS(1626), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1628), [anon_sym_return] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -212681,39 +212681,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1870), + [sym_label] = ACTIONS(67), [anon_sym_if] = ACTIONS(3038), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3040), [anon_sym_return] = ACTIONS(3042), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -212783,15 +212783,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1209), [sym_label] = ACTIONS(707), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), @@ -212803,18 +212802,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -212884,15 +212884,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1209), [sym_label] = ACTIONS(707), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), @@ -212904,18 +212903,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -212985,15 +212985,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1209), [sym_label] = ACTIONS(707), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), @@ -213005,18 +213004,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -213086,15 +213086,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1209), [sym_label] = ACTIONS(707), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), @@ -213106,18 +213105,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -213186,39 +213186,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(809), - [sym_label] = ACTIONS(819), - [anon_sym_null] = ACTIONS(1590), + [sym_label] = ACTIONS(817), [anon_sym_if] = ACTIONS(1626), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1628), [anon_sym_return] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -213288,15 +213288,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -213308,18 +213307,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -213389,15 +213389,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -213409,18 +213408,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -213490,15 +213490,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -213510,18 +213509,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -213591,15 +213591,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1251), [sym_label] = ACTIONS(791), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(785), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(791), [anon_sym_DASH] = ACTIONS(791), [anon_sym_PLUS_PLUS] = ACTIONS(793), @@ -213611,18 +213610,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -213692,15 +213692,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1251), [sym_label] = ACTIONS(791), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(785), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(791), [anon_sym_DASH] = ACTIONS(791), [anon_sym_PLUS_PLUS] = ACTIONS(793), @@ -213712,18 +213711,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -213793,15 +213793,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1251), [sym_label] = ACTIONS(791), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(785), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(791), [anon_sym_DASH] = ACTIONS(791), [anon_sym_PLUS_PLUS] = ACTIONS(793), @@ -213813,18 +213812,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -213894,15 +213894,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1251), [sym_label] = ACTIONS(791), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(785), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(791), [anon_sym_DASH] = ACTIONS(791), [anon_sym_PLUS_PLUS] = ACTIONS(793), @@ -213914,18 +213913,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -213995,15 +213995,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1251), [sym_label] = ACTIONS(791), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(785), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(791), [anon_sym_DASH] = ACTIONS(791), [anon_sym_PLUS_PLUS] = ACTIONS(793), @@ -214015,18 +214014,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -214095,39 +214095,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(809), - [sym_label] = ACTIONS(819), - [anon_sym_null] = ACTIONS(1590), + [sym_label] = ACTIONS(817), [anon_sym_if] = ACTIONS(1626), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1628), [anon_sym_return] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -214197,15 +214197,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -214217,18 +214216,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -214298,15 +214298,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -214318,18 +214317,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -214399,15 +214399,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1251), [sym_label] = ACTIONS(791), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(785), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(791), [anon_sym_DASH] = ACTIONS(791), [anon_sym_PLUS_PLUS] = ACTIONS(793), @@ -214419,18 +214418,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -214500,15 +214500,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1251), [sym_label] = ACTIONS(791), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(785), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(791), [anon_sym_DASH] = ACTIONS(791), [anon_sym_PLUS_PLUS] = ACTIONS(793), @@ -214520,18 +214519,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -214601,15 +214601,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1251), [sym_label] = ACTIONS(791), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(785), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(791), [anon_sym_DASH] = ACTIONS(791), [anon_sym_PLUS_PLUS] = ACTIONS(793), @@ -214621,18 +214620,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -214702,15 +214702,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1251), [sym_label] = ACTIONS(791), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(785), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(791), [anon_sym_DASH] = ACTIONS(791), [anon_sym_PLUS_PLUS] = ACTIONS(793), @@ -214722,18 +214721,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -214803,15 +214803,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -214823,18 +214822,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -214903,39 +214903,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -215005,15 +215005,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1085), [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3090), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3092), [anon_sym_return] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(1093), [anon_sym_DASH] = ACTIONS(1093), [anon_sym_PLUS_PLUS] = ACTIONS(1095), @@ -215025,18 +215024,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -215106,15 +215106,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1251), [sym_label] = ACTIONS(791), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(785), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(791), [anon_sym_DASH] = ACTIONS(791), [anon_sym_PLUS_PLUS] = ACTIONS(793), @@ -215126,18 +215125,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -215207,15 +215207,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -215227,18 +215226,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -215308,15 +215308,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -215328,18 +215327,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -215409,15 +215409,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -215429,18 +215428,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -215510,15 +215510,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -215530,18 +215529,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -215611,15 +215611,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -215631,18 +215630,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -215675,7 +215675,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4418), [anon_sym_AMP_AMP] = ACTIONS(4418), [anon_sym_PIPE_PIPE] = ACTIONS(4418), - [anon_sym_null] = ACTIONS(4416), [anon_sym_if] = ACTIONS(4416), [anon_sym_else] = ACTIONS(4416), [anon_sym_when] = ACTIONS(4416), @@ -215742,6 +215741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4416), [anon_sym_false] = ACTIONS(4416), [anon_sym_SQUOTE] = ACTIONS(4418), + [sym_null_literal] = ACTIONS(4416), [sym__backtick_identifier] = ACTIONS(4418), [sym__automatic_semicolon] = ACTIONS(4418), [sym_safe_nav] = ACTIONS(4418), @@ -215813,15 +215813,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -215833,18 +215832,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -215914,15 +215914,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -215934,18 +215933,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -216014,39 +216014,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(809), - [sym_label] = ACTIONS(819), - [anon_sym_null] = ACTIONS(1590), + [sym_label] = ACTIONS(817), [anon_sym_if] = ACTIONS(1626), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1628), [anon_sym_return] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -216116,15 +216116,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1245), [sym_label] = ACTIONS(737), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), @@ -216136,18 +216135,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -216216,39 +216216,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(809), - [sym_label] = ACTIONS(819), - [anon_sym_null] = ACTIONS(1590), + [sym_label] = ACTIONS(817), [anon_sym_if] = ACTIONS(1626), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1628), [anon_sym_return] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -216318,15 +216318,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -216338,18 +216337,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -216419,15 +216419,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -216439,18 +216438,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -216519,39 +216519,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(809), - [sym_label] = ACTIONS(819), - [anon_sym_null] = ACTIONS(1590), + [sym_label] = ACTIONS(817), [anon_sym_if] = ACTIONS(1626), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1628), [anon_sym_return] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -216620,39 +216620,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(809), - [sym_label] = ACTIONS(819), - [anon_sym_null] = ACTIONS(1590), + [sym_label] = ACTIONS(817), [anon_sym_if] = ACTIONS(1626), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1628), [anon_sym_return] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -216722,15 +216722,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -216742,18 +216741,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -216822,39 +216822,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1257), - [sym_label] = ACTIONS(515), - [anon_sym_null] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), + [sym_label] = ACTIONS(513), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -216923,39 +216923,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1191), - [sym_label] = ACTIONS(597), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(583), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(599), + [sym_label] = ACTIONS(595), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -217024,39 +217024,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1257), - [sym_label] = ACTIONS(515), - [anon_sym_null] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), + [sym_label] = ACTIONS(513), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -217125,39 +217125,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1257), - [sym_label] = ACTIONS(515), - [anon_sym_null] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), + [sym_label] = ACTIONS(513), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -217226,39 +217226,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1257), - [sym_label] = ACTIONS(515), - [anon_sym_null] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), + [sym_label] = ACTIONS(513), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -217327,39 +217327,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1257), - [sym_label] = ACTIONS(515), - [anon_sym_null] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), + [sym_label] = ACTIONS(513), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -217428,39 +217428,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1257), - [sym_label] = ACTIONS(515), - [anon_sym_null] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), + [sym_label] = ACTIONS(513), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -217529,39 +217529,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1257), - [sym_label] = ACTIONS(515), - [anon_sym_null] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), + [sym_label] = ACTIONS(513), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -217630,39 +217630,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1257), - [sym_label] = ACTIONS(515), - [anon_sym_null] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), + [sym_label] = ACTIONS(513), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -217731,39 +217731,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1257), - [sym_label] = ACTIONS(515), - [anon_sym_null] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), + [sym_label] = ACTIONS(513), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -217832,39 +217832,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(809), - [sym_label] = ACTIONS(819), - [anon_sym_null] = ACTIONS(1590), + [sym_label] = ACTIONS(817), [anon_sym_if] = ACTIONS(1626), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1628), [anon_sym_return] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -217933,39 +217933,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1257), - [sym_label] = ACTIONS(515), - [anon_sym_null] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), + [sym_label] = ACTIONS(513), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -218034,39 +218034,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1257), - [sym_label] = ACTIONS(515), - [anon_sym_null] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), + [sym_label] = ACTIONS(513), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -218135,39 +218135,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -218236,39 +218236,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(809), - [sym_label] = ACTIONS(819), - [anon_sym_null] = ACTIONS(1590), + [sym_label] = ACTIONS(817), [anon_sym_if] = ACTIONS(1626), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1628), [anon_sym_return] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -218337,39 +218337,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(809), - [sym_label] = ACTIONS(819), - [anon_sym_null] = ACTIONS(1590), + [sym_label] = ACTIONS(817), [anon_sym_if] = ACTIONS(1626), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1628), [anon_sym_return] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -218438,39 +218438,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -218539,39 +218539,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(809), - [sym_label] = ACTIONS(819), - [anon_sym_null] = ACTIONS(1590), + [sym_label] = ACTIONS(817), [anon_sym_if] = ACTIONS(1626), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1628), [anon_sym_return] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -218640,39 +218640,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1257), - [sym_label] = ACTIONS(515), - [anon_sym_null] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), + [sym_label] = ACTIONS(513), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -218742,15 +218742,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -218762,18 +218761,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -218842,39 +218842,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1257), - [sym_label] = ACTIONS(515), - [anon_sym_null] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), + [sym_label] = ACTIONS(513), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -218943,39 +218943,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(809), - [sym_label] = ACTIONS(819), - [anon_sym_null] = ACTIONS(1590), + [sym_label] = ACTIONS(817), [anon_sym_if] = ACTIONS(1626), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1628), [anon_sym_return] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -219045,15 +219045,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -219065,18 +219064,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -219145,39 +219145,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1257), - [sym_label] = ACTIONS(515), - [anon_sym_null] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), + [sym_label] = ACTIONS(513), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -219247,15 +219247,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -219267,18 +219266,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -219347,39 +219347,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(809), - [sym_label] = ACTIONS(819), - [anon_sym_null] = ACTIONS(1590), + [sym_label] = ACTIONS(817), [anon_sym_if] = ACTIONS(1626), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1628), [anon_sym_return] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -219448,39 +219448,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(809), - [sym_label] = ACTIONS(819), - [anon_sym_null] = ACTIONS(1590), + [sym_label] = ACTIONS(817), [anon_sym_if] = ACTIONS(1626), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1628), [anon_sym_return] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -219550,15 +219550,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -219570,18 +219569,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -219651,15 +219651,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -219671,18 +219670,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -219751,39 +219751,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(809), - [sym_label] = ACTIONS(819), - [anon_sym_null] = ACTIONS(1590), + [sym_label] = ACTIONS(817), [anon_sym_if] = ACTIONS(1626), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1628), [anon_sym_return] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -219853,15 +219853,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -219873,18 +219872,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -219954,15 +219954,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -219974,18 +219973,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -220055,15 +220055,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -220075,18 +220074,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -220155,39 +220155,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(809), - [sym_label] = ACTIONS(819), - [anon_sym_null] = ACTIONS(1590), + [sym_label] = ACTIONS(817), [anon_sym_if] = ACTIONS(1626), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1628), [anon_sym_return] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -220256,39 +220256,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(809), - [sym_label] = ACTIONS(819), - [anon_sym_null] = ACTIONS(1590), + [sym_label] = ACTIONS(817), [anon_sym_if] = ACTIONS(1626), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1628), [anon_sym_return] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -220358,15 +220358,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -220378,18 +220377,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -220459,15 +220459,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -220479,18 +220478,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -220559,39 +220559,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1870), + [sym_label] = ACTIONS(67), [anon_sym_if] = ACTIONS(3038), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3040), [anon_sym_return] = ACTIONS(3042), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -220660,39 +220660,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1870), + [sym_label] = ACTIONS(67), [anon_sym_if] = ACTIONS(3038), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3040), [anon_sym_return] = ACTIONS(3042), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -220761,39 +220761,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1870), + [sym_label] = ACTIONS(67), [anon_sym_if] = ACTIONS(3038), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3040), [anon_sym_return] = ACTIONS(3042), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -220863,15 +220863,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -220883,18 +220882,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -220963,39 +220963,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -221064,39 +221064,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -221165,39 +221165,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -221267,15 +221267,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -221287,18 +221286,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -221331,7 +221331,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4349), [anon_sym_AMP_AMP] = ACTIONS(4349), [anon_sym_PIPE_PIPE] = ACTIONS(4349), - [anon_sym_null] = ACTIONS(4347), [anon_sym_if] = ACTIONS(4347), [anon_sym_else] = ACTIONS(4347), [anon_sym_when] = ACTIONS(4347), @@ -221398,6 +221397,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4347), [anon_sym_false] = ACTIONS(4347), [anon_sym_SQUOTE] = ACTIONS(4349), + [sym_null_literal] = ACTIONS(4347), [sym__backtick_identifier] = ACTIONS(4349), [sym__automatic_semicolon] = ACTIONS(4349), [sym_safe_nav] = ACTIONS(4349), @@ -221469,15 +221469,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -221489,18 +221488,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -221569,39 +221569,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -221655,7 +221655,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5625), [anon_sym_AMP_AMP] = ACTIONS(5627), [anon_sym_PIPE_PIPE] = ACTIONS(5629), - [anon_sym_null] = ACTIONS(3080), [anon_sym_if] = ACTIONS(3080), [anon_sym_else] = ACTIONS(3080), [anon_sym_when] = ACTIONS(3080), @@ -221701,6 +221700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3080), [anon_sym_false] = ACTIONS(3080), [anon_sym_SQUOTE] = ACTIONS(3082), + [sym_null_literal] = ACTIONS(3080), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3082), [sym_safe_nav] = ACTIONS(4479), @@ -221771,39 +221771,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1870), + [sym_label] = ACTIONS(67), [anon_sym_if] = ACTIONS(3038), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3040), [anon_sym_return] = ACTIONS(3042), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -221836,7 +221836,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4198), [anon_sym_AMP_AMP] = ACTIONS(4198), [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), [anon_sym_if] = ACTIONS(4196), [anon_sym_else] = ACTIONS(4196), [anon_sym_when] = ACTIONS(4196), @@ -221903,6 +221902,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4196), [anon_sym_false] = ACTIONS(4196), [anon_sym_SQUOTE] = ACTIONS(4198), + [sym_null_literal] = ACTIONS(4196), [sym__backtick_identifier] = ACTIONS(4198), [sym__automatic_semicolon] = ACTIONS(4198), [sym_safe_nav] = ACTIONS(4198), @@ -221974,15 +221974,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -221994,18 +221993,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -222074,39 +222074,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -222176,15 +222176,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1245), [sym_label] = ACTIONS(737), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), @@ -222196,18 +222195,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -222276,39 +222276,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -222377,39 +222377,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -222479,15 +222479,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1245), [sym_label] = ACTIONS(737), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), @@ -222499,18 +222498,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -222579,39 +222579,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -222681,15 +222681,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1245), [sym_label] = ACTIONS(737), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), @@ -222701,18 +222700,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -222782,15 +222782,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -222802,18 +222801,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -222882,39 +222882,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1870), + [sym_label] = ACTIONS(67), [anon_sym_if] = ACTIONS(3038), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3040), [anon_sym_return] = ACTIONS(3042), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -222947,7 +222947,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4079), [anon_sym_AMP_AMP] = ACTIONS(4079), [anon_sym_PIPE_PIPE] = ACTIONS(4079), - [anon_sym_null] = ACTIONS(4077), [anon_sym_if] = ACTIONS(4077), [anon_sym_else] = ACTIONS(4077), [anon_sym_when] = ACTIONS(4077), @@ -223014,6 +223013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4077), [anon_sym_false] = ACTIONS(4077), [anon_sym_SQUOTE] = ACTIONS(4079), + [sym_null_literal] = ACTIONS(4077), [sym__backtick_identifier] = ACTIONS(4079), [sym__automatic_semicolon] = ACTIONS(4079), [sym_safe_nav] = ACTIONS(4079), @@ -223085,15 +223085,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1245), [sym_label] = ACTIONS(737), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), @@ -223105,18 +223104,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -223185,39 +223185,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1870), + [sym_label] = ACTIONS(67), [anon_sym_if] = ACTIONS(3038), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3040), [anon_sym_return] = ACTIONS(3042), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -223286,39 +223286,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1185), - [sym_label] = ACTIONS(257), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), + [sym_label] = ACTIONS(255), + [anon_sym_if] = ACTIONS(241), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(257), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -223387,39 +223387,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1185), - [sym_label] = ACTIONS(257), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), + [sym_label] = ACTIONS(255), + [anon_sym_if] = ACTIONS(241), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(257), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -223488,39 +223488,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1185), - [sym_label] = ACTIONS(257), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), + [sym_label] = ACTIONS(255), + [anon_sym_if] = ACTIONS(241), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(257), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -223589,39 +223589,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1185), - [sym_label] = ACTIONS(257), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), + [sym_label] = ACTIONS(255), + [anon_sym_if] = ACTIONS(241), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(257), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -223690,39 +223690,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1185), - [sym_label] = ACTIONS(257), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), + [sym_label] = ACTIONS(255), + [anon_sym_if] = ACTIONS(241), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(257), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -223791,39 +223791,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1185), - [sym_label] = ACTIONS(257), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), + [sym_label] = ACTIONS(255), + [anon_sym_if] = ACTIONS(241), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(257), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -223892,39 +223892,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1185), - [sym_label] = ACTIONS(257), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), + [sym_label] = ACTIONS(255), + [anon_sym_if] = ACTIONS(241), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(257), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -223993,39 +223993,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1185), - [sym_label] = ACTIONS(257), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), + [sym_label] = ACTIONS(255), + [anon_sym_if] = ACTIONS(241), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(257), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -224094,39 +224094,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1185), - [sym_label] = ACTIONS(257), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), + [sym_label] = ACTIONS(255), + [anon_sym_if] = ACTIONS(241), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(257), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -224195,39 +224195,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1185), - [sym_label] = ACTIONS(257), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), + [sym_label] = ACTIONS(255), + [anon_sym_if] = ACTIONS(241), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(257), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -224296,39 +224296,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1185), - [sym_label] = ACTIONS(257), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), + [sym_label] = ACTIONS(255), + [anon_sym_if] = ACTIONS(241), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(257), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -224397,39 +224397,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1185), - [sym_label] = ACTIONS(257), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), + [sym_label] = ACTIONS(255), + [anon_sym_if] = ACTIONS(241), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(257), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -224499,15 +224499,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1245), [sym_label] = ACTIONS(737), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), @@ -224519,18 +224518,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -224599,39 +224599,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1185), - [sym_label] = ACTIONS(257), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), + [sym_label] = ACTIONS(255), + [anon_sym_if] = ACTIONS(241), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(257), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -224701,15 +224701,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1245), [sym_label] = ACTIONS(737), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), @@ -224721,18 +224720,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -224801,39 +224801,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1870), + [sym_label] = ACTIONS(67), [anon_sym_if] = ACTIONS(3038), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3040), [anon_sym_return] = ACTIONS(3042), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -224902,39 +224902,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1870), + [sym_label] = ACTIONS(67), [anon_sym_if] = ACTIONS(3038), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3040), [anon_sym_return] = ACTIONS(3042), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -225003,39 +225003,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1185), - [sym_label] = ACTIONS(257), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), + [sym_label] = ACTIONS(255), + [anon_sym_if] = ACTIONS(241), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(257), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -225089,7 +225089,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5625), [anon_sym_AMP_AMP] = ACTIONS(5627), [anon_sym_PIPE_PIPE] = ACTIONS(5629), - [anon_sym_null] = ACTIONS(3072), [anon_sym_if] = ACTIONS(3072), [anon_sym_else] = ACTIONS(3072), [anon_sym_when] = ACTIONS(3072), @@ -225135,6 +225134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3072), [anon_sym_false] = ACTIONS(3072), [anon_sym_SQUOTE] = ACTIONS(3074), + [sym_null_literal] = ACTIONS(3072), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3074), [sym_safe_nav] = ACTIONS(4479), @@ -225205,39 +225205,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1191), - [sym_label] = ACTIONS(597), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(583), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(599), + [sym_label] = ACTIONS(595), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -225306,39 +225306,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1185), - [sym_label] = ACTIONS(257), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), + [sym_label] = ACTIONS(255), + [anon_sym_if] = ACTIONS(241), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(257), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -225407,39 +225407,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1870), + [sym_label] = ACTIONS(67), [anon_sym_if] = ACTIONS(3038), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3040), [anon_sym_return] = ACTIONS(3042), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -225508,39 +225508,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1257), - [sym_label] = ACTIONS(515), - [anon_sym_null] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), + [sym_label] = ACTIONS(513), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -225609,39 +225609,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1191), - [sym_label] = ACTIONS(597), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(583), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(599), + [sym_label] = ACTIONS(595), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -225710,39 +225710,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(951), - [sym_label] = ACTIONS(961), - [anon_sym_null] = ACTIONS(1602), + [sym_label] = ACTIONS(959), [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1644), [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -225811,39 +225811,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(951), - [sym_label] = ACTIONS(961), - [anon_sym_null] = ACTIONS(1602), + [sym_label] = ACTIONS(959), [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1644), [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -225912,39 +225912,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(951), - [sym_label] = ACTIONS(961), - [anon_sym_null] = ACTIONS(1602), + [sym_label] = ACTIONS(959), [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1644), [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -226013,39 +226013,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(951), - [sym_label] = ACTIONS(961), - [anon_sym_null] = ACTIONS(1602), + [sym_label] = ACTIONS(959), [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1644), [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -226114,39 +226114,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(951), - [sym_label] = ACTIONS(961), - [anon_sym_null] = ACTIONS(1602), + [sym_label] = ACTIONS(959), [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1644), [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -226215,39 +226215,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(951), - [sym_label] = ACTIONS(961), - [anon_sym_null] = ACTIONS(1602), + [sym_label] = ACTIONS(959), [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1644), [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -226317,15 +226317,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -226337,18 +226336,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -226418,15 +226418,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -226438,18 +226437,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -226518,39 +226518,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(951), - [sym_label] = ACTIONS(961), - [anon_sym_null] = ACTIONS(1602), + [sym_label] = ACTIONS(959), [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1644), [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -226619,39 +226619,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(951), - [sym_label] = ACTIONS(961), - [anon_sym_null] = ACTIONS(1602), + [sym_label] = ACTIONS(959), [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1644), [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -226720,39 +226720,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(951), - [sym_label] = ACTIONS(961), - [anon_sym_null] = ACTIONS(1602), + [sym_label] = ACTIONS(959), [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1644), [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -226821,39 +226821,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(951), - [sym_label] = ACTIONS(961), - [anon_sym_null] = ACTIONS(1602), + [sym_label] = ACTIONS(959), [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1644), [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -226923,15 +226923,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -226943,18 +226942,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -227023,39 +227023,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1870), + [sym_label] = ACTIONS(67), [anon_sym_if] = ACTIONS(3038), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3040), [anon_sym_return] = ACTIONS(3042), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -227125,15 +227125,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -227145,18 +227144,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -227189,7 +227189,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4613), [anon_sym_AMP_AMP] = ACTIONS(4613), [anon_sym_PIPE_PIPE] = ACTIONS(4613), - [anon_sym_null] = ACTIONS(4611), [anon_sym_if] = ACTIONS(4611), [anon_sym_else] = ACTIONS(4611), [anon_sym_when] = ACTIONS(4611), @@ -227256,6 +227255,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4611), [anon_sym_false] = ACTIONS(4611), [anon_sym_SQUOTE] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4611), [sym__backtick_identifier] = ACTIONS(4613), [sym__automatic_semicolon] = ACTIONS(4613), [sym_safe_nav] = ACTIONS(4613), @@ -227327,15 +227327,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -227347,18 +227346,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -227427,39 +227427,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -227492,7 +227492,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4089), [anon_sym_AMP_AMP] = ACTIONS(4089), [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_null] = ACTIONS(4087), [anon_sym_if] = ACTIONS(4087), [anon_sym_else] = ACTIONS(4087), [anon_sym_when] = ACTIONS(4087), @@ -227559,6 +227558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4087), [anon_sym_false] = ACTIONS(4087), [anon_sym_SQUOTE] = ACTIONS(4089), + [sym_null_literal] = ACTIONS(4087), [sym__backtick_identifier] = ACTIONS(4089), [sym__automatic_semicolon] = ACTIONS(4089), [sym_safe_nav] = ACTIONS(4089), @@ -227593,7 +227593,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4099), [anon_sym_AMP_AMP] = ACTIONS(4099), [anon_sym_PIPE_PIPE] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4097), [anon_sym_if] = ACTIONS(4097), [anon_sym_else] = ACTIONS(4097), [anon_sym_when] = ACTIONS(4097), @@ -227660,6 +227659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4097), [anon_sym_false] = ACTIONS(4097), [anon_sym_SQUOTE] = ACTIONS(4099), + [sym_null_literal] = ACTIONS(4097), [sym__backtick_identifier] = ACTIONS(4099), [sym__automatic_semicolon] = ACTIONS(4099), [sym_safe_nav] = ACTIONS(4099), @@ -227731,15 +227731,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -227751,18 +227750,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -227831,39 +227831,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(951), - [sym_label] = ACTIONS(961), - [anon_sym_null] = ACTIONS(1602), + [sym_label] = ACTIONS(959), [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1644), [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -227933,15 +227933,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -227953,18 +227952,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -228034,15 +228034,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -228054,18 +228053,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -228134,39 +228134,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(951), - [sym_label] = ACTIONS(961), - [anon_sym_null] = ACTIONS(1602), + [sym_label] = ACTIONS(959), [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1644), [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -228235,39 +228235,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(921), - [sym_label] = ACTIONS(931), - [anon_sym_null] = ACTIONS(1614), + [sym_label] = ACTIONS(929), [anon_sym_if] = ACTIONS(1634), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1636), [anon_sym_return] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -228336,39 +228336,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(921), - [sym_label] = ACTIONS(931), - [anon_sym_null] = ACTIONS(1614), + [sym_label] = ACTIONS(929), [anon_sym_if] = ACTIONS(1634), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1636), [anon_sym_return] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -228437,39 +228437,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(921), - [sym_label] = ACTIONS(931), - [anon_sym_null] = ACTIONS(1614), + [sym_label] = ACTIONS(929), [anon_sym_if] = ACTIONS(1634), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1636), [anon_sym_return] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -228538,39 +228538,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(921), - [sym_label] = ACTIONS(931), - [anon_sym_null] = ACTIONS(1614), + [sym_label] = ACTIONS(929), [anon_sym_if] = ACTIONS(1634), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1636), [anon_sym_return] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -228639,39 +228639,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(921), - [sym_label] = ACTIONS(931), - [anon_sym_null] = ACTIONS(1614), + [sym_label] = ACTIONS(929), [anon_sym_if] = ACTIONS(1634), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1636), [anon_sym_return] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -228740,39 +228740,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(921), - [sym_label] = ACTIONS(931), - [anon_sym_null] = ACTIONS(1614), + [sym_label] = ACTIONS(929), [anon_sym_if] = ACTIONS(1634), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1636), [anon_sym_return] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -228841,39 +228841,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(921), - [sym_label] = ACTIONS(931), - [anon_sym_null] = ACTIONS(1614), + [sym_label] = ACTIONS(929), [anon_sym_if] = ACTIONS(1634), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1636), [anon_sym_return] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -228943,15 +228943,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -228963,18 +228962,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -229043,39 +229043,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(921), - [sym_label] = ACTIONS(931), - [anon_sym_null] = ACTIONS(1614), + [sym_label] = ACTIONS(929), [anon_sym_if] = ACTIONS(1634), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1636), [anon_sym_return] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -229144,39 +229144,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(921), - [sym_label] = ACTIONS(931), - [anon_sym_null] = ACTIONS(1614), + [sym_label] = ACTIONS(929), [anon_sym_if] = ACTIONS(1634), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1636), [anon_sym_return] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -229245,39 +229245,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(921), - [sym_label] = ACTIONS(931), - [anon_sym_null] = ACTIONS(1614), + [sym_label] = ACTIONS(929), [anon_sym_if] = ACTIONS(1634), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1636), [anon_sym_return] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -229346,39 +229346,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(921), - [sym_label] = ACTIONS(931), - [anon_sym_null] = ACTIONS(1614), + [sym_label] = ACTIONS(929), [anon_sym_if] = ACTIONS(1634), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1636), [anon_sym_return] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -229447,39 +229447,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(921), - [sym_label] = ACTIONS(931), - [anon_sym_null] = ACTIONS(1614), + [sym_label] = ACTIONS(929), [anon_sym_if] = ACTIONS(1634), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1636), [anon_sym_return] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -229549,15 +229549,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1239), [sym_label] = ACTIONS(653), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), @@ -229569,18 +229568,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -229650,15 +229650,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1239), [sym_label] = ACTIONS(653), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), @@ -229670,18 +229669,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -229751,15 +229751,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1239), [sym_label] = ACTIONS(653), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), @@ -229771,18 +229770,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -229852,15 +229852,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1239), [sym_label] = ACTIONS(653), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), @@ -229872,18 +229871,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -229953,15 +229953,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1239), [sym_label] = ACTIONS(653), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), @@ -229973,18 +229972,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -230054,15 +230054,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1239), [sym_label] = ACTIONS(653), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), @@ -230074,18 +230073,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -230155,15 +230155,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1239), [sym_label] = ACTIONS(653), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), @@ -230175,18 +230174,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -230256,15 +230256,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1239), [sym_label] = ACTIONS(653), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), @@ -230276,18 +230275,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -230357,15 +230357,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1239), [sym_label] = ACTIONS(653), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), @@ -230377,18 +230376,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -230458,15 +230458,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1239), [sym_label] = ACTIONS(653), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), @@ -230478,18 +230477,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -230559,15 +230559,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1239), [sym_label] = ACTIONS(653), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), @@ -230579,18 +230578,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -230660,15 +230660,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1239), [sym_label] = ACTIONS(653), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), @@ -230680,18 +230679,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -230760,39 +230760,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1197), - [sym_label] = ACTIONS(391), - [anon_sym_null] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -230862,15 +230862,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5646), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -230882,18 +230881,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -230962,39 +230962,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1191), - [sym_label] = ACTIONS(597), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(583), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(599), + [sym_label] = ACTIONS(595), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -231063,39 +231063,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1191), - [sym_label] = ACTIONS(597), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(583), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(599), + [sym_label] = ACTIONS(595), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -231164,39 +231164,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1191), - [sym_label] = ACTIONS(597), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(583), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(599), + [sym_label] = ACTIONS(595), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -231265,39 +231265,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1191), - [sym_label] = ACTIONS(597), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(583), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(599), + [sym_label] = ACTIONS(595), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -231366,39 +231366,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(921), - [sym_label] = ACTIONS(931), - [anon_sym_null] = ACTIONS(1614), + [sym_label] = ACTIONS(929), [anon_sym_if] = ACTIONS(1634), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1636), [anon_sym_return] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -231467,39 +231467,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1191), - [sym_label] = ACTIONS(597), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(583), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(599), + [sym_label] = ACTIONS(595), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -231568,39 +231568,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1191), - [sym_label] = ACTIONS(597), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(583), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(599), + [sym_label] = ACTIONS(595), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -231670,15 +231670,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -231690,18 +231689,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -231771,15 +231771,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -231791,18 +231790,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -231871,39 +231871,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -231972,39 +231972,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1191), - [sym_label] = ACTIONS(597), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(583), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(599), + [sym_label] = ACTIONS(595), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -232073,39 +232073,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1191), - [sym_label] = ACTIONS(597), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(583), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(599), + [sym_label] = ACTIONS(595), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -232174,39 +232174,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1227), - [sym_label] = ACTIONS(457), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(451), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(459), + [sym_label] = ACTIONS(455), + [anon_sym_if] = ACTIONS(449), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_BANG] = ACTIONS(457), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -232275,39 +232275,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1191), - [sym_label] = ACTIONS(597), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(583), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(599), + [sym_label] = ACTIONS(595), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -232376,39 +232376,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1191), - [sym_label] = ACTIONS(597), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(583), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(599), + [sym_label] = ACTIONS(595), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -232477,39 +232477,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1191), - [sym_label] = ACTIONS(597), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(583), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(599), + [sym_label] = ACTIONS(595), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -232578,39 +232578,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1227), - [sym_label] = ACTIONS(457), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(451), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(459), + [sym_label] = ACTIONS(455), + [anon_sym_if] = ACTIONS(449), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_BANG] = ACTIONS(457), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -232643,7 +232643,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4144), [anon_sym_AMP_AMP] = ACTIONS(4144), [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4142), [anon_sym_if] = ACTIONS(4142), [anon_sym_else] = ACTIONS(4142), [anon_sym_when] = ACTIONS(4142), @@ -232710,6 +232709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4142), [anon_sym_false] = ACTIONS(4142), [anon_sym_SQUOTE] = ACTIONS(4144), + [sym_null_literal] = ACTIONS(4142), [sym__backtick_identifier] = ACTIONS(4144), [sym__automatic_semicolon] = ACTIONS(4144), [sym_safe_nav] = ACTIONS(4144), @@ -232780,39 +232780,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1227), - [sym_label] = ACTIONS(457), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(451), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(459), + [sym_label] = ACTIONS(455), + [anon_sym_if] = ACTIONS(449), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_BANG] = ACTIONS(457), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -232881,39 +232881,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -232982,39 +232982,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1227), - [sym_label] = ACTIONS(457), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(451), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(459), + [sym_label] = ACTIONS(455), + [anon_sym_if] = ACTIONS(449), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_BANG] = ACTIONS(457), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -233083,39 +233083,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1191), - [sym_label] = ACTIONS(597), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(583), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(599), + [sym_label] = ACTIONS(595), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -233184,39 +233184,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1227), - [sym_label] = ACTIONS(457), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(451), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(459), + [sym_label] = ACTIONS(455), + [anon_sym_if] = ACTIONS(449), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_BANG] = ACTIONS(457), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -233285,39 +233285,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(951), - [sym_label] = ACTIONS(961), - [anon_sym_null] = ACTIONS(1602), + [sym_label] = ACTIONS(959), [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1644), [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -233386,39 +233386,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1227), - [sym_label] = ACTIONS(457), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(451), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(459), + [sym_label] = ACTIONS(455), + [anon_sym_if] = ACTIONS(449), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_BANG] = ACTIONS(457), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -233487,39 +233487,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1227), - [sym_label] = ACTIONS(457), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(451), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(459), + [sym_label] = ACTIONS(455), + [anon_sym_if] = ACTIONS(449), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_BANG] = ACTIONS(457), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -233588,39 +233588,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1227), - [sym_label] = ACTIONS(457), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(451), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(459), + [sym_label] = ACTIONS(455), + [anon_sym_if] = ACTIONS(449), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_BANG] = ACTIONS(457), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -233689,39 +233689,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1870), + [sym_label] = ACTIONS(67), [anon_sym_if] = ACTIONS(3038), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3040), [anon_sym_return] = ACTIONS(3042), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -233790,39 +233790,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1227), - [sym_label] = ACTIONS(457), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(451), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(459), + [sym_label] = ACTIONS(455), + [anon_sym_if] = ACTIONS(449), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_BANG] = ACTIONS(457), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -233891,39 +233891,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(921), - [sym_label] = ACTIONS(931), - [anon_sym_null] = ACTIONS(1614), + [sym_label] = ACTIONS(929), [anon_sym_if] = ACTIONS(1634), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1636), [anon_sym_return] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -233992,39 +233992,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1227), - [sym_label] = ACTIONS(457), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(451), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(459), + [sym_label] = ACTIONS(455), + [anon_sym_if] = ACTIONS(449), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_BANG] = ACTIONS(457), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -234094,15 +234094,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1239), [sym_label] = ACTIONS(653), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), @@ -234114,18 +234113,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -234194,39 +234194,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1227), - [sym_label] = ACTIONS(457), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(451), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(459), + [sym_label] = ACTIONS(455), + [anon_sym_if] = ACTIONS(449), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_BANG] = ACTIONS(457), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -234295,39 +234295,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1227), - [sym_label] = ACTIONS(457), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(451), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(459), + [sym_label] = ACTIONS(455), + [anon_sym_if] = ACTIONS(449), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_BANG] = ACTIONS(457), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -234360,7 +234360,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4232), [anon_sym_AMP_AMP] = ACTIONS(4232), [anon_sym_PIPE_PIPE] = ACTIONS(4232), - [anon_sym_null] = ACTIONS(4230), [anon_sym_if] = ACTIONS(4230), [anon_sym_else] = ACTIONS(4230), [anon_sym_when] = ACTIONS(4230), @@ -234427,6 +234426,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4230), [anon_sym_false] = ACTIONS(4230), [anon_sym_SQUOTE] = ACTIONS(4232), + [sym_null_literal] = ACTIONS(4230), [sym__backtick_identifier] = ACTIONS(4232), [sym__automatic_semicolon] = ACTIONS(4232), [sym_safe_nav] = ACTIONS(4232), @@ -234498,15 +234498,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -234518,18 +234517,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -234599,15 +234599,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1239), [sym_label] = ACTIONS(653), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), @@ -234619,18 +234618,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -234700,15 +234700,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(895), [sym_label] = ACTIONS(903), - [anon_sym_null] = ACTIONS(1870), [anon_sym_if] = ACTIONS(3014), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3016), [anon_sym_return] = ACTIONS(3018), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(903), [anon_sym_DASH] = ACTIONS(903), [anon_sym_PLUS_PLUS] = ACTIONS(905), @@ -234720,18 +234719,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -234801,15 +234801,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -234821,18 +234820,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -234902,15 +234902,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -234922,18 +234921,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -235003,15 +235003,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -235023,18 +235022,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -235067,7 +235067,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4262), [anon_sym_AMP_AMP] = ACTIONS(4262), [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_null] = ACTIONS(4260), [anon_sym_if] = ACTIONS(4260), [anon_sym_else] = ACTIONS(4260), [anon_sym_when] = ACTIONS(4260), @@ -235134,6 +235133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4260), [anon_sym_false] = ACTIONS(4260), [anon_sym_SQUOTE] = ACTIONS(4262), + [sym_null_literal] = ACTIONS(4260), [sym__backtick_identifier] = ACTIONS(4262), [sym__automatic_semicolon] = ACTIONS(4262), [sym_safe_nav] = ACTIONS(4262), @@ -235269,7 +235269,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4445), [anon_sym_AMP_AMP] = ACTIONS(4445), [anon_sym_PIPE_PIPE] = ACTIONS(4445), - [anon_sym_null] = ACTIONS(4443), [anon_sym_if] = ACTIONS(4443), [anon_sym_else] = ACTIONS(4443), [anon_sym_when] = ACTIONS(4443), @@ -235336,6 +235335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4443), [anon_sym_false] = ACTIONS(4443), [anon_sym_SQUOTE] = ACTIONS(4445), + [sym_null_literal] = ACTIONS(4443), [sym__backtick_identifier] = ACTIONS(4445), [sym__automatic_semicolon] = ACTIONS(4445), [sym_safe_nav] = ACTIONS(4445), @@ -235391,7 +235391,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5625), [anon_sym_AMP_AMP] = ACTIONS(5627), [anon_sym_PIPE_PIPE] = ACTIONS(5629), - [anon_sym_null] = ACTIONS(3126), [anon_sym_if] = ACTIONS(3126), [anon_sym_else] = ACTIONS(3126), [anon_sym_when] = ACTIONS(3126), @@ -235437,6 +235436,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3126), [anon_sym_false] = ACTIONS(3126), [anon_sym_SQUOTE] = ACTIONS(3128), + [sym_null_literal] = ACTIONS(3126), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3128), [sym_safe_nav] = ACTIONS(4479), @@ -235508,15 +235508,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -235528,18 +235527,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -235609,15 +235609,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -235629,18 +235628,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -235715,30 +235715,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -235811,15 +235811,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -235831,18 +235830,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -235912,15 +235912,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -235932,18 +235931,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -236013,15 +236013,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -236033,18 +236032,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -236114,15 +236114,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -236134,18 +236133,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -236214,39 +236214,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1197), - [sym_label] = ACTIONS(391), - [anon_sym_null] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -236316,15 +236316,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -236336,18 +236335,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -236416,39 +236416,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1197), - [sym_label] = ACTIONS(391), - [anon_sym_null] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -236517,39 +236517,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1197), - [sym_label] = ACTIONS(391), - [anon_sym_null] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -236618,39 +236618,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1197), - [sym_label] = ACTIONS(391), - [anon_sym_null] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -236720,15 +236720,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -236740,18 +236739,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -236821,15 +236821,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -236841,18 +236840,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -236921,39 +236921,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1197), - [sym_label] = ACTIONS(391), - [anon_sym_null] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -237022,39 +237022,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1197), - [sym_label] = ACTIONS(391), - [anon_sym_null] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -237123,39 +237123,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1197), - [sym_label] = ACTIONS(391), - [anon_sym_null] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -237225,15 +237225,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -237245,18 +237244,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -237331,30 +237331,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -237411,7 +237411,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5625), [anon_sym_AMP_AMP] = ACTIONS(5627), [anon_sym_PIPE_PIPE] = ACTIONS(5629), - [anon_sym_null] = ACTIONS(3107), [anon_sym_if] = ACTIONS(3107), [anon_sym_else] = ACTIONS(3107), [anon_sym_when] = ACTIONS(3107), @@ -237457,6 +237456,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3107), [anon_sym_false] = ACTIONS(3107), [anon_sym_SQUOTE] = ACTIONS(3109), + [sym_null_literal] = ACTIONS(3107), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3109), [sym_safe_nav] = ACTIONS(4479), @@ -237528,15 +237528,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1245), [sym_label] = ACTIONS(737), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), @@ -237548,18 +237547,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -237613,7 +237613,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5625), [anon_sym_AMP_AMP] = ACTIONS(5627), [anon_sym_PIPE_PIPE] = ACTIONS(5629), - [anon_sym_null] = ACTIONS(3096), [anon_sym_if] = ACTIONS(3096), [anon_sym_else] = ACTIONS(3096), [anon_sym_when] = ACTIONS(3096), @@ -237659,6 +237658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3096), [anon_sym_false] = ACTIONS(3096), [anon_sym_SQUOTE] = ACTIONS(3098), + [sym_null_literal] = ACTIONS(3096), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3098), [sym_safe_nav] = ACTIONS(4479), @@ -237730,15 +237730,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1251), [sym_label] = ACTIONS(791), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(785), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(791), [anon_sym_DASH] = ACTIONS(791), [anon_sym_PLUS_PLUS] = ACTIONS(793), @@ -237750,18 +237749,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -237831,15 +237831,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1245), [sym_label] = ACTIONS(737), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), @@ -237851,18 +237850,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -237932,15 +237932,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1245), [sym_label] = ACTIONS(737), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), @@ -237952,18 +237951,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -238033,15 +238033,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1245), [sym_label] = ACTIONS(737), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), @@ -238053,18 +238052,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -238134,15 +238134,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1245), [sym_label] = ACTIONS(737), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), @@ -238154,18 +238153,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -238235,15 +238235,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1245), [sym_label] = ACTIONS(737), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), @@ -238255,18 +238254,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -238336,15 +238336,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1245), [sym_label] = ACTIONS(737), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), @@ -238356,18 +238355,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -238421,7 +238421,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5625), [anon_sym_AMP_AMP] = ACTIONS(5627), [anon_sym_PIPE_PIPE] = ACTIONS(5629), - [anon_sym_null] = ACTIONS(3044), [anon_sym_if] = ACTIONS(3044), [anon_sym_else] = ACTIONS(3044), [anon_sym_when] = ACTIONS(3044), @@ -238467,6 +238466,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3044), [anon_sym_false] = ACTIONS(3044), [anon_sym_SQUOTE] = ACTIONS(3046), + [sym_null_literal] = ACTIONS(3044), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3046), [sym_safe_nav] = ACTIONS(4479), @@ -238538,15 +238538,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -238558,18 +238557,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -238644,30 +238644,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -238739,39 +238739,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1227), - [sym_label] = ACTIONS(457), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(451), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(459), + [sym_label] = ACTIONS(455), + [anon_sym_if] = ACTIONS(449), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_BANG] = ACTIONS(457), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -238841,15 +238841,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(895), [sym_label] = ACTIONS(903), - [anon_sym_null] = ACTIONS(1870), [anon_sym_if] = ACTIONS(3014), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3016), [anon_sym_return] = ACTIONS(3018), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(903), [anon_sym_DASH] = ACTIONS(903), [anon_sym_PLUS_PLUS] = ACTIONS(905), @@ -238861,18 +238860,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -238942,15 +238942,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(895), [sym_label] = ACTIONS(903), - [anon_sym_null] = ACTIONS(1870), [anon_sym_if] = ACTIONS(3014), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3016), [anon_sym_return] = ACTIONS(3018), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(903), [anon_sym_DASH] = ACTIONS(903), [anon_sym_PLUS_PLUS] = ACTIONS(905), @@ -238962,18 +238961,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -239043,15 +239043,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(895), [sym_label] = ACTIONS(903), - [anon_sym_null] = ACTIONS(1870), [anon_sym_if] = ACTIONS(3014), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3016), [anon_sym_return] = ACTIONS(3018), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(903), [anon_sym_DASH] = ACTIONS(903), [anon_sym_PLUS_PLUS] = ACTIONS(905), @@ -239063,18 +239062,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -239143,39 +239143,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1197), - [sym_label] = ACTIONS(391), - [anon_sym_null] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -239250,30 +239250,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -239346,15 +239346,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1209), [sym_label] = ACTIONS(707), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), @@ -239366,18 +239365,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -239447,15 +239447,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -239467,18 +239466,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -239548,15 +239548,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(895), [sym_label] = ACTIONS(903), - [anon_sym_null] = ACTIONS(1870), [anon_sym_if] = ACTIONS(3014), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3016), [anon_sym_return] = ACTIONS(3018), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(903), [anon_sym_DASH] = ACTIONS(903), [anon_sym_PLUS_PLUS] = ACTIONS(905), @@ -239568,18 +239567,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -239649,15 +239649,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(895), [sym_label] = ACTIONS(903), - [anon_sym_null] = ACTIONS(1870), [anon_sym_if] = ACTIONS(3014), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3016), [anon_sym_return] = ACTIONS(3018), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(903), [anon_sym_DASH] = ACTIONS(903), [anon_sym_PLUS_PLUS] = ACTIONS(905), @@ -239669,18 +239668,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -239750,15 +239750,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1245), [sym_label] = ACTIONS(737), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), @@ -239770,18 +239769,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -239851,15 +239851,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1245), [sym_label] = ACTIONS(737), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), @@ -239871,18 +239870,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -239952,15 +239952,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(895), [sym_label] = ACTIONS(903), - [anon_sym_null] = ACTIONS(1870), [anon_sym_if] = ACTIONS(3014), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3016), [anon_sym_return] = ACTIONS(3018), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(903), [anon_sym_DASH] = ACTIONS(903), [anon_sym_PLUS_PLUS] = ACTIONS(905), @@ -239972,18 +239971,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -240053,15 +240053,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1245), [sym_label] = ACTIONS(737), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), @@ -240073,18 +240072,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -240154,15 +240154,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1245), [sym_label] = ACTIONS(737), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), @@ -240174,18 +240173,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -240255,15 +240255,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1245), [sym_label] = ACTIONS(737), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), @@ -240275,18 +240274,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -240356,15 +240356,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1245), [sym_label] = ACTIONS(737), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), @@ -240376,18 +240375,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -240457,15 +240457,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1245), [sym_label] = ACTIONS(737), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), @@ -240477,18 +240476,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -240557,39 +240557,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1227), - [sym_label] = ACTIONS(457), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(451), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(459), + [sym_label] = ACTIONS(455), + [anon_sym_if] = ACTIONS(449), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_BANG] = ACTIONS(457), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -240622,7 +240622,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4589), [anon_sym_AMP_AMP] = ACTIONS(4589), [anon_sym_PIPE_PIPE] = ACTIONS(4589), - [anon_sym_null] = ACTIONS(4587), [anon_sym_if] = ACTIONS(4587), [anon_sym_else] = ACTIONS(4587), [anon_sym_when] = ACTIONS(4587), @@ -240689,6 +240688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4587), [anon_sym_false] = ACTIONS(4587), [anon_sym_SQUOTE] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4587), [sym__backtick_identifier] = ACTIONS(4589), [sym__automatic_semicolon] = ACTIONS(4589), [sym_safe_nav] = ACTIONS(4589), @@ -240723,7 +240723,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4515), [anon_sym_AMP_AMP] = ACTIONS(4515), [anon_sym_PIPE_PIPE] = ACTIONS(4515), - [anon_sym_null] = ACTIONS(4513), [anon_sym_if] = ACTIONS(4513), [anon_sym_else] = ACTIONS(4513), [anon_sym_when] = ACTIONS(4513), @@ -240790,6 +240789,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4513), [anon_sym_false] = ACTIONS(4513), [anon_sym_SQUOTE] = ACTIONS(4515), + [sym_null_literal] = ACTIONS(4513), [sym__backtick_identifier] = ACTIONS(4515), [sym__automatic_semicolon] = ACTIONS(4515), [sym_safe_nav] = ACTIONS(4515), @@ -240860,39 +240860,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1197), - [sym_label] = ACTIONS(391), - [anon_sym_null] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -240961,39 +240961,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -241063,15 +241063,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1289), [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(677), [anon_sym_DASH] = ACTIONS(677), [anon_sym_PLUS_PLUS] = ACTIONS(679), @@ -241083,18 +241082,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -241164,15 +241164,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -241184,18 +241183,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -241264,39 +241264,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -241365,39 +241365,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -241466,39 +241466,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -241567,39 +241567,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -241668,39 +241668,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -241769,39 +241769,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -241870,39 +241870,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -241977,30 +241977,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -242072,39 +242072,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -242174,15 +242174,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -242194,18 +242193,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -242274,39 +242274,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1197), - [sym_label] = ACTIONS(391), - [anon_sym_null] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -242376,15 +242376,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -242396,18 +242395,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -242476,39 +242476,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1197), - [sym_label] = ACTIONS(391), - [anon_sym_null] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -242577,39 +242577,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -242678,39 +242678,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1197), - [sym_label] = ACTIONS(391), - [anon_sym_null] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -242779,39 +242779,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -242880,39 +242880,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1197), - [sym_label] = ACTIONS(391), - [anon_sym_null] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -242982,15 +242982,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -243002,18 +243001,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -243082,39 +243082,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -243184,15 +243184,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(895), [sym_label] = ACTIONS(903), - [anon_sym_null] = ACTIONS(1870), [anon_sym_if] = ACTIONS(3014), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3016), [anon_sym_return] = ACTIONS(3018), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(903), [anon_sym_DASH] = ACTIONS(903), [anon_sym_PLUS_PLUS] = ACTIONS(905), @@ -243204,18 +243203,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -243285,15 +243285,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(895), [sym_label] = ACTIONS(903), - [anon_sym_null] = ACTIONS(1870), [anon_sym_if] = ACTIONS(3014), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3016), [anon_sym_return] = ACTIONS(3018), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(903), [anon_sym_DASH] = ACTIONS(903), [anon_sym_PLUS_PLUS] = ACTIONS(905), @@ -243305,18 +243304,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -243385,39 +243385,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -243588,15 +243588,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -243608,18 +243607,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -243688,39 +243688,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -243789,39 +243789,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1185), - [sym_label] = ACTIONS(257), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(249), - [anon_sym_return] = ACTIONS(251), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [anon_sym_BANG] = ACTIONS(259), + [sym_label] = ACTIONS(255), + [anon_sym_if] = ACTIONS(241), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_return] = ACTIONS(249), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_PLUS_PLUS] = ACTIONS(257), + [anon_sym_DASH_DASH] = ACTIONS(257), + [anon_sym_BANG] = ACTIONS(257), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -244077,7 +244077,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5625), [anon_sym_AMP_AMP] = ACTIONS(5627), [anon_sym_PIPE_PIPE] = ACTIONS(5629), - [anon_sym_null] = ACTIONS(3122), [anon_sym_if] = ACTIONS(3122), [anon_sym_else] = ACTIONS(3122), [anon_sym_when] = ACTIONS(3122), @@ -244123,6 +244122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3122), [anon_sym_false] = ACTIONS(3122), [anon_sym_SQUOTE] = ACTIONS(3124), + [sym_null_literal] = ACTIONS(3122), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3124), [sym_safe_nav] = ACTIONS(4479), @@ -244178,7 +244178,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5625), [anon_sym_AMP_AMP] = ACTIONS(5627), [anon_sym_PIPE_PIPE] = ACTIONS(5629), - [anon_sym_null] = ACTIONS(3111), [anon_sym_if] = ACTIONS(3111), [anon_sym_else] = ACTIONS(3111), [anon_sym_when] = ACTIONS(3111), @@ -244224,6 +244223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3111), [anon_sym_false] = ACTIONS(3111), [anon_sym_SQUOTE] = ACTIONS(3113), + [sym_null_literal] = ACTIONS(3111), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3113), [sym_safe_nav] = ACTIONS(4479), @@ -244295,15 +244295,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1245), [sym_label] = ACTIONS(737), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), @@ -244315,18 +244314,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -244395,39 +244395,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1870), + [sym_label] = ACTIONS(67), [anon_sym_if] = ACTIONS(3038), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3040), [anon_sym_return] = ACTIONS(3042), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -244497,15 +244497,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1289), [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(677), [anon_sym_DASH] = ACTIONS(677), [anon_sym_PLUS_PLUS] = ACTIONS(679), @@ -244517,18 +244516,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -244598,15 +244598,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1289), [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(677), [anon_sym_DASH] = ACTIONS(677), [anon_sym_PLUS_PLUS] = ACTIONS(679), @@ -244618,18 +244617,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -244699,15 +244699,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1289), [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(677), [anon_sym_DASH] = ACTIONS(677), [anon_sym_PLUS_PLUS] = ACTIONS(679), @@ -244719,18 +244718,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -244805,30 +244805,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -244900,39 +244900,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -245002,15 +245002,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1289), [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(677), [anon_sym_DASH] = ACTIONS(677), [anon_sym_PLUS_PLUS] = ACTIONS(679), @@ -245022,18 +245021,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -245103,15 +245103,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(895), [sym_label] = ACTIONS(903), - [anon_sym_null] = ACTIONS(1870), [anon_sym_if] = ACTIONS(3014), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3016), [anon_sym_return] = ACTIONS(3018), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(903), [anon_sym_DASH] = ACTIONS(903), [anon_sym_PLUS_PLUS] = ACTIONS(905), @@ -245123,18 +245122,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -245204,15 +245204,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(895), [sym_label] = ACTIONS(903), - [anon_sym_null] = ACTIONS(1870), [anon_sym_if] = ACTIONS(3014), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3016), [anon_sym_return] = ACTIONS(3018), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(903), [anon_sym_DASH] = ACTIONS(903), [anon_sym_PLUS_PLUS] = ACTIONS(905), @@ -245224,18 +245223,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -245305,15 +245305,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(895), [sym_label] = ACTIONS(903), - [anon_sym_null] = ACTIONS(1870), [anon_sym_if] = ACTIONS(3014), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3016), [anon_sym_return] = ACTIONS(3018), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(903), [anon_sym_DASH] = ACTIONS(903), [anon_sym_PLUS_PLUS] = ACTIONS(905), @@ -245325,18 +245324,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -245405,39 +245405,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -245507,15 +245507,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1289), [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(677), [anon_sym_DASH] = ACTIONS(677), [anon_sym_PLUS_PLUS] = ACTIONS(679), @@ -245527,18 +245526,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -245608,15 +245608,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1289), [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(677), [anon_sym_DASH] = ACTIONS(677), [anon_sym_PLUS_PLUS] = ACTIONS(679), @@ -245628,18 +245627,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -245709,15 +245709,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1289), [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(677), [anon_sym_DASH] = ACTIONS(677), [anon_sym_PLUS_PLUS] = ACTIONS(679), @@ -245729,18 +245728,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -245810,15 +245810,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1289), [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(677), [anon_sym_DASH] = ACTIONS(677), [anon_sym_PLUS_PLUS] = ACTIONS(679), @@ -245830,18 +245829,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -245916,30 +245916,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -246012,15 +246012,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1289), [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(677), [anon_sym_DASH] = ACTIONS(677), [anon_sym_PLUS_PLUS] = ACTIONS(679), @@ -246032,18 +246031,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -246112,39 +246112,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -246213,39 +246213,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -246315,15 +246315,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(895), [sym_label] = ACTIONS(903), - [anon_sym_null] = ACTIONS(1870), [anon_sym_if] = ACTIONS(3014), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3016), [anon_sym_return] = ACTIONS(3018), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(903), [anon_sym_DASH] = ACTIONS(903), [anon_sym_PLUS_PLUS] = ACTIONS(905), @@ -246335,18 +246334,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -246416,15 +246416,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -246436,18 +246435,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -246517,15 +246517,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -246537,18 +246536,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -246617,39 +246617,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -246719,15 +246719,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1289), [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(677), [anon_sym_DASH] = ACTIONS(677), [anon_sym_PLUS_PLUS] = ACTIONS(679), @@ -246739,18 +246738,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -246820,15 +246820,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(895), [sym_label] = ACTIONS(903), - [anon_sym_null] = ACTIONS(1870), [anon_sym_if] = ACTIONS(3014), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3016), [anon_sym_return] = ACTIONS(3018), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(903), [anon_sym_DASH] = ACTIONS(903), [anon_sym_PLUS_PLUS] = ACTIONS(905), @@ -246840,18 +246839,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -246921,15 +246921,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -246941,18 +246940,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -247022,15 +247022,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -247042,18 +247041,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -247123,15 +247123,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -247143,18 +247142,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -247224,15 +247224,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -247244,18 +247243,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -247325,15 +247325,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -247345,18 +247344,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -247425,39 +247425,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1227), - [sym_label] = ACTIONS(457), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(451), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(459), + [sym_label] = ACTIONS(455), + [anon_sym_if] = ACTIONS(449), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_BANG] = ACTIONS(457), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -247527,15 +247527,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1289), [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(677), [anon_sym_DASH] = ACTIONS(677), [anon_sym_PLUS_PLUS] = ACTIONS(679), @@ -247547,18 +247546,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -247627,39 +247627,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -247729,15 +247729,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1289), [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(677), [anon_sym_DASH] = ACTIONS(677), [anon_sym_PLUS_PLUS] = ACTIONS(679), @@ -247749,18 +247748,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -247829,39 +247829,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -247931,15 +247931,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -247951,18 +247950,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -248032,15 +248032,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -248052,18 +248051,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -248133,15 +248133,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -248153,18 +248152,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -248234,15 +248234,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -248254,18 +248253,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -248335,15 +248335,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -248355,18 +248354,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -248436,15 +248436,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -248456,18 +248455,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -248537,15 +248537,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -248557,18 +248556,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -248638,15 +248638,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -248658,18 +248657,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -248738,39 +248738,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1257), - [sym_label] = ACTIONS(515), - [anon_sym_null] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), + [sym_label] = ACTIONS(513), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -248839,39 +248839,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1257), - [sym_label] = ACTIONS(515), - [anon_sym_null] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), + [sym_label] = ACTIONS(513), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -248940,39 +248940,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -249041,39 +249041,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1257), - [sym_label] = ACTIONS(515), - [anon_sym_null] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), + [sym_label] = ACTIONS(513), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -249142,39 +249142,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -249249,30 +249249,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -249345,15 +249345,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -249365,18 +249364,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -249445,39 +249445,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1257), - [sym_label] = ACTIONS(515), - [anon_sym_null] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), + [sym_label] = ACTIONS(513), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -249546,39 +249546,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1257), - [sym_label] = ACTIONS(515), - [anon_sym_null] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), + [sym_label] = ACTIONS(513), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -249647,39 +249647,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1257), - [sym_label] = ACTIONS(515), - [anon_sym_null] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), + [sym_label] = ACTIONS(513), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -249749,15 +249749,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -249769,18 +249768,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -249850,15 +249850,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -249870,18 +249869,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -249951,15 +249951,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -249971,18 +249970,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -250051,39 +250051,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1257), - [sym_label] = ACTIONS(515), - [anon_sym_null] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), + [sym_label] = ACTIONS(513), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -250153,15 +250153,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1289), [sym_label] = ACTIONS(677), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_if] = ACTIONS(53), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(677), [anon_sym_DASH] = ACTIONS(677), [anon_sym_PLUS_PLUS] = ACTIONS(679), @@ -250173,18 +250172,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -250253,39 +250253,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1257), - [sym_label] = ACTIONS(515), - [anon_sym_null] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), + [sym_label] = ACTIONS(513), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -250355,15 +250355,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -250375,18 +250374,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -250455,39 +250455,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1870), + [sym_label] = ACTIONS(67), [anon_sym_if] = ACTIONS(3038), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3040), [anon_sym_return] = ACTIONS(3042), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -250556,39 +250556,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -250657,39 +250657,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(809), - [sym_label] = ACTIONS(819), - [anon_sym_null] = ACTIONS(1590), + [sym_label] = ACTIONS(817), [anon_sym_if] = ACTIONS(1626), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1628), [anon_sym_return] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -250758,39 +250758,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1191), - [sym_label] = ACTIONS(597), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(583), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_return] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(599), + [sym_label] = ACTIONS(595), + [anon_sym_if] = ACTIONS(581), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_return] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -250859,39 +250859,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -250960,39 +250960,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1257), - [sym_label] = ACTIONS(515), - [anon_sym_null] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), + [sym_label] = ACTIONS(513), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -251061,39 +251061,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -251163,15 +251163,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -251183,18 +251182,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -251263,39 +251263,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1257), - [sym_label] = ACTIONS(515), - [anon_sym_null] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), + [sym_label] = ACTIONS(513), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -251364,39 +251364,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -251465,39 +251465,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1257), - [sym_label] = ACTIONS(515), - [anon_sym_null] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), + [sym_label] = ACTIONS(513), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -251566,39 +251566,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1257), - [sym_label] = ACTIONS(515), - [anon_sym_null] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), + [sym_label] = ACTIONS(513), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -251667,39 +251667,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1197), - [sym_label] = ACTIONS(391), - [anon_sym_null] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -251774,30 +251774,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3286), [anon_sym_DASH_DASH] = ACTIONS(3286), [anon_sym_BANG_BANG] = ACTIONS(3286), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -251870,15 +251870,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -251890,18 +251889,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -251970,39 +251970,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1197), - [sym_label] = ACTIONS(391), - [anon_sym_null] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -252072,15 +252072,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -252092,18 +252091,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -252172,39 +252172,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -252273,39 +252273,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1197), - [sym_label] = ACTIONS(391), - [anon_sym_null] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -252374,39 +252374,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1197), - [sym_label] = ACTIONS(391), - [anon_sym_null] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -252476,15 +252476,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -252496,18 +252495,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -252577,15 +252577,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -252597,18 +252596,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -252677,39 +252677,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -252778,39 +252778,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1197), - [sym_label] = ACTIONS(391), - [anon_sym_null] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -252879,39 +252879,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -252980,39 +252980,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1197), - [sym_label] = ACTIONS(391), - [anon_sym_null] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -253081,39 +253081,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -253182,39 +253182,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1197), - [sym_label] = ACTIONS(391), - [anon_sym_null] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -253283,39 +253283,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1197), - [sym_label] = ACTIONS(391), - [anon_sym_null] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -253384,39 +253384,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -253485,39 +253485,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1197), - [sym_label] = ACTIONS(391), - [anon_sym_null] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -253586,39 +253586,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -253688,15 +253688,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -253708,18 +253707,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -253788,39 +253788,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(921), - [sym_label] = ACTIONS(931), - [anon_sym_null] = ACTIONS(1614), + [sym_label] = ACTIONS(929), [anon_sym_if] = ACTIONS(1634), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1636), [anon_sym_return] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -253889,39 +253889,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -253990,39 +253990,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1197), - [sym_label] = ACTIONS(391), - [anon_sym_null] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -254091,39 +254091,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1197), - [sym_label] = ACTIONS(391), - [anon_sym_null] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -254192,39 +254192,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1233), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -254293,39 +254293,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -254395,15 +254395,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -254415,18 +254414,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -254495,39 +254495,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -254596,39 +254596,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1233), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -254697,39 +254697,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -254798,39 +254798,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(809), - [sym_label] = ACTIONS(819), - [anon_sym_null] = ACTIONS(1590), + [sym_label] = ACTIONS(817), [anon_sym_if] = ACTIONS(1626), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1628), [anon_sym_return] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -254899,39 +254899,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -255000,39 +255000,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -255101,39 +255101,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -255202,39 +255202,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -255303,39 +255303,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -255404,39 +255404,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1233), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -255505,39 +255505,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -255606,39 +255606,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -255708,15 +255708,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -255728,18 +255727,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -255809,15 +255809,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5684), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -255829,18 +255828,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -255909,39 +255909,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(921), - [sym_label] = ACTIONS(931), - [anon_sym_null] = ACTIONS(1614), + [sym_label] = ACTIONS(929), [anon_sym_if] = ACTIONS(1634), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1636), [anon_sym_return] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -256010,39 +256010,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(921), - [sym_label] = ACTIONS(931), - [anon_sym_null] = ACTIONS(1614), + [sym_label] = ACTIONS(929), [anon_sym_if] = ACTIONS(1634), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1636), [anon_sym_return] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -256111,39 +256111,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(921), - [sym_label] = ACTIONS(931), - [anon_sym_null] = ACTIONS(1614), + [sym_label] = ACTIONS(929), [anon_sym_if] = ACTIONS(1634), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1636), [anon_sym_return] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -256212,39 +256212,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -256313,39 +256313,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(921), - [sym_label] = ACTIONS(931), - [anon_sym_null] = ACTIONS(1614), + [sym_label] = ACTIONS(929), [anon_sym_if] = ACTIONS(1634), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1636), [anon_sym_return] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -256414,39 +256414,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(921), - [sym_label] = ACTIONS(931), - [anon_sym_null] = ACTIONS(1614), + [sym_label] = ACTIONS(929), [anon_sym_if] = ACTIONS(1634), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1636), [anon_sym_return] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -256515,39 +256515,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(921), - [sym_label] = ACTIONS(931), - [anon_sym_null] = ACTIONS(1614), + [sym_label] = ACTIONS(929), [anon_sym_if] = ACTIONS(1634), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1636), [anon_sym_return] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -256616,39 +256616,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(921), - [sym_label] = ACTIONS(931), - [anon_sym_null] = ACTIONS(1614), + [sym_label] = ACTIONS(929), [anon_sym_if] = ACTIONS(1634), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1636), [anon_sym_return] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -256717,39 +256717,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -256818,39 +256818,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(921), - [sym_label] = ACTIONS(931), - [anon_sym_null] = ACTIONS(1614), + [sym_label] = ACTIONS(929), [anon_sym_if] = ACTIONS(1634), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1636), [anon_sym_return] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -256919,39 +256919,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(921), - [sym_label] = ACTIONS(931), - [anon_sym_null] = ACTIONS(1614), + [sym_label] = ACTIONS(929), [anon_sym_if] = ACTIONS(1634), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1636), [anon_sym_return] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -257020,39 +257020,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(921), - [sym_label] = ACTIONS(931), - [anon_sym_null] = ACTIONS(1614), + [sym_label] = ACTIONS(929), [anon_sym_if] = ACTIONS(1634), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1636), [anon_sym_return] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -257121,39 +257121,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(921), - [sym_label] = ACTIONS(931), - [anon_sym_null] = ACTIONS(1614), + [sym_label] = ACTIONS(929), [anon_sym_if] = ACTIONS(1634), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1636), [anon_sym_return] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -257186,7 +257186,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4515), [anon_sym_AMP_AMP] = ACTIONS(4515), [anon_sym_PIPE_PIPE] = ACTIONS(4515), - [anon_sym_null] = ACTIONS(4513), [anon_sym_if] = ACTIONS(4513), [anon_sym_else] = ACTIONS(4513), [anon_sym_when] = ACTIONS(4513), @@ -257253,6 +257252,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4513), [anon_sym_false] = ACTIONS(4513), [anon_sym_SQUOTE] = ACTIONS(4515), + [sym_null_literal] = ACTIONS(4513), [sym__backtick_identifier] = ACTIONS(4515), [sym__automatic_semicolon] = ACTIONS(4515), [sym_safe_nav] = ACTIONS(4515), @@ -257323,39 +257323,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -257424,39 +257424,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(921), - [sym_label] = ACTIONS(931), - [anon_sym_null] = ACTIONS(1614), + [sym_label] = ACTIONS(929), [anon_sym_if] = ACTIONS(1634), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1636), [anon_sym_return] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -257525,39 +257525,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -257627,15 +257627,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -257647,18 +257646,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -257727,39 +257727,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -257828,39 +257828,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -257929,39 +257929,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(921), - [sym_label] = ACTIONS(931), - [anon_sym_null] = ACTIONS(1614), + [sym_label] = ACTIONS(929), [anon_sym_if] = ACTIONS(1634), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1636), [anon_sym_return] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(933), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -258030,39 +258030,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -258131,39 +258131,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1233), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -258233,15 +258233,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -258253,18 +258252,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -258333,39 +258333,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -258434,39 +258434,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -258621,7 +258621,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3052), [anon_sym_AMP_AMP] = ACTIONS(3052), [anon_sym_PIPE_PIPE] = ACTIONS(3052), - [anon_sym_null] = ACTIONS(3050), [anon_sym_if] = ACTIONS(3050), [anon_sym_else] = ACTIONS(3050), [anon_sym_when] = ACTIONS(3050), @@ -258667,6 +258666,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3050), [anon_sym_false] = ACTIONS(3050), [anon_sym_SQUOTE] = ACTIONS(3052), + [sym_null_literal] = ACTIONS(3050), [sym__backtick_identifier] = ACTIONS(3052), [sym__automatic_semicolon] = ACTIONS(3052), [sym_safe_nav] = ACTIONS(4479), @@ -258737,39 +258737,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -258823,7 +258823,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3102), [anon_sym_AMP_AMP] = ACTIONS(3102), [anon_sym_PIPE_PIPE] = ACTIONS(3102), - [anon_sym_null] = ACTIONS(3100), [anon_sym_if] = ACTIONS(3100), [anon_sym_else] = ACTIONS(3100), [anon_sym_when] = ACTIONS(3100), @@ -258869,6 +258868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3100), [anon_sym_false] = ACTIONS(3100), [anon_sym_SQUOTE] = ACTIONS(3102), + [sym_null_literal] = ACTIONS(3100), [sym__backtick_identifier] = ACTIONS(3102), [sym__automatic_semicolon] = ACTIONS(3102), [sym_safe_nav] = ACTIONS(4479), @@ -258939,39 +258939,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -259040,39 +259040,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1233), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -259126,7 +259126,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3143), [anon_sym_AMP_AMP] = ACTIONS(3143), [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_null] = ACTIONS(3141), [anon_sym_if] = ACTIONS(3141), [anon_sym_else] = ACTIONS(3141), [anon_sym_when] = ACTIONS(3141), @@ -259172,6 +259171,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3141), [anon_sym_false] = ACTIONS(3141), [anon_sym_SQUOTE] = ACTIONS(3143), + [sym_null_literal] = ACTIONS(3141), [sym__backtick_identifier] = ACTIONS(3143), [sym__automatic_semicolon] = ACTIONS(3143), [sym_safe_nav] = ACTIONS(4479), @@ -259242,39 +259242,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -259328,7 +259328,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5625), [anon_sym_AMP_AMP] = ACTIONS(3067), [anon_sym_PIPE_PIPE] = ACTIONS(3067), - [anon_sym_null] = ACTIONS(3065), [anon_sym_if] = ACTIONS(3065), [anon_sym_else] = ACTIONS(3065), [anon_sym_when] = ACTIONS(3065), @@ -259374,6 +259373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3065), [anon_sym_false] = ACTIONS(3065), [anon_sym_SQUOTE] = ACTIONS(3067), + [sym_null_literal] = ACTIONS(3065), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3067), [sym_safe_nav] = ACTIONS(4479), @@ -259429,7 +259429,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5625), [anon_sym_AMP_AMP] = ACTIONS(3059), [anon_sym_PIPE_PIPE] = ACTIONS(3059), - [anon_sym_null] = ACTIONS(3057), [anon_sym_if] = ACTIONS(3057), [anon_sym_else] = ACTIONS(3057), [anon_sym_when] = ACTIONS(3057), @@ -259475,6 +259474,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3057), [anon_sym_false] = ACTIONS(3057), [anon_sym_SQUOTE] = ACTIONS(3059), + [sym_null_literal] = ACTIONS(3057), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3059), [sym_safe_nav] = ACTIONS(4479), @@ -259530,7 +259530,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5625), [anon_sym_AMP_AMP] = ACTIONS(3086), [anon_sym_PIPE_PIPE] = ACTIONS(3086), - [anon_sym_null] = ACTIONS(3084), [anon_sym_if] = ACTIONS(3084), [anon_sym_else] = ACTIONS(3084), [anon_sym_when] = ACTIONS(3084), @@ -259576,6 +259575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3084), [anon_sym_false] = ACTIONS(3084), [anon_sym_SQUOTE] = ACTIONS(3086), + [sym_null_literal] = ACTIONS(3084), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3086), [sym_safe_nav] = ACTIONS(4479), @@ -259631,7 +259631,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5625), [anon_sym_AMP_AMP] = ACTIONS(5627), [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_null] = ACTIONS(3137), [anon_sym_if] = ACTIONS(3137), [anon_sym_else] = ACTIONS(3137), [anon_sym_when] = ACTIONS(3137), @@ -259677,6 +259676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3137), [anon_sym_false] = ACTIONS(3137), [anon_sym_SQUOTE] = ACTIONS(3139), + [sym_null_literal] = ACTIONS(3137), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3139), [sym_safe_nav] = ACTIONS(4479), @@ -259747,39 +259747,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -259848,39 +259848,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -259949,39 +259949,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -260050,39 +260050,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -260151,39 +260151,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -260237,7 +260237,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5625), [anon_sym_AMP_AMP] = ACTIONS(3078), [anon_sym_PIPE_PIPE] = ACTIONS(3078), - [anon_sym_null] = ACTIONS(3076), [anon_sym_if] = ACTIONS(3076), [anon_sym_else] = ACTIONS(3076), [anon_sym_when] = ACTIONS(3076), @@ -260283,6 +260282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3076), [anon_sym_false] = ACTIONS(3076), [anon_sym_SQUOTE] = ACTIONS(3078), + [sym_null_literal] = ACTIONS(3076), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3078), [sym_safe_nav] = ACTIONS(4479), @@ -260353,39 +260353,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -260454,39 +260454,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -260555,39 +260555,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -260656,39 +260656,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1233), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -260757,39 +260757,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1233), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -260858,39 +260858,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1233), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -260960,15 +260960,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1209), [sym_label] = ACTIONS(707), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), @@ -260980,18 +260979,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -261045,7 +261045,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3132), [anon_sym_AMP_AMP] = ACTIONS(3132), [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), [anon_sym_if] = ACTIONS(3130), [anon_sym_else] = ACTIONS(3130), [anon_sym_when] = ACTIONS(3130), @@ -261091,6 +261090,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3130), [anon_sym_false] = ACTIONS(3130), [anon_sym_SQUOTE] = ACTIONS(3132), + [sym_null_literal] = ACTIONS(3130), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3132), [sym_safe_nav] = ACTIONS(4479), @@ -261162,15 +261162,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -261182,18 +261181,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -261247,7 +261247,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3117), [anon_sym_AMP_AMP] = ACTIONS(3117), [anon_sym_PIPE_PIPE] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3115), [anon_sym_if] = ACTIONS(3115), [anon_sym_else] = ACTIONS(3115), [anon_sym_when] = ACTIONS(3115), @@ -261293,6 +261292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3115), [anon_sym_false] = ACTIONS(3115), [anon_sym_SQUOTE] = ACTIONS(3117), + [sym_null_literal] = ACTIONS(3115), [sym__backtick_identifier] = ACTIONS(3117), [sym__automatic_semicolon] = ACTIONS(3117), [sym_safe_nav] = ACTIONS(4479), @@ -261363,39 +261363,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1860), + [sym_label] = ACTIONS(873), [anon_sym_if] = ACTIONS(3022), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3024), [anon_sym_return] = ACTIONS(3026), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -261464,39 +261464,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -261565,39 +261565,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -261767,39 +261767,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1257), - [sym_label] = ACTIONS(515), - [anon_sym_null] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(501), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_return] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(517), - [anon_sym_DASH_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(517), + [sym_label] = ACTIONS(513), + [anon_sym_if] = ACTIONS(499), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_return] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -261868,39 +261868,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1860), + [sym_label] = ACTIONS(873), [anon_sym_if] = ACTIONS(3022), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3024), [anon_sym_return] = ACTIONS(3026), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -261969,39 +261969,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1233), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -262070,39 +262070,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1860), + [sym_label] = ACTIONS(873), [anon_sym_if] = ACTIONS(3022), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3024), [anon_sym_return] = ACTIONS(3026), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -262171,39 +262171,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1860), + [sym_label] = ACTIONS(873), [anon_sym_if] = ACTIONS(3022), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3024), [anon_sym_return] = ACTIONS(3026), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -262272,39 +262272,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1860), + [sym_label] = ACTIONS(873), [anon_sym_if] = ACTIONS(3022), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3024), [anon_sym_return] = ACTIONS(3026), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -262373,39 +262373,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1860), + [sym_label] = ACTIONS(873), [anon_sym_if] = ACTIONS(3022), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3024), [anon_sym_return] = ACTIONS(3026), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -262474,39 +262474,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1860), + [sym_label] = ACTIONS(873), [anon_sym_if] = ACTIONS(3022), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3024), [anon_sym_return] = ACTIONS(3026), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -262575,39 +262575,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1860), + [sym_label] = ACTIONS(873), [anon_sym_if] = ACTIONS(3022), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3024), [anon_sym_return] = ACTIONS(3026), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -262676,39 +262676,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1860), + [sym_label] = ACTIONS(873), [anon_sym_if] = ACTIONS(3022), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3024), [anon_sym_return] = ACTIONS(3026), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -262777,39 +262777,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -262878,39 +262878,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1860), + [sym_label] = ACTIONS(873), [anon_sym_if] = ACTIONS(3022), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3024), [anon_sym_return] = ACTIONS(3026), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -262979,39 +262979,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1860), + [sym_label] = ACTIONS(873), [anon_sym_if] = ACTIONS(3022), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3024), [anon_sym_return] = ACTIONS(3026), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -263080,39 +263080,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1860), + [sym_label] = ACTIONS(873), [anon_sym_if] = ACTIONS(3022), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3024), [anon_sym_return] = ACTIONS(3026), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -263282,39 +263282,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -263383,39 +263383,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1860), + [sym_label] = ACTIONS(873), [anon_sym_if] = ACTIONS(3022), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3024), [anon_sym_return] = ACTIONS(3026), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -263484,39 +263484,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1860), + [sym_label] = ACTIONS(873), [anon_sym_if] = ACTIONS(3022), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3024), [anon_sym_return] = ACTIONS(3026), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -263586,15 +263586,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -263606,18 +263605,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -263686,39 +263686,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -263787,39 +263787,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -263888,39 +263888,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -263989,39 +263989,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1233), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -264090,39 +264090,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -264191,39 +264191,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -264393,39 +264393,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -264494,39 +264494,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1233), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -264696,39 +264696,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -265101,15 +265101,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -265121,18 +265120,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -265201,39 +265201,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -265706,39 +265706,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -265807,39 +265807,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -265908,39 +265908,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -266009,39 +266009,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -266110,39 +266110,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -266211,39 +266211,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1233), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -266312,39 +266312,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -266413,39 +266413,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1197), - [sym_label] = ACTIONS(391), - [anon_sym_null] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -266514,39 +266514,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1197), - [sym_label] = ACTIONS(391), - [anon_sym_null] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -266716,39 +266716,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -266919,15 +266919,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1239), [sym_label] = ACTIONS(653), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), @@ -266939,18 +266938,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -267025,30 +267025,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3286), [anon_sym_DASH_DASH] = ACTIONS(3286), [anon_sym_BANG_BANG] = ACTIONS(3286), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -267120,39 +267120,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(951), - [sym_label] = ACTIONS(961), - [anon_sym_null] = ACTIONS(1602), + [sym_label] = ACTIONS(959), [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1644), [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -267222,15 +267222,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1239), [sym_label] = ACTIONS(653), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), @@ -267242,18 +267241,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -267323,15 +267323,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1239), [sym_label] = ACTIONS(653), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), @@ -267343,18 +267342,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -267424,15 +267424,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1239), [sym_label] = ACTIONS(653), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), @@ -267444,18 +267443,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -267524,39 +267524,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -267626,15 +267626,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1239), [sym_label] = ACTIONS(653), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), @@ -267646,18 +267645,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -267727,15 +267727,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1239), [sym_label] = ACTIONS(653), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), @@ -267747,18 +267746,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -267828,15 +267828,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1239), [sym_label] = ACTIONS(653), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), @@ -267848,18 +267847,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -267929,15 +267929,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1239), [sym_label] = ACTIONS(653), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), @@ -267949,18 +267948,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -268030,15 +268030,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1239), [sym_label] = ACTIONS(653), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), @@ -268050,18 +268049,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -268131,15 +268131,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1239), [sym_label] = ACTIONS(653), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), @@ -268151,18 +268150,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -268232,15 +268232,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1239), [sym_label] = ACTIONS(653), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), @@ -268252,18 +268251,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -268332,39 +268332,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -268433,39 +268433,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -268534,39 +268534,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -268635,39 +268635,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -268737,15 +268737,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1239), [sym_label] = ACTIONS(653), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), @@ -268757,18 +268756,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -268837,39 +268837,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -268938,39 +268938,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -269040,15 +269040,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1239), [sym_label] = ACTIONS(653), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), @@ -269060,18 +269059,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -269140,39 +269140,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -269242,15 +269242,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1239), [sym_label] = ACTIONS(653), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(647), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(649), [anon_sym_return] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(653), [anon_sym_DASH] = ACTIONS(653), [anon_sym_PLUS_PLUS] = ACTIONS(655), @@ -269262,18 +269261,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -269342,39 +269342,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -269444,15 +269444,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -269464,18 +269463,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -269544,39 +269544,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -269645,39 +269645,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -269746,39 +269746,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1233), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -269847,39 +269847,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -269948,39 +269948,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1233), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -270049,39 +270049,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -270150,39 +270150,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -270251,39 +270251,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -270352,39 +270352,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -270453,39 +270453,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -270554,39 +270554,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -270655,39 +270655,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -270756,39 +270756,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -270857,39 +270857,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -270958,39 +270958,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1227), - [sym_label] = ACTIONS(457), - [anon_sym_null] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(451), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(453), - [anon_sym_return] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_DASH_DASH] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(459), + [sym_label] = ACTIONS(455), + [anon_sym_if] = ACTIONS(449), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_return] = ACTIONS(453), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_BANG] = ACTIONS(457), [anon_sym_data] = ACTIONS(1868), [anon_sym_inner] = ACTIONS(1868), [anon_sym_value] = ACTIONS(1868), [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -271059,39 +271059,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -271160,39 +271160,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -271261,39 +271261,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -271363,15 +271363,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1209), [sym_label] = ACTIONS(707), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), @@ -271383,18 +271382,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -271463,39 +271463,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -271564,39 +271564,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -271666,15 +271666,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -271686,18 +271685,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -271766,39 +271766,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(1233), - [sym_label] = ACTIONS(173), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(159), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), - [anon_sym_throw] = ACTIONS(165), - [anon_sym_return] = ACTIONS(167), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(175), - [anon_sym_DASH_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), + [sym_label] = ACTIONS(171), + [anon_sym_if] = ACTIONS(157), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS_PLUS] = ACTIONS(173), + [anon_sym_DASH_DASH] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -271867,39 +271867,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(951), - [sym_label] = ACTIONS(961), - [anon_sym_null] = ACTIONS(1602), + [sym_label] = ACTIONS(959), [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1644), [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -271968,39 +271968,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1860), + [sym_label] = ACTIONS(873), [anon_sym_if] = ACTIONS(3022), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3024), [anon_sym_return] = ACTIONS(3026), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -272069,39 +272069,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(951), - [sym_label] = ACTIONS(961), - [anon_sym_null] = ACTIONS(1602), + [sym_label] = ACTIONS(959), [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1644), [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -272170,39 +272170,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(951), - [sym_label] = ACTIONS(961), - [anon_sym_null] = ACTIONS(1602), + [sym_label] = ACTIONS(959), [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1644), [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -272271,39 +272271,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(951), - [sym_label] = ACTIONS(961), - [anon_sym_null] = ACTIONS(1602), + [sym_label] = ACTIONS(959), [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1644), [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -272372,39 +272372,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(951), - [sym_label] = ACTIONS(961), - [anon_sym_null] = ACTIONS(1602), + [sym_label] = ACTIONS(959), [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1644), [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -272473,39 +272473,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(951), - [sym_label] = ACTIONS(961), - [anon_sym_null] = ACTIONS(1602), + [sym_label] = ACTIONS(959), [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1644), [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -272575,15 +272575,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -272595,18 +272594,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -272675,39 +272675,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(951), - [sym_label] = ACTIONS(961), - [anon_sym_null] = ACTIONS(1602), + [sym_label] = ACTIONS(959), [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1644), [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -272777,15 +272777,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -272797,18 +272796,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -272877,39 +272877,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(951), - [sym_label] = ACTIONS(961), - [anon_sym_null] = ACTIONS(1602), + [sym_label] = ACTIONS(959), [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1644), [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -272978,39 +272978,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(951), - [sym_label] = ACTIONS(961), - [anon_sym_null] = ACTIONS(1602), + [sym_label] = ACTIONS(959), [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1644), [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -273079,39 +273079,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(951), - [sym_label] = ACTIONS(961), - [anon_sym_null] = ACTIONS(1602), + [sym_label] = ACTIONS(959), [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1644), [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -273180,39 +273180,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(951), - [sym_label] = ACTIONS(961), - [anon_sym_null] = ACTIONS(1602), + [sym_label] = ACTIONS(959), [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1644), [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -273282,15 +273282,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -273302,18 +273301,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -273382,39 +273382,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(951), - [sym_label] = ACTIONS(961), - [anon_sym_null] = ACTIONS(1602), + [sym_label] = ACTIONS(959), [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1644), [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -273484,15 +273484,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -273504,18 +273503,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -273584,39 +273584,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(951), - [sym_label] = ACTIONS(961), - [anon_sym_null] = ACTIONS(1602), + [sym_label] = ACTIONS(959), [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1644), [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -273686,15 +273686,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -273706,18 +273705,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -273786,39 +273786,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(951), - [sym_label] = ACTIONS(961), - [anon_sym_null] = ACTIONS(1602), + [sym_label] = ACTIONS(959), [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1644), [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -273887,39 +273887,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -273988,39 +273988,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(809), - [sym_label] = ACTIONS(819), - [anon_sym_null] = ACTIONS(1590), + [sym_label] = ACTIONS(817), [anon_sym_if] = ACTIONS(1626), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1628), [anon_sym_return] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -274090,15 +274090,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -274110,18 +274109,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -274190,39 +274190,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(361), [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1197), - [sym_label] = ACTIONS(391), - [anon_sym_null] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(377), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(383), - [anon_sym_return] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(393), + [sym_label] = ACTIONS(389), + [anon_sym_if] = ACTIONS(375), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_return] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_PLUS_PLUS] = ACTIONS(391), + [anon_sym_DASH_DASH] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), [anon_sym_data] = ACTIONS(1612), [anon_sym_inner] = ACTIONS(1612), [anon_sym_value] = ACTIONS(1612), [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -274291,39 +274291,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(809), - [sym_label] = ACTIONS(819), - [anon_sym_null] = ACTIONS(1590), + [sym_label] = ACTIONS(817), [anon_sym_if] = ACTIONS(1626), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1628), [anon_sym_return] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -274393,15 +274393,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -274413,18 +274412,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -274494,15 +274494,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -274514,18 +274513,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -274594,39 +274594,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -274696,15 +274696,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(5690), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -274716,18 +274715,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -274796,39 +274796,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -274897,39 +274897,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(809), - [sym_label] = ACTIONS(819), - [anon_sym_null] = ACTIONS(1590), + [sym_label] = ACTIONS(817), [anon_sym_if] = ACTIONS(1626), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1628), [anon_sym_return] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -274998,39 +274998,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -275099,39 +275099,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(809), - [sym_label] = ACTIONS(819), - [anon_sym_null] = ACTIONS(1590), + [sym_label] = ACTIONS(817), [anon_sym_if] = ACTIONS(1626), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1628), [anon_sym_return] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -275200,39 +275200,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(809), - [sym_label] = ACTIONS(819), - [anon_sym_null] = ACTIONS(1590), + [sym_label] = ACTIONS(817), [anon_sym_if] = ACTIONS(1626), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1628), [anon_sym_return] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -275302,15 +275302,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(839), [sym_label] = ACTIONS(847), - [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(1940), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(1942), [anon_sym_return] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(847), [anon_sym_DASH] = ACTIONS(847), [anon_sym_PLUS_PLUS] = ACTIONS(849), @@ -275322,18 +275321,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -275402,39 +275402,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(567), [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1860), + [sym_label] = ACTIONS(873), [anon_sym_if] = ACTIONS(3022), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3024), [anon_sym_return] = ACTIONS(3026), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), [anon_sym_data] = ACTIONS(1858), [anon_sym_inner] = ACTIONS(1858), [anon_sym_value] = ACTIONS(1858), [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -275503,39 +275503,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -275605,15 +275605,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1251), [sym_label] = ACTIONS(791), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(785), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(791), [anon_sym_DASH] = ACTIONS(791), [anon_sym_PLUS_PLUS] = ACTIONS(793), @@ -275625,18 +275624,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -275706,15 +275706,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1263), [sym_label] = ACTIONS(761), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(761), [anon_sym_DASH] = ACTIONS(761), [anon_sym_PLUS_PLUS] = ACTIONS(763), @@ -275726,18 +275725,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -275806,39 +275806,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(143), [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(809), - [sym_label] = ACTIONS(819), - [anon_sym_null] = ACTIONS(1590), + [sym_label] = ACTIONS(817), [anon_sym_if] = ACTIONS(1626), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1628), [anon_sym_return] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(817), + [anon_sym_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(819), + [anon_sym_DASH_DASH] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), [anon_sym_data] = ACTIONS(1588), [anon_sym_inner] = ACTIONS(1588), [anon_sym_value] = ACTIONS(1588), [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -275908,15 +275908,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1263), [sym_label] = ACTIONS(761), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(761), [anon_sym_DASH] = ACTIONS(761), [anon_sym_PLUS_PLUS] = ACTIONS(763), @@ -275928,18 +275927,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -276009,15 +276009,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1263), [sym_label] = ACTIONS(761), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(761), [anon_sym_DASH] = ACTIONS(761), [anon_sym_PLUS_PLUS] = ACTIONS(763), @@ -276029,18 +276028,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -276110,15 +276110,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1263), [sym_label] = ACTIONS(761), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(761), [anon_sym_DASH] = ACTIONS(761), [anon_sym_PLUS_PLUS] = ACTIONS(763), @@ -276130,18 +276129,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -276211,15 +276211,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1263), [sym_label] = ACTIONS(761), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(761), [anon_sym_DASH] = ACTIONS(761), [anon_sym_PLUS_PLUS] = ACTIONS(763), @@ -276231,18 +276230,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -276312,15 +276312,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1263), [sym_label] = ACTIONS(761), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(761), [anon_sym_DASH] = ACTIONS(761), [anon_sym_PLUS_PLUS] = ACTIONS(763), @@ -276332,18 +276331,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -276413,15 +276413,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1263), [sym_label] = ACTIONS(761), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(761), [anon_sym_DASH] = ACTIONS(761), [anon_sym_PLUS_PLUS] = ACTIONS(763), @@ -276433,18 +276432,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -276514,15 +276514,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1263), [sym_label] = ACTIONS(761), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(761), [anon_sym_DASH] = ACTIONS(761), [anon_sym_PLUS_PLUS] = ACTIONS(763), @@ -276534,18 +276533,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -276615,15 +276615,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1263), [sym_label] = ACTIONS(761), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(761), [anon_sym_DASH] = ACTIONS(761), [anon_sym_PLUS_PLUS] = ACTIONS(763), @@ -276635,18 +276634,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -276715,39 +276715,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -276817,15 +276817,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1263), [sym_label] = ACTIONS(761), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(761), [anon_sym_DASH] = ACTIONS(761), [anon_sym_PLUS_PLUS] = ACTIONS(763), @@ -276837,18 +276836,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -276918,15 +276918,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -276938,18 +276937,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -277019,15 +277019,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -277039,18 +277038,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -277120,15 +277120,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1263), [sym_label] = ACTIONS(761), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(761), [anon_sym_DASH] = ACTIONS(761), [anon_sym_PLUS_PLUS] = ACTIONS(763), @@ -277140,18 +277139,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -277221,15 +277221,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1263), [sym_label] = ACTIONS(761), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(761), [anon_sym_DASH] = ACTIONS(761), [anon_sym_PLUS_PLUS] = ACTIONS(763), @@ -277241,18 +277240,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -277321,39 +277321,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -277423,15 +277423,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1263), [sym_label] = ACTIONS(761), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(761), [anon_sym_DASH] = ACTIONS(761), [anon_sym_PLUS_PLUS] = ACTIONS(763), @@ -277443,18 +277442,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -277524,15 +277524,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -277544,18 +277543,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -277625,15 +277625,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1263), [sym_label] = ACTIONS(761), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(761), [anon_sym_DASH] = ACTIONS(761), [anon_sym_PLUS_PLUS] = ACTIONS(763), @@ -277645,18 +277644,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -277725,39 +277725,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -277827,15 +277827,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -277847,18 +277846,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -277928,15 +277928,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1263), [sym_label] = ACTIONS(761), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(327), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), - [anon_sym_throw] = ACTIONS(329), - [anon_sym_return] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_if] = ACTIONS(325), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), + [anon_sym_throw] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), [anon_sym_PLUS] = ACTIONS(761), [anon_sym_DASH] = ACTIONS(761), [anon_sym_PLUS_PLUS] = ACTIONS(763), @@ -277948,18 +277947,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -278028,39 +278028,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(485), [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(951), - [sym_label] = ACTIONS(961), - [anon_sym_null] = ACTIONS(1602), + [sym_label] = ACTIONS(959), [anon_sym_if] = ACTIONS(1642), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1644), [anon_sym_return] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), [anon_sym_data] = ACTIONS(1600), [anon_sym_inner] = ACTIONS(1600), [anon_sym_value] = ACTIONS(1600), [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -278130,15 +278130,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -278150,18 +278149,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -278231,15 +278231,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(895), [sym_label] = ACTIONS(903), - [anon_sym_null] = ACTIONS(1870), [anon_sym_if] = ACTIONS(3014), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3016), [anon_sym_return] = ACTIONS(3018), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(903), [anon_sym_DASH] = ACTIONS(903), [anon_sym_PLUS_PLUS] = ACTIONS(905), @@ -278251,18 +278250,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -278331,39 +278331,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -278432,39 +278432,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -278534,15 +278534,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(895), [sym_label] = ACTIONS(903), - [anon_sym_null] = ACTIONS(1870), [anon_sym_if] = ACTIONS(3014), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), + [anon_sym_when] = ACTIONS(55), + [anon_sym_try] = ACTIONS(57), [anon_sym_throw] = ACTIONS(3016), [anon_sym_return] = ACTIONS(3018), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_continue] = ACTIONS(63), + [anon_sym_break] = ACTIONS(63), + [anon_sym_COLON_COLON] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(903), [anon_sym_DASH] = ACTIONS(903), [anon_sym_PLUS_PLUS] = ACTIONS(905), @@ -278554,18 +278553,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1868), [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(91), + [anon_sym_break_AT] = ACTIONS(93), + [anon_sym_this_AT] = ACTIONS(95), + [anon_sym_super_AT] = ACTIONS(97), + [sym_real_literal] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(101), + [sym_hex_literal] = ACTIONS(103), + [sym_bin_literal] = ACTIONS(103), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(107), + [sym_null_literal] = ACTIONS(1872), [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), @@ -278635,15 +278635,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1027), [sym_label] = ACTIONS(1035), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(1668), [anon_sym_return] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(1035), [anon_sym_DASH] = ACTIONS(1035), [anon_sym_PLUS_PLUS] = ACTIONS(1037), @@ -278655,18 +278654,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -278736,15 +278736,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1245), [sym_label] = ACTIONS(737), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), @@ -278756,18 +278755,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -278837,15 +278837,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1209), [sym_label] = ACTIONS(707), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), @@ -278857,18 +278856,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -278938,15 +278938,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1245), [sym_label] = ACTIONS(737), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), @@ -278958,18 +278957,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -279039,15 +279039,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1245), [sym_label] = ACTIONS(737), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), @@ -279059,18 +279058,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -279140,15 +279140,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1245), [sym_label] = ACTIONS(737), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), @@ -279160,18 +279159,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -279241,15 +279241,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1209), [sym_label] = ACTIONS(707), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), @@ -279261,18 +279260,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -279342,15 +279342,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1245), [sym_label] = ACTIONS(737), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), @@ -279362,18 +279361,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -279443,15 +279443,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1245), [sym_label] = ACTIONS(737), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(731), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(733), [anon_sym_return] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), [anon_sym_PLUS_PLUS] = ACTIONS(739), @@ -279463,18 +279462,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -279543,39 +279543,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -279645,15 +279645,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1209), [sym_label] = ACTIONS(707), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), @@ -279665,18 +279664,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -279746,15 +279746,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1209), [sym_label] = ACTIONS(707), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), @@ -279766,18 +279765,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -279847,15 +279847,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1209), [sym_label] = ACTIONS(707), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), @@ -279867,18 +279866,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -279948,15 +279948,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1085), [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3090), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3092), [anon_sym_return] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(1093), [anon_sym_DASH] = ACTIONS(1093), [anon_sym_PLUS_PLUS] = ACTIONS(1095), @@ -279968,18 +279967,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -280049,15 +280049,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1251), [sym_label] = ACTIONS(791), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(785), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(787), [anon_sym_return] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(791), [anon_sym_DASH] = ACTIONS(791), [anon_sym_PLUS_PLUS] = ACTIONS(793), @@ -280069,18 +280068,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -280150,15 +280150,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(363), [anon_sym_STAR] = ACTIONS(1209), [sym_label] = ACTIONS(707), - [anon_sym_null] = ACTIONS(1614), [anon_sym_if] = ACTIONS(701), - [anon_sym_when] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), + [anon_sym_when] = ACTIONS(377), + [anon_sym_try] = ACTIONS(379), [anon_sym_throw] = ACTIONS(703), [anon_sym_return] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(387), - [anon_sym_break] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(707), [anon_sym_PLUS_PLUS] = ACTIONS(709), @@ -280170,18 +280169,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1612), [anon_sym_actual] = ACTIONS(1612), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(401), - [anon_sym_break_AT] = ACTIONS(403), - [anon_sym_this_AT] = ACTIONS(405), - [anon_sym_super_AT] = ACTIONS(407), - [sym_real_literal] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(411), - [sym_hex_literal] = ACTIONS(413), - [sym_bin_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(399), + [anon_sym_break_AT] = ACTIONS(401), + [anon_sym_this_AT] = ACTIONS(403), + [anon_sym_super_AT] = ACTIONS(405), + [sym_real_literal] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(409), + [sym_hex_literal] = ACTIONS(411), + [sym_bin_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [sym_null_literal] = ACTIONS(1616), [sym__backtick_identifier] = ACTIONS(419), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(421), @@ -280250,39 +280250,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -280351,39 +280351,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -280453,15 +280453,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -280473,18 +280472,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -280554,15 +280554,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(979), [sym_label] = ACTIONS(987), - [anon_sym_null] = ACTIONS(1590), [anon_sym_if] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(161), - [anon_sym_try] = ACTIONS(163), + [anon_sym_when] = ACTIONS(159), + [anon_sym_try] = ACTIONS(161), [anon_sym_throw] = ACTIONS(1652), [anon_sym_return] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(169), - [anon_sym_break] = ACTIONS(169), - [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_continue] = ACTIONS(167), + [anon_sym_break] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(987), [anon_sym_DASH] = ACTIONS(987), [anon_sym_PLUS_PLUS] = ACTIONS(989), @@ -280574,18 +280573,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1588), [anon_sym_actual] = ACTIONS(1588), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(181), - [anon_sym_continue_AT] = ACTIONS(183), - [anon_sym_break_AT] = ACTIONS(185), - [anon_sym_this_AT] = ACTIONS(187), - [anon_sym_super_AT] = ACTIONS(189), - [sym_real_literal] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(193), - [sym_hex_literal] = ACTIONS(195), - [sym_bin_literal] = ACTIONS(195), - [anon_sym_true] = ACTIONS(197), - [anon_sym_false] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_return_AT] = ACTIONS(179), + [anon_sym_continue_AT] = ACTIONS(181), + [anon_sym_break_AT] = ACTIONS(183), + [anon_sym_this_AT] = ACTIONS(185), + [anon_sym_super_AT] = ACTIONS(187), + [sym_real_literal] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(191), + [sym_hex_literal] = ACTIONS(193), + [sym_bin_literal] = ACTIONS(193), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [sym_null_literal] = ACTIONS(1592), [sym__backtick_identifier] = ACTIONS(201), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(203), @@ -280655,15 +280655,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -280675,18 +280674,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -280756,15 +280756,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -280776,18 +280775,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -280857,15 +280857,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1085), [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3090), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3092), [anon_sym_return] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(1093), [anon_sym_DASH] = ACTIONS(1093), [anon_sym_PLUS_PLUS] = ACTIONS(1095), @@ -280877,18 +280876,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -280957,39 +280957,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -281059,15 +281059,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1085), [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3090), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3092), [anon_sym_return] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(1093), [anon_sym_DASH] = ACTIONS(1093), [anon_sym_PLUS_PLUS] = ACTIONS(1095), @@ -281079,18 +281078,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -281160,15 +281160,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1085), [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3090), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3092), [anon_sym_return] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(1093), [anon_sym_DASH] = ACTIONS(1093), [anon_sym_PLUS_PLUS] = ACTIONS(1095), @@ -281180,18 +281179,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -281261,15 +281261,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1085), [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3090), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3092), [anon_sym_return] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(1093), [anon_sym_DASH] = ACTIONS(1093), [anon_sym_PLUS_PLUS] = ACTIONS(1095), @@ -281281,18 +281280,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -281361,39 +281361,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -281463,15 +281463,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1085), [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3090), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3092), [anon_sym_return] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(1093), [anon_sym_DASH] = ACTIONS(1093), [anon_sym_PLUS_PLUS] = ACTIONS(1095), @@ -281483,18 +281482,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -281564,15 +281564,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1085), [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3090), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3092), [anon_sym_return] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(1093), [anon_sym_DASH] = ACTIONS(1093), [anon_sym_PLUS_PLUS] = ACTIONS(1095), @@ -281584,18 +281583,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -281665,15 +281665,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1085), [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3090), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3092), [anon_sym_return] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(1093), [anon_sym_DASH] = ACTIONS(1093), [anon_sym_PLUS_PLUS] = ACTIONS(1095), @@ -281685,18 +281684,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -281765,39 +281765,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -281866,39 +281866,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -281967,39 +281967,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -282069,15 +282069,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -282089,18 +282088,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -282170,15 +282170,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -282190,18 +282189,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -282270,39 +282270,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(227), [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(1051), - [sym_label] = ACTIONS(333), - [anon_sym_null] = ACTIONS(1792), + [sym_label] = ACTIONS(331), [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(245), - [anon_sym_try] = ACTIONS(247), + [anon_sym_when] = ACTIONS(243), + [anon_sym_try] = ACTIONS(245), [anon_sym_throw] = ACTIONS(3032), [anon_sym_return] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_break] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(255), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_BANG] = ACTIONS(335), + [anon_sym_continue] = ACTIONS(251), + [anon_sym_break] = ACTIONS(251), + [anon_sym_COLON_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(331), + [anon_sym_PLUS_PLUS] = ACTIONS(333), + [anon_sym_DASH_DASH] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_data] = ACTIONS(1790), [anon_sym_inner] = ACTIONS(1790), [anon_sym_value] = ACTIONS(1790), [anon_sym_expect] = ACTIONS(1790), [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(265), - [anon_sym_continue_AT] = ACTIONS(267), - [anon_sym_break_AT] = ACTIONS(269), - [anon_sym_this_AT] = ACTIONS(271), - [anon_sym_super_AT] = ACTIONS(273), - [sym_real_literal] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(277), - [sym_hex_literal] = ACTIONS(279), - [sym_bin_literal] = ACTIONS(279), - [anon_sym_true] = ACTIONS(281), - [anon_sym_false] = ACTIONS(281), - [anon_sym_SQUOTE] = ACTIONS(283), + [anon_sym_return_AT] = ACTIONS(263), + [anon_sym_continue_AT] = ACTIONS(265), + [anon_sym_break_AT] = ACTIONS(267), + [anon_sym_this_AT] = ACTIONS(269), + [anon_sym_super_AT] = ACTIONS(271), + [sym_real_literal] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(275), + [sym_hex_literal] = ACTIONS(277), + [sym_bin_literal] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_SQUOTE] = ACTIONS(281), + [sym_null_literal] = ACTIONS(1794), [sym__backtick_identifier] = ACTIONS(285), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(287), @@ -282372,15 +282372,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1085), [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3090), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3092), [anon_sym_return] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(1093), [anon_sym_DASH] = ACTIONS(1093), [anon_sym_PLUS_PLUS] = ACTIONS(1095), @@ -282392,18 +282391,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -282473,15 +282473,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1085), [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3090), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3092), [anon_sym_return] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(1093), [anon_sym_DASH] = ACTIONS(1093), [anon_sym_PLUS_PLUS] = ACTIONS(1095), @@ -282493,18 +282492,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -282574,15 +282574,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1085), [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3090), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3092), [anon_sym_return] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(1093), [anon_sym_DASH] = ACTIONS(1093), [anon_sym_PLUS_PLUS] = ACTIONS(1095), @@ -282594,18 +282593,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -282675,15 +282675,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -282695,18 +282694,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -282776,15 +282776,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(1085), [sym_label] = ACTIONS(1093), - [anon_sym_null] = ACTIONS(1860), [anon_sym_if] = ACTIONS(3090), - [anon_sym_when] = ACTIONS(585), - [anon_sym_try] = ACTIONS(587), + [anon_sym_when] = ACTIONS(583), + [anon_sym_try] = ACTIONS(585), [anon_sym_throw] = ACTIONS(3092), [anon_sym_return] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(591), + [anon_sym_break] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(593), [anon_sym_PLUS] = ACTIONS(1093), [anon_sym_DASH] = ACTIONS(1093), [anon_sym_PLUS_PLUS] = ACTIONS(1095), @@ -282796,18 +282795,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1858), [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(605), - [anon_sym_break_AT] = ACTIONS(607), - [anon_sym_this_AT] = ACTIONS(609), - [anon_sym_super_AT] = ACTIONS(611), - [sym_real_literal] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(615), - [sym_hex_literal] = ACTIONS(617), - [sym_bin_literal] = ACTIONS(617), - [anon_sym_true] = ACTIONS(619), - [anon_sym_false] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_return_AT] = ACTIONS(89), + [anon_sym_continue_AT] = ACTIONS(603), + [anon_sym_break_AT] = ACTIONS(605), + [anon_sym_this_AT] = ACTIONS(607), + [anon_sym_super_AT] = ACTIONS(609), + [sym_real_literal] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(613), + [sym_hex_literal] = ACTIONS(615), + [sym_bin_literal] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(1862), [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(625), @@ -282877,15 +282877,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -282897,18 +282896,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -282978,15 +282978,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(487), [anon_sym_STAR] = ACTIONS(1003), [sym_label] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1602), [anon_sym_if] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(503), - [anon_sym_try] = ACTIONS(505), + [anon_sym_when] = ACTIONS(501), + [anon_sym_try] = ACTIONS(503), [anon_sym_throw] = ACTIONS(1660), [anon_sym_return] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_break] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(511), [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_DASH] = ACTIONS(1011), [anon_sym_PLUS_PLUS] = ACTIONS(1013), @@ -282998,18 +282997,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(1600), [anon_sym_actual] = ACTIONS(1600), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(399), - [anon_sym_continue_AT] = ACTIONS(523), - [anon_sym_break_AT] = ACTIONS(525), - [anon_sym_this_AT] = ACTIONS(527), - [anon_sym_super_AT] = ACTIONS(529), - [sym_real_literal] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(533), - [sym_hex_literal] = ACTIONS(535), - [sym_bin_literal] = ACTIONS(535), - [anon_sym_true] = ACTIONS(537), - [anon_sym_false] = ACTIONS(537), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_return_AT] = ACTIONS(397), + [anon_sym_continue_AT] = ACTIONS(521), + [anon_sym_break_AT] = ACTIONS(523), + [anon_sym_this_AT] = ACTIONS(525), + [anon_sym_super_AT] = ACTIONS(527), + [sym_real_literal] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(531), + [sym_hex_literal] = ACTIONS(533), + [sym_bin_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_SQUOTE] = ACTIONS(537), + [sym_null_literal] = ACTIONS(1604), [sym__backtick_identifier] = ACTIONS(541), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(543), @@ -283041,7 +283041,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4188), [anon_sym_AMP_AMP] = ACTIONS(4188), [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_null] = ACTIONS(4182), [anon_sym_if] = ACTIONS(4182), [anon_sym_else] = ACTIONS(4190), [anon_sym_when] = ACTIONS(4182), @@ -283108,6 +283107,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4182), [anon_sym_false] = ACTIONS(4182), [anon_sym_SQUOTE] = ACTIONS(4185), + [sym_null_literal] = ACTIONS(4182), [sym__backtick_identifier] = ACTIONS(4185), [sym__automatic_semicolon] = ACTIONS(4188), [sym_safe_nav] = ACTIONS(4188), @@ -283383,30 +283383,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -283483,30 +283483,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -284383,30 +284383,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -284483,30 +284483,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -284683,30 +284683,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -285383,30 +285383,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -285483,30 +285483,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -285683,30 +285683,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -285752,7 +285752,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(3186), [sym_label] = ACTIONS(3182), [anon_sym_in] = ACTIONS(3182), - [anon_sym_null] = ACTIONS(3182), [anon_sym_if] = ACTIONS(3182), [anon_sym_else] = ACTIONS(3182), [anon_sym_when] = ACTIONS(3182), @@ -285809,6 +285808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3182), [anon_sym_false] = ACTIONS(3182), [anon_sym_SQUOTE] = ACTIONS(3186), + [sym_null_literal] = ACTIONS(3182), [sym__backtick_identifier] = ACTIONS(3186), [sym__automatic_semicolon] = ACTIONS(3186), [sym_multiline_comment] = ACTIONS(3), @@ -285883,30 +285883,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -285941,7 +285941,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4858), [anon_sym_AMP_AMP] = ACTIONS(4858), [anon_sym_PIPE_PIPE] = ACTIONS(4858), - [anon_sym_null] = ACTIONS(4856), [anon_sym_if] = ACTIONS(4856), [anon_sym_else] = ACTIONS(5724), [anon_sym_when] = ACTIONS(4856), @@ -286008,6 +286007,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4856), [anon_sym_false] = ACTIONS(4856), [anon_sym_SQUOTE] = ACTIONS(4858), + [sym_null_literal] = ACTIONS(4856), [sym__backtick_identifier] = ACTIONS(4858), [sym__automatic_semicolon] = ACTIONS(4858), [sym_safe_nav] = ACTIONS(4858), @@ -286083,30 +286083,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -286141,7 +286141,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4858), [anon_sym_AMP_AMP] = ACTIONS(4858), [anon_sym_PIPE_PIPE] = ACTIONS(4858), - [anon_sym_null] = ACTIONS(4856), [anon_sym_if] = ACTIONS(4856), [anon_sym_else] = ACTIONS(5724), [anon_sym_when] = ACTIONS(4856), @@ -286208,6 +286207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4856), [anon_sym_false] = ACTIONS(4856), [anon_sym_SQUOTE] = ACTIONS(4858), + [sym_null_literal] = ACTIONS(4856), [sym__backtick_identifier] = ACTIONS(4858), [sym__automatic_semicolon] = ACTIONS(4858), [sym_safe_nav] = ACTIONS(4858), @@ -286552,7 +286552,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(3154), [sym_label] = ACTIONS(3148), [anon_sym_in] = ACTIONS(3148), - [anon_sym_null] = ACTIONS(3148), [anon_sym_if] = ACTIONS(3148), [anon_sym_else] = ACTIONS(3148), [anon_sym_when] = ACTIONS(3148), @@ -286609,6 +286608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3148), [anon_sym_false] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(3154), + [sym_null_literal] = ACTIONS(3148), [sym__backtick_identifier] = ACTIONS(3154), [sym__automatic_semicolon] = ACTIONS(3154), [sym_multiline_comment] = ACTIONS(3), @@ -287241,7 +287241,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4327), [anon_sym_AMP_AMP] = ACTIONS(4327), [anon_sym_PIPE_PIPE] = ACTIONS(4327), - [anon_sym_null] = ACTIONS(4325), [anon_sym_if] = ACTIONS(4325), [anon_sym_else] = ACTIONS(4325), [anon_sym_when] = ACTIONS(4325), @@ -287308,6 +287307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4325), [anon_sym_false] = ACTIONS(4325), [anon_sym_SQUOTE] = ACTIONS(4327), + [sym_null_literal] = ACTIONS(4325), [sym__backtick_identifier] = ACTIONS(4327), [sym__automatic_semicolon] = ACTIONS(4327), [sym_safe_nav] = ACTIONS(4327), @@ -287552,7 +287552,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(3154), [sym_label] = ACTIONS(3148), [anon_sym_in] = ACTIONS(3148), - [anon_sym_null] = ACTIONS(3148), [anon_sym_if] = ACTIONS(3148), [anon_sym_else] = ACTIONS(3148), [anon_sym_when] = ACTIONS(3148), @@ -287609,6 +287608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3148), [anon_sym_false] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(3154), + [sym_null_literal] = ACTIONS(3148), [sym__backtick_identifier] = ACTIONS(3154), [sym__automatic_semicolon] = ACTIONS(3154), [sym_multiline_comment] = ACTIONS(3), @@ -287952,7 +287952,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(3200), [sym_label] = ACTIONS(3196), [anon_sym_in] = ACTIONS(3196), - [anon_sym_null] = ACTIONS(3196), [anon_sym_if] = ACTIONS(3196), [anon_sym_else] = ACTIONS(3196), [anon_sym_when] = ACTIONS(3196), @@ -288009,6 +288008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3196), [anon_sym_false] = ACTIONS(3196), [anon_sym_SQUOTE] = ACTIONS(3200), + [sym_null_literal] = ACTIONS(3196), [sym__backtick_identifier] = ACTIONS(3200), [sym__automatic_semicolon] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), @@ -288041,7 +288041,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4355), [anon_sym_AMP_AMP] = ACTIONS(4355), [anon_sym_PIPE_PIPE] = ACTIONS(4355), - [anon_sym_null] = ACTIONS(4353), [anon_sym_if] = ACTIONS(4353), [anon_sym_else] = ACTIONS(4353), [anon_sym_when] = ACTIONS(4353), @@ -288108,6 +288107,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4353), [anon_sym_false] = ACTIONS(4353), [anon_sym_SQUOTE] = ACTIONS(4355), + [sym_null_literal] = ACTIONS(4353), [sym__backtick_identifier] = ACTIONS(4355), [sym__automatic_semicolon] = ACTIONS(4355), [sym_safe_nav] = ACTIONS(4355), @@ -288241,7 +288241,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4220), [anon_sym_AMP_AMP] = ACTIONS(4220), [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(4214), [anon_sym_if] = ACTIONS(4214), [anon_sym_else] = ACTIONS(4222), [anon_sym_when] = ACTIONS(4214), @@ -288308,6 +288307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4214), [anon_sym_false] = ACTIONS(4214), [anon_sym_SQUOTE] = ACTIONS(4217), + [sym_null_literal] = ACTIONS(4214), [sym__backtick_identifier] = ACTIONS(4217), [sym__automatic_semicolon] = ACTIONS(4220), [sym_safe_nav] = ACTIONS(4220), @@ -288341,7 +288341,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4188), [anon_sym_AMP_AMP] = ACTIONS(4188), [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(4190), [anon_sym_when] = ACTIONS(3938), @@ -288408,6 +288407,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(4185), [sym__automatic_semicolon] = ACTIONS(4188), [sym_safe_nav] = ACTIONS(4188), @@ -288441,7 +288441,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4852), [anon_sym_AMP_AMP] = ACTIONS(4852), [anon_sym_PIPE_PIPE] = ACTIONS(4852), - [anon_sym_null] = ACTIONS(4850), [anon_sym_if] = ACTIONS(4850), [anon_sym_else] = ACTIONS(4850), [anon_sym_when] = ACTIONS(4850), @@ -288508,6 +288507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4850), [anon_sym_false] = ACTIONS(4850), [anon_sym_SQUOTE] = ACTIONS(4852), + [sym_null_literal] = ACTIONS(4850), [sym__backtick_identifier] = ACTIONS(4852), [sym__automatic_semicolon] = ACTIONS(4852), [sym_safe_nav] = ACTIONS(4852), @@ -288541,7 +288541,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4842), [anon_sym_AMP_AMP] = ACTIONS(4842), [anon_sym_PIPE_PIPE] = ACTIONS(4842), - [anon_sym_null] = ACTIONS(4840), [anon_sym_if] = ACTIONS(4840), [anon_sym_else] = ACTIONS(4840), [anon_sym_when] = ACTIONS(4840), @@ -288608,6 +288607,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4840), [anon_sym_false] = ACTIONS(4840), [anon_sym_SQUOTE] = ACTIONS(4842), + [sym_null_literal] = ACTIONS(4840), [sym__backtick_identifier] = ACTIONS(4842), [sym__automatic_semicolon] = ACTIONS(4842), [sym_safe_nav] = ACTIONS(4842), @@ -288741,7 +288741,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4188), [anon_sym_AMP_AMP] = ACTIONS(4188), [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_null] = ACTIONS(4190), [anon_sym_if] = ACTIONS(4190), [anon_sym_else] = ACTIONS(4190), [anon_sym_when] = ACTIONS(4190), @@ -288808,6 +288807,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4190), [anon_sym_false] = ACTIONS(4190), [anon_sym_SQUOTE] = ACTIONS(4188), + [sym_null_literal] = ACTIONS(4190), [sym__backtick_identifier] = ACTIONS(4188), [sym__automatic_semicolon] = ACTIONS(4188), [sym_safe_nav] = ACTIONS(4188), @@ -288841,7 +288841,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4220), [anon_sym_AMP_AMP] = ACTIONS(4220), [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(4222), [anon_sym_if] = ACTIONS(4222), [anon_sym_else] = ACTIONS(4222), [anon_sym_when] = ACTIONS(4222), @@ -288908,6 +288907,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4222), [anon_sym_false] = ACTIONS(4222), [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_null_literal] = ACTIONS(4222), [sym__backtick_identifier] = ACTIONS(4220), [sym__automatic_semicolon] = ACTIONS(4220), [sym_safe_nav] = ACTIONS(4220), @@ -288941,7 +288941,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4220), [anon_sym_AMP_AMP] = ACTIONS(4220), [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(4222), [anon_sym_when] = ACTIONS(3938), @@ -289008,6 +289007,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(4217), [sym__automatic_semicolon] = ACTIONS(4220), [sym_safe_nav] = ACTIONS(4220), @@ -289546,7 +289546,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(3298), [sym_label] = ACTIONS(3296), [anon_sym_in] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -289564,30 +289563,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -289603,6 +289602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), @@ -290546,7 +290546,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5822), [anon_sym_AMP_AMP] = ACTIONS(5824), [anon_sym_PIPE_PIPE] = ACTIONS(5826), - [anon_sym_null] = ACTIONS(3044), [anon_sym_if] = ACTIONS(3044), [anon_sym_else] = ACTIONS(3044), [anon_sym_when] = ACTIONS(3044), @@ -290592,6 +290591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3044), [anon_sym_false] = ACTIONS(3044), [anon_sym_SQUOTE] = ACTIONS(3046), + [sym_null_literal] = ACTIONS(3044), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3046), [sym_safe_nav] = ACTIONS(4479), @@ -291338,7 +291338,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3117), [anon_sym_AMP_AMP] = ACTIONS(3117), [anon_sym_PIPE_PIPE] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3115), [anon_sym_if] = ACTIONS(3115), [anon_sym_else] = ACTIONS(3115), [anon_sym_when] = ACTIONS(3115), @@ -291384,6 +291383,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3115), [anon_sym_false] = ACTIONS(3115), [anon_sym_SQUOTE] = ACTIONS(3117), + [sym_null_literal] = ACTIONS(3115), [sym__backtick_identifier] = ACTIONS(3117), [sym__automatic_semicolon] = ACTIONS(3117), [sym_safe_nav] = ACTIONS(4479), @@ -291437,7 +291437,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3132), [anon_sym_AMP_AMP] = ACTIONS(3132), [anon_sym_PIPE_PIPE] = ACTIONS(3132), - [anon_sym_null] = ACTIONS(3130), [anon_sym_if] = ACTIONS(3130), [anon_sym_else] = ACTIONS(3130), [anon_sym_when] = ACTIONS(3130), @@ -291483,6 +291482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3130), [anon_sym_false] = ACTIONS(3130), [anon_sym_SQUOTE] = ACTIONS(3132), + [sym_null_literal] = ACTIONS(3130), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3132), [sym_safe_nav] = ACTIONS(4479), @@ -291536,7 +291536,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5822), [anon_sym_AMP_AMP] = ACTIONS(3078), [anon_sym_PIPE_PIPE] = ACTIONS(3078), - [anon_sym_null] = ACTIONS(3076), [anon_sym_if] = ACTIONS(3076), [anon_sym_else] = ACTIONS(3076), [anon_sym_when] = ACTIONS(3076), @@ -291582,6 +291581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3076), [anon_sym_false] = ACTIONS(3076), [anon_sym_SQUOTE] = ACTIONS(3078), + [sym_null_literal] = ACTIONS(3076), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3078), [sym_safe_nav] = ACTIONS(4479), @@ -291635,7 +291635,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5822), [anon_sym_AMP_AMP] = ACTIONS(5824), [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_null] = ACTIONS(3137), [anon_sym_if] = ACTIONS(3137), [anon_sym_else] = ACTIONS(3137), [anon_sym_when] = ACTIONS(3137), @@ -291681,6 +291680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3137), [anon_sym_false] = ACTIONS(3137), [anon_sym_SQUOTE] = ACTIONS(3139), + [sym_null_literal] = ACTIONS(3137), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3139), [sym_safe_nav] = ACTIONS(4479), @@ -291714,7 +291714,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4220), [anon_sym_AMP_AMP] = ACTIONS(4220), [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(4222), [anon_sym_when] = ACTIONS(3938), @@ -291781,6 +291780,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(4217), [sym_safe_nav] = ACTIONS(4220), [sym_multiline_comment] = ACTIONS(3), @@ -291932,7 +291932,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5822), [anon_sym_AMP_AMP] = ACTIONS(3086), [anon_sym_PIPE_PIPE] = ACTIONS(3086), - [anon_sym_null] = ACTIONS(3084), [anon_sym_if] = ACTIONS(3084), [anon_sym_else] = ACTIONS(3084), [anon_sym_when] = ACTIONS(3084), @@ -291978,6 +291977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3084), [anon_sym_false] = ACTIONS(3084), [anon_sym_SQUOTE] = ACTIONS(3086), + [sym_null_literal] = ACTIONS(3084), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3086), [sym_safe_nav] = ACTIONS(4479), @@ -292031,7 +292031,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5822), [anon_sym_AMP_AMP] = ACTIONS(3059), [anon_sym_PIPE_PIPE] = ACTIONS(3059), - [anon_sym_null] = ACTIONS(3057), [anon_sym_if] = ACTIONS(3057), [anon_sym_else] = ACTIONS(3057), [anon_sym_when] = ACTIONS(3057), @@ -292077,6 +292076,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3057), [anon_sym_false] = ACTIONS(3057), [anon_sym_SQUOTE] = ACTIONS(3059), + [sym_null_literal] = ACTIONS(3057), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3059), [sym_safe_nav] = ACTIONS(4479), @@ -292130,7 +292130,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5822), [anon_sym_AMP_AMP] = ACTIONS(3067), [anon_sym_PIPE_PIPE] = ACTIONS(3067), - [anon_sym_null] = ACTIONS(3065), [anon_sym_if] = ACTIONS(3065), [anon_sym_else] = ACTIONS(3065), [anon_sym_when] = ACTIONS(3065), @@ -292176,6 +292175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3065), [anon_sym_false] = ACTIONS(3065), [anon_sym_SQUOTE] = ACTIONS(3067), + [sym_null_literal] = ACTIONS(3065), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3067), [sym_safe_nav] = ACTIONS(4479), @@ -292209,7 +292209,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4188), [anon_sym_AMP_AMP] = ACTIONS(4188), [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(4190), [anon_sym_when] = ACTIONS(3938), @@ -292276,6 +292275,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(4185), [sym_safe_nav] = ACTIONS(4188), [sym_multiline_comment] = ACTIONS(3), @@ -292328,7 +292328,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3143), [anon_sym_AMP_AMP] = ACTIONS(3143), [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_null] = ACTIONS(3141), [anon_sym_if] = ACTIONS(3141), [anon_sym_else] = ACTIONS(3141), [anon_sym_when] = ACTIONS(3141), @@ -292374,6 +292373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3141), [anon_sym_false] = ACTIONS(3141), [anon_sym_SQUOTE] = ACTIONS(3143), + [sym_null_literal] = ACTIONS(3141), [sym__backtick_identifier] = ACTIONS(3143), [sym__automatic_semicolon] = ACTIONS(3143), [sym_safe_nav] = ACTIONS(4479), @@ -292427,7 +292427,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3102), [anon_sym_AMP_AMP] = ACTIONS(3102), [anon_sym_PIPE_PIPE] = ACTIONS(3102), - [anon_sym_null] = ACTIONS(3100), [anon_sym_if] = ACTIONS(3100), [anon_sym_else] = ACTIONS(3100), [anon_sym_when] = ACTIONS(3100), @@ -292473,6 +292472,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3100), [anon_sym_false] = ACTIONS(3100), [anon_sym_SQUOTE] = ACTIONS(3102), + [sym_null_literal] = ACTIONS(3100), [sym__backtick_identifier] = ACTIONS(3102), [sym__automatic_semicolon] = ACTIONS(3102), [sym_safe_nav] = ACTIONS(4479), @@ -292724,7 +292724,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3052), [anon_sym_AMP_AMP] = ACTIONS(3052), [anon_sym_PIPE_PIPE] = ACTIONS(3052), - [anon_sym_null] = ACTIONS(3050), [anon_sym_if] = ACTIONS(3050), [anon_sym_else] = ACTIONS(3050), [anon_sym_when] = ACTIONS(3050), @@ -292770,6 +292769,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3050), [anon_sym_false] = ACTIONS(3050), [anon_sym_SQUOTE] = ACTIONS(3052), + [sym_null_literal] = ACTIONS(3050), [sym__backtick_identifier] = ACTIONS(3052), [sym__automatic_semicolon] = ACTIONS(3052), [sym_safe_nav] = ACTIONS(4479), @@ -293120,7 +293120,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5822), [anon_sym_AMP_AMP] = ACTIONS(5824), [anon_sym_PIPE_PIPE] = ACTIONS(5826), - [anon_sym_null] = ACTIONS(3122), [anon_sym_if] = ACTIONS(3122), [anon_sym_else] = ACTIONS(3122), [anon_sym_when] = ACTIONS(3122), @@ -293166,6 +293165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3122), [anon_sym_false] = ACTIONS(3122), [anon_sym_SQUOTE] = ACTIONS(3124), + [sym_null_literal] = ACTIONS(3122), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3124), [sym_safe_nav] = ACTIONS(4479), @@ -293407,7 +293407,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1746), [sym_label] = ACTIONS(1744), [anon_sym_in] = ACTIONS(1744), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -293425,30 +293424,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -293464,6 +293463,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), @@ -293516,7 +293516,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5822), [anon_sym_AMP_AMP] = ACTIONS(5824), [anon_sym_PIPE_PIPE] = ACTIONS(5826), - [anon_sym_null] = ACTIONS(3111), [anon_sym_if] = ACTIONS(3111), [anon_sym_else] = ACTIONS(3111), [anon_sym_when] = ACTIONS(3111), @@ -293562,6 +293561,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3111), [anon_sym_false] = ACTIONS(3111), [anon_sym_SQUOTE] = ACTIONS(3113), + [sym_null_literal] = ACTIONS(3111), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3113), [sym_safe_nav] = ACTIONS(4479), @@ -293912,7 +293912,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5822), [anon_sym_AMP_AMP] = ACTIONS(5824), [anon_sym_PIPE_PIPE] = ACTIONS(5826), - [anon_sym_null] = ACTIONS(3080), [anon_sym_if] = ACTIONS(3080), [anon_sym_else] = ACTIONS(3080), [anon_sym_when] = ACTIONS(3080), @@ -293958,6 +293957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3080), [anon_sym_false] = ACTIONS(3080), [anon_sym_SQUOTE] = ACTIONS(3082), + [sym_null_literal] = ACTIONS(3080), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3082), [sym_safe_nav] = ACTIONS(4479), @@ -294100,7 +294100,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1740), [sym_label] = ACTIONS(1738), [anon_sym_in] = ACTIONS(1738), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -294118,30 +294117,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -294157,6 +294156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), @@ -294209,7 +294209,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5822), [anon_sym_AMP_AMP] = ACTIONS(5824), [anon_sym_PIPE_PIPE] = ACTIONS(5826), - [anon_sym_null] = ACTIONS(3126), [anon_sym_if] = ACTIONS(3126), [anon_sym_else] = ACTIONS(3126), [anon_sym_when] = ACTIONS(3126), @@ -294255,6 +294254,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3126), [anon_sym_false] = ACTIONS(3126), [anon_sym_SQUOTE] = ACTIONS(3128), + [sym_null_literal] = ACTIONS(3126), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3128), [sym_safe_nav] = ACTIONS(4479), @@ -294496,7 +294496,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(3286), [sym_label] = ACTIONS(3284), [anon_sym_in] = ACTIONS(3284), - [anon_sym_null] = ACTIONS(3284), [anon_sym_if] = ACTIONS(3284), [anon_sym_else] = ACTIONS(3284), [anon_sym_when] = ACTIONS(3284), @@ -294514,30 +294513,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3286), [anon_sym_DASH_DASH] = ACTIONS(3286), [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -294553,6 +294552,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3284), [anon_sym_false] = ACTIONS(3284), [anon_sym_SQUOTE] = ACTIONS(3286), + [sym_null_literal] = ACTIONS(3284), [sym__backtick_identifier] = ACTIONS(3286), [sym__automatic_semicolon] = ACTIONS(3286), [sym_multiline_comment] = ACTIONS(3), @@ -294595,7 +294595,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1772), [sym_label] = ACTIONS(1770), [anon_sym_in] = ACTIONS(1770), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -294613,30 +294612,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -294652,6 +294651,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), @@ -294704,7 +294704,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5822), [anon_sym_AMP_AMP] = ACTIONS(5824), [anon_sym_PIPE_PIPE] = ACTIONS(5826), - [anon_sym_null] = ACTIONS(3107), [anon_sym_if] = ACTIONS(3107), [anon_sym_else] = ACTIONS(3107), [anon_sym_when] = ACTIONS(3107), @@ -294750,6 +294749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3107), [anon_sym_false] = ACTIONS(3107), [anon_sym_SQUOTE] = ACTIONS(3109), + [sym_null_literal] = ACTIONS(3107), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3109), [sym_safe_nav] = ACTIONS(4479), @@ -294803,7 +294803,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5822), [anon_sym_AMP_AMP] = ACTIONS(5824), [anon_sym_PIPE_PIPE] = ACTIONS(5826), - [anon_sym_null] = ACTIONS(3096), [anon_sym_if] = ACTIONS(3096), [anon_sym_else] = ACTIONS(3096), [anon_sym_when] = ACTIONS(3096), @@ -294849,6 +294848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3096), [anon_sym_false] = ACTIONS(3096), [anon_sym_SQUOTE] = ACTIONS(3098), + [sym_null_literal] = ACTIONS(3096), [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3098), [sym_safe_nav] = ACTIONS(4479), @@ -295714,30 +295714,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -295812,30 +295812,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -295868,7 +295868,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4188), [anon_sym_AMP_AMP] = ACTIONS(4188), [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(4190), [anon_sym_when] = ACTIONS(3938), @@ -295935,6 +295934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(4185), [sym__automatic_semicolon] = ACTIONS(4188), [sym_safe_nav] = ACTIONS(4188), @@ -296008,30 +296008,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -296106,30 +296106,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -296260,7 +296260,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4220), [anon_sym_AMP_AMP] = ACTIONS(4220), [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(4222), [anon_sym_when] = ACTIONS(3938), @@ -296327,6 +296326,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(4217), [sym__automatic_semicolon] = ACTIONS(4220), [sym_safe_nav] = ACTIONS(4220), @@ -296358,7 +296358,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4852), [anon_sym_AMP_AMP] = ACTIONS(4852), [anon_sym_PIPE_PIPE] = ACTIONS(4852), - [anon_sym_null] = ACTIONS(4850), [anon_sym_if] = ACTIONS(4850), [anon_sym_else] = ACTIONS(4850), [anon_sym_when] = ACTIONS(4850), @@ -296425,6 +296424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4850), [anon_sym_false] = ACTIONS(4850), [anon_sym_SQUOTE] = ACTIONS(4852), + [sym_null_literal] = ACTIONS(4850), [sym__backtick_identifier] = ACTIONS(4852), [sym__automatic_semicolon] = ACTIONS(4852), [sym_safe_nav] = ACTIONS(4852), @@ -296498,30 +296498,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -296595,30 +296595,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3286), [anon_sym_DASH_DASH] = ACTIONS(3286), [anon_sym_BANG_BANG] = ACTIONS(3286), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -296694,30 +296694,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -296792,30 +296792,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -296946,7 +296946,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4842), [anon_sym_AMP_AMP] = ACTIONS(4842), [anon_sym_PIPE_PIPE] = ACTIONS(4842), - [anon_sym_null] = ACTIONS(4840), [anon_sym_if] = ACTIONS(4840), [anon_sym_else] = ACTIONS(4840), [anon_sym_when] = ACTIONS(4840), @@ -297013,6 +297012,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4840), [anon_sym_false] = ACTIONS(4840), [anon_sym_SQUOTE] = ACTIONS(4842), + [sym_null_literal] = ACTIONS(4840), [sym__backtick_identifier] = ACTIONS(4842), [sym__automatic_semicolon] = ACTIONS(4842), [sym_safe_nav] = ACTIONS(4842), @@ -297055,7 +297055,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(3240), [sym_label] = ACTIONS(3236), [anon_sym_in] = ACTIONS(3236), - [anon_sym_null] = ACTIONS(3236), [anon_sym_if] = ACTIONS(3236), [anon_sym_else] = ACTIONS(3236), [anon_sym_when] = ACTIONS(3236), @@ -297112,6 +297111,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3236), [anon_sym_false] = ACTIONS(3236), [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), [sym__backtick_identifier] = ACTIONS(3240), [sym__automatic_semicolon] = ACTIONS(3240), [sym_multiline_comment] = ACTIONS(3), @@ -297184,30 +297184,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -297282,30 +297282,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -297380,30 +297380,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1766), [anon_sym_DASH_DASH] = ACTIONS(1766), [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -297478,30 +297478,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -297575,30 +297575,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -297674,30 +297674,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -297772,30 +297772,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -297870,30 +297870,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -297968,30 +297968,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -298066,30 +298066,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -298122,7 +298122,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4188), [anon_sym_AMP_AMP] = ACTIONS(4188), [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_null] = ACTIONS(4190), [anon_sym_if] = ACTIONS(4190), [anon_sym_else] = ACTIONS(4190), [anon_sym_when] = ACTIONS(4190), @@ -298189,6 +298188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4190), [anon_sym_false] = ACTIONS(4190), [anon_sym_SQUOTE] = ACTIONS(4188), + [sym_null_literal] = ACTIONS(4190), [sym__backtick_identifier] = ACTIONS(4188), [sym__automatic_semicolon] = ACTIONS(4188), [sym_safe_nav] = ACTIONS(4188), @@ -298262,30 +298262,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -298360,30 +298360,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -298458,30 +298458,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -298556,30 +298556,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3370), [anon_sym_DASH_DASH] = ACTIONS(3370), [anon_sym_BANG_BANG] = ACTIONS(3370), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -298654,30 +298654,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -298752,30 +298752,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -298819,7 +298819,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(3222), [sym_label] = ACTIONS(3218), [anon_sym_in] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -298876,6 +298875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), @@ -298906,7 +298906,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4220), [anon_sym_AMP_AMP] = ACTIONS(4220), [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(4222), [anon_sym_if] = ACTIONS(4222), [anon_sym_else] = ACTIONS(4222), [anon_sym_when] = ACTIONS(4222), @@ -298973,6 +298972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4222), [anon_sym_false] = ACTIONS(4222), [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_null_literal] = ACTIONS(4222), [sym__backtick_identifier] = ACTIONS(4220), [sym__automatic_semicolon] = ACTIONS(4220), [sym_safe_nav] = ACTIONS(4220), @@ -299046,30 +299046,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3286), [anon_sym_DASH_DASH] = ACTIONS(3286), [anon_sym_BANG_BANG] = ACTIONS(3286), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -299144,30 +299144,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3286), [anon_sym_DASH_DASH] = ACTIONS(3286), [anon_sym_BANG_BANG] = ACTIONS(3286), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -299340,30 +299340,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -299438,30 +299438,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1766), [anon_sym_DASH_DASH] = ACTIONS(1766), [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -299536,30 +299536,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -299603,7 +299603,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(3230), [sym_label] = ACTIONS(3226), [anon_sym_in] = ACTIONS(3226), - [anon_sym_null] = ACTIONS(3226), [anon_sym_if] = ACTIONS(3226), [anon_sym_else] = ACTIONS(3226), [anon_sym_when] = ACTIONS(3226), @@ -299660,6 +299659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3226), [anon_sym_false] = ACTIONS(3226), [anon_sym_SQUOTE] = ACTIONS(3230), + [sym_null_literal] = ACTIONS(3226), [sym__backtick_identifier] = ACTIONS(3230), [sym__automatic_semicolon] = ACTIONS(3230), [sym_multiline_comment] = ACTIONS(3), @@ -299732,30 +299732,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -299830,30 +299830,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3370), [anon_sym_DASH_DASH] = ACTIONS(3370), [anon_sym_BANG_BANG] = ACTIONS(3370), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -299886,7 +299886,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4858), [anon_sym_AMP_AMP] = ACTIONS(4858), [anon_sym_PIPE_PIPE] = ACTIONS(4858), - [anon_sym_null] = ACTIONS(4856), [anon_sym_if] = ACTIONS(4856), [anon_sym_else] = ACTIONS(5964), [anon_sym_when] = ACTIONS(4856), @@ -299953,6 +299952,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4856), [anon_sym_false] = ACTIONS(4856), [anon_sym_SQUOTE] = ACTIONS(4858), + [sym_null_literal] = ACTIONS(4856), [sym__backtick_identifier] = ACTIONS(4858), [sym__automatic_semicolon] = ACTIONS(4858), [sym_safe_nav] = ACTIONS(4858), @@ -300026,30 +300026,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -300123,30 +300123,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3286), [anon_sym_DASH_DASH] = ACTIONS(3286), [anon_sym_BANG_BANG] = ACTIONS(3286), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -300222,30 +300222,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -300320,30 +300320,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -300376,7 +300376,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4858), [anon_sym_AMP_AMP] = ACTIONS(4858), [anon_sym_PIPE_PIPE] = ACTIONS(4858), - [anon_sym_null] = ACTIONS(4856), [anon_sym_if] = ACTIONS(4856), [anon_sym_else] = ACTIONS(5964), [anon_sym_when] = ACTIONS(4856), @@ -300443,6 +300442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4856), [anon_sym_false] = ACTIONS(4856), [anon_sym_SQUOTE] = ACTIONS(4858), + [sym_null_literal] = ACTIONS(4856), [sym__backtick_identifier] = ACTIONS(4858), [sym__automatic_semicolon] = ACTIONS(4858), [sym_safe_nav] = ACTIONS(4858), @@ -300516,30 +300516,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -300613,30 +300613,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -300711,30 +300711,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -300779,7 +300779,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(3222), [sym_label] = ACTIONS(3218), [anon_sym_in] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -300836,6 +300835,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), @@ -300908,30 +300908,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -301201,30 +301201,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -301300,30 +301300,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -301495,30 +301495,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -301593,30 +301593,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -301692,30 +301692,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -301887,30 +301887,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -302084,30 +302084,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -302182,30 +302182,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -302238,7 +302238,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4188), [anon_sym_AMP_AMP] = ACTIONS(4188), [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_null] = ACTIONS(4182), [anon_sym_if] = ACTIONS(4182), [anon_sym_else] = ACTIONS(4190), [anon_sym_when] = ACTIONS(4182), @@ -302305,6 +302304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4182), [anon_sym_false] = ACTIONS(4182), [anon_sym_SQUOTE] = ACTIONS(4185), + [sym_null_literal] = ACTIONS(4182), [sym__backtick_identifier] = ACTIONS(4185), [sym__automatic_semicolon] = ACTIONS(4188), [sym_safe_nav] = ACTIONS(4188), @@ -302336,7 +302336,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4220), [anon_sym_AMP_AMP] = ACTIONS(4220), [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(4214), [anon_sym_if] = ACTIONS(4214), [anon_sym_else] = ACTIONS(4222), [anon_sym_when] = ACTIONS(4214), @@ -302403,6 +302402,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4214), [anon_sym_false] = ACTIONS(4214), [anon_sym_SQUOTE] = ACTIONS(4217), + [sym_null_literal] = ACTIONS(4214), [sym__backtick_identifier] = ACTIONS(4217), [sym__automatic_semicolon] = ACTIONS(4220), [sym_safe_nav] = ACTIONS(4220), @@ -302475,30 +302475,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -302572,30 +302572,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3286), [anon_sym_DASH_DASH] = ACTIONS(3286), [anon_sym_BANG_BANG] = ACTIONS(3286), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -302669,30 +302669,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -302736,7 +302736,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1756), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -302754,30 +302753,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -302793,6 +302792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1756), [sym__automatic_semicolon] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), @@ -302863,30 +302863,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3286), [anon_sym_DASH_DASH] = ACTIONS(3286), [anon_sym_BANG_BANG] = ACTIONS(3286), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -303251,30 +303251,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -303542,30 +303542,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -303639,30 +303639,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -303736,30 +303736,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -303803,7 +303803,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(3298), [sym_label] = ACTIONS(3296), [anon_sym_in] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -303821,30 +303820,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -303860,6 +303859,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), @@ -303930,30 +303930,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -304124,30 +304124,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -304221,30 +304221,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -304318,30 +304318,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -304415,30 +304415,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -304512,30 +304512,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -304676,7 +304676,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1746), [sym_label] = ACTIONS(1744), [anon_sym_in] = ACTIONS(1744), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -304694,30 +304693,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -304733,6 +304732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), @@ -304803,30 +304803,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -304900,30 +304900,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -304997,30 +304997,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -305191,30 +305191,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -305288,30 +305288,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -305385,30 +305385,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -305482,30 +305482,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -305549,7 +305549,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1772), [sym_label] = ACTIONS(1770), [anon_sym_in] = ACTIONS(1770), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -305567,30 +305566,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -305606,6 +305605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), @@ -305646,7 +305646,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1740), [sym_label] = ACTIONS(1738), [anon_sym_in] = ACTIONS(1738), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -305664,30 +305663,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -305703,6 +305702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), @@ -305965,30 +305965,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -306157,30 +306157,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -306253,30 +306253,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -306349,30 +306349,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -306445,30 +306445,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -306541,30 +306541,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -306925,30 +306925,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -307021,30 +307021,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -307213,30 +307213,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3286), [anon_sym_DASH_DASH] = ACTIONS(3286), [anon_sym_BANG_BANG] = ACTIONS(3286), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -307597,30 +307597,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -307693,30 +307693,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -308173,30 +308173,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -308269,30 +308269,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3286), [anon_sym_DASH_DASH] = ACTIONS(3286), [anon_sym_BANG_BANG] = ACTIONS(3286), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -308365,30 +308365,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -308653,30 +308653,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -308941,30 +308941,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -309229,30 +309229,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -309325,30 +309325,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -309517,30 +309517,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -309901,30 +309901,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -310284,30 +310284,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -310378,30 +310378,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -310473,30 +310473,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -310568,30 +310568,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -310758,30 +310758,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -310853,30 +310853,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -310948,30 +310948,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -311043,30 +311043,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -311328,30 +311328,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -311613,30 +311613,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -311709,30 +311709,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -311803,30 +311803,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -311898,30 +311898,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -311993,30 +311993,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -312088,30 +312088,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -312184,30 +312184,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -312278,30 +312278,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -312373,30 +312373,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -312468,30 +312468,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -312658,30 +312658,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -312753,30 +312753,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -313133,30 +313133,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -313228,30 +313228,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3370), [anon_sym_DASH_DASH] = ACTIONS(3370), [anon_sym_BANG_BANG] = ACTIONS(3370), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -313323,30 +313323,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -313418,30 +313418,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -313608,30 +313608,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -313798,30 +313798,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -313893,30 +313893,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -313988,30 +313988,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -314084,30 +314084,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -314178,30 +314178,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -314273,30 +314273,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -314368,30 +314368,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1766), [anon_sym_DASH_DASH] = ACTIONS(1766), [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -314463,30 +314463,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3370), [anon_sym_DASH_DASH] = ACTIONS(3370), [anon_sym_BANG_BANG] = ACTIONS(3370), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -314843,30 +314843,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -314939,30 +314939,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -315034,30 +315034,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -315128,30 +315128,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -315318,30 +315318,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -315509,30 +315509,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -315604,30 +315604,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -315698,30 +315698,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1766), [anon_sym_DASH_DASH] = ACTIONS(1766), [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -315793,30 +315793,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -315889,30 +315889,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -315984,30 +315984,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -316078,30 +316078,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -316173,30 +316173,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -316268,30 +316268,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -316553,30 +316553,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -316647,30 +316647,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -316741,30 +316741,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -316835,30 +316835,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -316929,30 +316929,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -317023,30 +317023,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -317117,30 +317117,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3370), [anon_sym_DASH_DASH] = ACTIONS(3370), [anon_sym_BANG_BANG] = ACTIONS(3370), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -317211,30 +317211,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1766), [anon_sym_DASH_DASH] = ACTIONS(1766), [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -317305,30 +317305,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -317399,30 +317399,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -317587,30 +317587,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -317681,30 +317681,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3370), [anon_sym_DASH_DASH] = ACTIONS(3370), [anon_sym_BANG_BANG] = ACTIONS(3370), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -317744,7 +317744,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1756), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -317762,30 +317761,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -317801,6 +317800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1756), [sym__automatic_semicolon] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), @@ -317869,30 +317869,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1766), [anon_sym_DASH_DASH] = ACTIONS(1766), [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -317963,30 +317963,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -318120,7 +318120,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1746), [sym_label] = ACTIONS(1744), [anon_sym_in] = ACTIONS(1744), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -318138,30 +318137,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -318177,6 +318176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), @@ -318339,30 +318339,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -318433,30 +318433,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -318527,30 +318527,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -318621,30 +318621,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -318715,30 +318715,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -318809,30 +318809,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -318903,30 +318903,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -318966,7 +318966,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1772), [sym_label] = ACTIONS(1770), [anon_sym_in] = ACTIONS(1770), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -318984,30 +318983,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -319023,6 +319022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), @@ -319060,7 +319060,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1684), [sym_label] = ACTIONS(1682), [anon_sym_in] = ACTIONS(1682), - [anon_sym_null] = ACTIONS(1682), [anon_sym_if] = ACTIONS(1682), [anon_sym_else] = ACTIONS(1682), [anon_sym_when] = ACTIONS(1682), @@ -319078,30 +319077,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG] = ACTIONS(1682), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -319117,6 +319116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1682), [anon_sym_false] = ACTIONS(1682), [anon_sym_SQUOTE] = ACTIONS(1684), + [sym_null_literal] = ACTIONS(1682), [sym__backtick_identifier] = ACTIONS(1684), [sym__automatic_semicolon] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), @@ -319154,7 +319154,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1740), [sym_label] = ACTIONS(1738), [anon_sym_in] = ACTIONS(1738), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -319172,30 +319171,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -319211,6 +319210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), @@ -319279,30 +319279,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -319467,30 +319467,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -319749,30 +319749,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -320282,7 +320282,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(3298), [sym_label] = ACTIONS(3296), [anon_sym_in] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -320300,30 +320299,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -320339,6 +320338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), @@ -320971,30 +320971,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -321911,30 +321911,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -322099,30 +322099,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -322663,30 +322663,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -323037,30 +323037,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -323129,30 +323129,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -323315,30 +323315,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3286), [anon_sym_DASH_DASH] = ACTIONS(3286), [anon_sym_BANG_BANG] = ACTIONS(3286), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -323408,30 +323408,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -323687,30 +323687,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -323873,30 +323873,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -324059,30 +324059,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -324432,30 +324432,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -324618,30 +324618,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -324710,30 +324710,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -324803,30 +324803,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -324896,30 +324896,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -324989,30 +324989,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -325176,30 +325176,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -325268,30 +325268,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -325361,30 +325361,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -325454,30 +325454,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -325547,30 +325547,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3286), [anon_sym_DASH_DASH] = ACTIONS(3286), [anon_sym_BANG_BANG] = ACTIONS(3286), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -325826,30 +325826,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -325919,30 +325919,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -326012,30 +326012,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -326075,7 +326075,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1756), [sym_label] = ACTIONS(1754), [anon_sym_in] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -326093,30 +326092,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -326132,6 +326131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1756), [sym__automatic_semicolon] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), @@ -326292,30 +326292,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -326384,30 +326384,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -326477,30 +326477,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -326663,30 +326663,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -326756,30 +326756,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -326942,30 +326942,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -327035,30 +327035,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -327128,30 +327128,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -327314,30 +327314,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -327407,30 +327407,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1766), [anon_sym_DASH_DASH] = ACTIONS(1766), [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -327500,30 +327500,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3370), [anon_sym_DASH_DASH] = ACTIONS(3370), [anon_sym_BANG_BANG] = ACTIONS(3370), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -327593,30 +327593,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -327749,7 +327749,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1746), [sym_label] = ACTIONS(1744), [anon_sym_in] = ACTIONS(1744), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -327767,30 +327766,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG] = ACTIONS(1744), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -327806,6 +327805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), @@ -327873,30 +327873,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -327965,30 +327965,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -328028,7 +328028,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1684), [sym_label] = ACTIONS(1682), [anon_sym_in] = ACTIONS(1682), - [anon_sym_null] = ACTIONS(1682), [anon_sym_if] = ACTIONS(1682), [anon_sym_else] = ACTIONS(1682), [anon_sym_when] = ACTIONS(1682), @@ -328046,30 +328045,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG] = ACTIONS(1682), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -328085,6 +328084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1682), [anon_sym_false] = ACTIONS(1682), [anon_sym_SQUOTE] = ACTIONS(1684), + [sym_null_literal] = ACTIONS(1682), [sym__backtick_identifier] = ACTIONS(1684), [sym__automatic_semicolon] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), @@ -328244,30 +328244,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -328338,30 +328338,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3286), [anon_sym_DASH_DASH] = ACTIONS(3286), [anon_sym_BANG_BANG] = ACTIONS(3286), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -328431,30 +328431,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3286), [anon_sym_DASH_DASH] = ACTIONS(3286), [anon_sym_BANG_BANG] = ACTIONS(3286), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -328679,7 +328679,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(3298), [sym_label] = ACTIONS(3296), [anon_sym_in] = ACTIONS(3296), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -328697,30 +328696,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG] = ACTIONS(3296), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -328736,6 +328735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), @@ -328865,7 +328865,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(3370), [sym_label] = ACTIONS(3368), [anon_sym_in] = ACTIONS(3368), - [anon_sym_null] = ACTIONS(3368), [anon_sym_if] = ACTIONS(3368), [anon_sym_else] = ACTIONS(3368), [anon_sym_when] = ACTIONS(3368), @@ -328883,30 +328882,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3370), [anon_sym_DASH_DASH] = ACTIONS(3370), [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -328922,6 +328921,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3368), [anon_sym_false] = ACTIONS(3368), [anon_sym_SQUOTE] = ACTIONS(3370), + [sym_null_literal] = ACTIONS(3368), [sym__backtick_identifier] = ACTIONS(3370), [sym__automatic_semicolon] = ACTIONS(3370), [sym_multiline_comment] = ACTIONS(3), @@ -328988,30 +328988,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -329267,30 +329267,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1766), [anon_sym_DASH_DASH] = ACTIONS(1766), [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -329360,30 +329360,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -329423,7 +329423,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1772), [sym_label] = ACTIONS(1770), [anon_sym_in] = ACTIONS(1770), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -329441,30 +329440,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -329480,6 +329479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), @@ -329546,30 +329546,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -329639,30 +329639,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -329732,30 +329732,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -329825,30 +329825,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -329888,7 +329888,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1740), [sym_label] = ACTIONS(1738), [anon_sym_in] = ACTIONS(1738), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -329906,30 +329905,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG] = ACTIONS(1738), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -329945,6 +329944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), @@ -330011,30 +330011,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3370), [anon_sym_DASH_DASH] = ACTIONS(3370), [anon_sym_BANG_BANG] = ACTIONS(3370), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -330074,7 +330074,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1766), [sym_label] = ACTIONS(1764), [anon_sym_in] = ACTIONS(1764), - [anon_sym_null] = ACTIONS(1764), [anon_sym_if] = ACTIONS(1764), [anon_sym_else] = ACTIONS(1764), [anon_sym_when] = ACTIONS(1764), @@ -330092,30 +330091,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1766), [anon_sym_DASH_DASH] = ACTIONS(1766), [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -330131,6 +330130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1764), [anon_sym_false] = ACTIONS(1764), [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_null_literal] = ACTIONS(1764), [sym__backtick_identifier] = ACTIONS(1766), [sym__automatic_semicolon] = ACTIONS(1766), [sym_multiline_comment] = ACTIONS(3), @@ -330198,30 +330198,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -330291,30 +330291,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -330382,30 +330382,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -330475,30 +330475,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -330567,30 +330567,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -330659,30 +330659,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -330751,30 +330751,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -330842,30 +330842,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -330935,30 +330935,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -331027,30 +331027,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -331119,30 +331119,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -331210,30 +331210,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -331303,30 +331303,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -331395,30 +331395,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -331486,30 +331486,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -331578,30 +331578,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -331763,30 +331763,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -331854,30 +331854,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -331947,30 +331947,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -332039,30 +332039,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -332131,30 +332131,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -332223,30 +332223,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -332315,30 +332315,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -332407,30 +332407,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1766), [anon_sym_DASH_DASH] = ACTIONS(1766), [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -332590,30 +332590,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -332683,30 +332683,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3370), [anon_sym_DASH_DASH] = ACTIONS(3370), [anon_sym_BANG_BANG] = ACTIONS(3370), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -332775,30 +332775,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -332866,30 +332866,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -332959,30 +332959,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -333051,30 +333051,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -333143,30 +333143,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -333234,30 +333234,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -333327,30 +333327,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -333511,30 +333511,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1766), [anon_sym_DASH_DASH] = ACTIONS(1766), [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -333602,30 +333602,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -333694,30 +333694,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3286), [anon_sym_DASH_DASH] = ACTIONS(3286), [anon_sym_BANG_BANG] = ACTIONS(3286), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -333879,30 +333879,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -333971,30 +333971,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -334062,30 +334062,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -334154,30 +334154,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -334246,30 +334246,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -334339,30 +334339,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -334431,30 +334431,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3370), [anon_sym_DASH_DASH] = ACTIONS(3370), [anon_sym_BANG_BANG] = ACTIONS(3370), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -334523,30 +334523,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -334706,30 +334706,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3286), [anon_sym_DASH_DASH] = ACTIONS(3286), [anon_sym_BANG_BANG] = ACTIONS(3286), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -334890,30 +334890,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -335166,30 +335166,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -335258,30 +335258,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -335350,30 +335350,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -335442,30 +335442,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -335508,7 +335508,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4002), [anon_sym_AMP_AMP] = ACTIONS(4002), [anon_sym_PIPE_PIPE] = ACTIONS(4002), - [anon_sym_null] = ACTIONS(4000), [anon_sym_if] = ACTIONS(4000), [anon_sym_else] = ACTIONS(4000), [anon_sym_when] = ACTIONS(4000), @@ -335559,6 +335558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4000), [anon_sym_false] = ACTIONS(4000), [anon_sym_SQUOTE] = ACTIONS(4002), + [sym_null_literal] = ACTIONS(4000), [sym__backtick_identifier] = ACTIONS(4002), [sym__automatic_semicolon] = ACTIONS(4002), [sym_safe_nav] = ACTIONS(4002), @@ -335690,7 +335690,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3934), [anon_sym_AMP_AMP] = ACTIONS(3934), [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [anon_sym_null] = ACTIONS(3932), [anon_sym_if] = ACTIONS(3932), [anon_sym_else] = ACTIONS(3932), [anon_sym_when] = ACTIONS(3932), @@ -335741,6 +335740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3932), [anon_sym_false] = ACTIONS(3932), [anon_sym_SQUOTE] = ACTIONS(3934), + [sym_null_literal] = ACTIONS(3932), [sym__backtick_identifier] = ACTIONS(3934), [sym__automatic_semicolon] = ACTIONS(3934), [sym_safe_nav] = ACTIONS(3934), @@ -335807,30 +335807,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -335898,30 +335898,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -335989,30 +335989,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -336080,30 +336080,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -336145,7 +336145,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3952), [anon_sym_AMP_AMP] = ACTIONS(3952), [anon_sym_PIPE_PIPE] = ACTIONS(3952), - [anon_sym_null] = ACTIONS(3950), [anon_sym_if] = ACTIONS(3950), [anon_sym_else] = ACTIONS(3950), [anon_sym_when] = ACTIONS(3950), @@ -336196,6 +336195,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3950), [anon_sym_false] = ACTIONS(3950), [anon_sym_SQUOTE] = ACTIONS(3952), + [sym_null_literal] = ACTIONS(3950), [sym__backtick_identifier] = ACTIONS(3952), [sym__automatic_semicolon] = ACTIONS(3952), [sym_safe_nav] = ACTIONS(3962), @@ -336262,30 +336262,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -336353,30 +336353,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -336444,30 +336444,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -336626,30 +336626,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -336899,30 +336899,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -336990,30 +336990,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -337055,7 +337055,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3952), [anon_sym_AMP_AMP] = ACTIONS(3952), [anon_sym_PIPE_PIPE] = ACTIONS(3952), - [anon_sym_null] = ACTIONS(3950), [anon_sym_if] = ACTIONS(3950), [anon_sym_else] = ACTIONS(3950), [anon_sym_when] = ACTIONS(3950), @@ -337106,6 +337105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3950), [anon_sym_false] = ACTIONS(3950), [anon_sym_SQUOTE] = ACTIONS(3952), + [sym_null_literal] = ACTIONS(3950), [sym__backtick_identifier] = ACTIONS(3952), [sym__automatic_semicolon] = ACTIONS(3952), [sym_safe_nav] = ACTIONS(3962), @@ -337170,30 +337170,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -337260,30 +337260,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -337530,30 +337530,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -337620,30 +337620,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -337710,30 +337710,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -337800,30 +337800,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -337863,7 +337863,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4046), [anon_sym_AMP_AMP] = ACTIONS(4046), [anon_sym_PIPE_PIPE] = ACTIONS(4046), - [anon_sym_null] = ACTIONS(4044), [anon_sym_if] = ACTIONS(4044), [anon_sym_else] = ACTIONS(4044), [anon_sym_when] = ACTIONS(4044), @@ -337916,6 +337915,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4044), [anon_sym_false] = ACTIONS(4044), [anon_sym_SQUOTE] = ACTIONS(4046), + [sym_null_literal] = ACTIONS(4044), [sym__backtick_identifier] = ACTIONS(4046), [sym__automatic_semicolon] = ACTIONS(4046), [sym_safe_nav] = ACTIONS(4046), @@ -337980,30 +337980,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -338070,30 +338070,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -338160,30 +338160,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -338250,30 +338250,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -338339,30 +338339,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -338428,30 +338428,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -338517,30 +338517,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -338606,30 +338606,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -338695,30 +338695,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -338784,30 +338784,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -338848,7 +338848,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4144), [anon_sym_AMP_AMP] = ACTIONS(4144), [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4142), [anon_sym_if] = ACTIONS(4142), [anon_sym_else] = ACTIONS(4142), [anon_sym_when] = ACTIONS(4142), @@ -338899,6 +338898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4142), [anon_sym_false] = ACTIONS(4142), [anon_sym_SQUOTE] = ACTIONS(4144), + [sym_null_literal] = ACTIONS(4142), [sym__backtick_identifier] = ACTIONS(4144), [sym__automatic_semicolon] = ACTIONS(4144), [sym_safe_nav] = ACTIONS(4144), @@ -338962,30 +338962,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -339051,30 +339051,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -339115,7 +339115,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4079), [anon_sym_AMP_AMP] = ACTIONS(4079), [anon_sym_PIPE_PIPE] = ACTIONS(4079), - [anon_sym_null] = ACTIONS(4077), [anon_sym_if] = ACTIONS(4077), [anon_sym_else] = ACTIONS(4077), [anon_sym_when] = ACTIONS(4077), @@ -339166,6 +339165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4077), [anon_sym_false] = ACTIONS(4077), [anon_sym_SQUOTE] = ACTIONS(4079), + [sym_null_literal] = ACTIONS(4077), [sym__backtick_identifier] = ACTIONS(4079), [sym__automatic_semicolon] = ACTIONS(4079), [sym_safe_nav] = ACTIONS(4079), @@ -339229,30 +339229,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -339318,30 +339318,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -339380,7 +339380,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4112), [anon_sym_AMP_AMP] = ACTIONS(4112), [anon_sym_PIPE_PIPE] = ACTIONS(4112), - [anon_sym_null] = ACTIONS(4110), [anon_sym_if] = ACTIONS(4110), [anon_sym_else] = ACTIONS(4110), [anon_sym_when] = ACTIONS(4110), @@ -339433,6 +339432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4110), [anon_sym_false] = ACTIONS(4110), [anon_sym_SQUOTE] = ACTIONS(4112), + [sym_null_literal] = ACTIONS(4110), [sym__backtick_identifier] = ACTIONS(4112), [sym__automatic_semicolon] = ACTIONS(4112), [sym_safe_nav] = ACTIONS(4112), @@ -339496,30 +339496,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -339560,7 +339560,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4131), [anon_sym_AMP_AMP] = ACTIONS(4131), [anon_sym_PIPE_PIPE] = ACTIONS(4131), - [anon_sym_null] = ACTIONS(4129), [anon_sym_if] = ACTIONS(4129), [anon_sym_else] = ACTIONS(4129), [anon_sym_when] = ACTIONS(4129), @@ -339611,6 +339610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4129), [anon_sym_false] = ACTIONS(4129), [anon_sym_SQUOTE] = ACTIONS(4131), + [sym_null_literal] = ACTIONS(4129), [sym__backtick_identifier] = ACTIONS(4131), [sym__automatic_semicolon] = ACTIONS(4131), [sym_safe_nav] = ACTIONS(4131), @@ -339674,30 +339674,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3370), [anon_sym_DASH_DASH] = ACTIONS(3370), [anon_sym_BANG_BANG] = ACTIONS(3370), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -339763,30 +339763,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -339827,7 +339827,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4105), [anon_sym_AMP_AMP] = ACTIONS(4105), [anon_sym_PIPE_PIPE] = ACTIONS(4105), - [anon_sym_null] = ACTIONS(4103), [anon_sym_if] = ACTIONS(4103), [anon_sym_else] = ACTIONS(4103), [anon_sym_when] = ACTIONS(4103), @@ -339878,6 +339877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4103), [anon_sym_false] = ACTIONS(4103), [anon_sym_SQUOTE] = ACTIONS(4105), + [sym_null_literal] = ACTIONS(4103), [sym__backtick_identifier] = ACTIONS(4105), [sym__automatic_semicolon] = ACTIONS(4105), [sym_safe_nav] = ACTIONS(4105), @@ -339916,7 +339916,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4119), [anon_sym_AMP_AMP] = ACTIONS(4119), [anon_sym_PIPE_PIPE] = ACTIONS(4119), - [anon_sym_null] = ACTIONS(4117), [anon_sym_if] = ACTIONS(4117), [anon_sym_else] = ACTIONS(4117), [anon_sym_when] = ACTIONS(4117), @@ -339967,6 +339966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4117), [anon_sym_false] = ACTIONS(4117), [anon_sym_SQUOTE] = ACTIONS(4119), + [sym_null_literal] = ACTIONS(4117), [sym__backtick_identifier] = ACTIONS(4119), [sym__automatic_semicolon] = ACTIONS(4119), [sym_safe_nav] = ACTIONS(4119), @@ -340005,7 +340005,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4089), [anon_sym_AMP_AMP] = ACTIONS(4089), [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_null] = ACTIONS(4087), [anon_sym_if] = ACTIONS(4087), [anon_sym_else] = ACTIONS(4087), [anon_sym_when] = ACTIONS(4087), @@ -340056,6 +340055,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4087), [anon_sym_false] = ACTIONS(4087), [anon_sym_SQUOTE] = ACTIONS(4089), + [sym_null_literal] = ACTIONS(4087), [sym__backtick_identifier] = ACTIONS(4089), [sym__automatic_semicolon] = ACTIONS(4089), [sym_safe_nav] = ACTIONS(4089), @@ -340094,7 +340094,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4095), [anon_sym_AMP_AMP] = ACTIONS(4095), [anon_sym_PIPE_PIPE] = ACTIONS(4095), - [anon_sym_null] = ACTIONS(4093), [anon_sym_if] = ACTIONS(4093), [anon_sym_else] = ACTIONS(4093), [anon_sym_when] = ACTIONS(4093), @@ -340145,6 +340144,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4093), [anon_sym_false] = ACTIONS(4093), [anon_sym_SQUOTE] = ACTIONS(4095), + [sym_null_literal] = ACTIONS(4093), [sym__backtick_identifier] = ACTIONS(4095), [sym__automatic_semicolon] = ACTIONS(4095), [sym_safe_nav] = ACTIONS(4095), @@ -340208,30 +340208,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -340297,30 +340297,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -340450,7 +340450,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4099), [anon_sym_AMP_AMP] = ACTIONS(4099), [anon_sym_PIPE_PIPE] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4097), [anon_sym_if] = ACTIONS(4097), [anon_sym_else] = ACTIONS(4097), [anon_sym_when] = ACTIONS(4097), @@ -340501,6 +340500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4097), [anon_sym_false] = ACTIONS(4097), [anon_sym_SQUOTE] = ACTIONS(4099), + [sym_null_literal] = ACTIONS(4097), [sym__backtick_identifier] = ACTIONS(4099), [sym__automatic_semicolon] = ACTIONS(4099), [sym_safe_nav] = ACTIONS(4099), @@ -340564,30 +340564,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -340653,30 +340653,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -340717,7 +340717,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4125), [anon_sym_AMP_AMP] = ACTIONS(4125), [anon_sym_PIPE_PIPE] = ACTIONS(4125), - [anon_sym_null] = ACTIONS(4123), [anon_sym_if] = ACTIONS(4123), [anon_sym_else] = ACTIONS(4123), [anon_sym_when] = ACTIONS(4123), @@ -340768,6 +340767,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4123), [anon_sym_false] = ACTIONS(4123), [anon_sym_SQUOTE] = ACTIONS(4125), + [sym_null_literal] = ACTIONS(4123), [sym__backtick_identifier] = ACTIONS(4125), [sym__automatic_semicolon] = ACTIONS(4125), [sym_safe_nav] = ACTIONS(4125), @@ -340920,30 +340920,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -341009,30 +341009,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -341098,30 +341098,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -341187,30 +341187,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -341276,30 +341276,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -341340,7 +341340,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4072), [anon_sym_AMP_AMP] = ACTIONS(4072), [anon_sym_PIPE_PIPE] = ACTIONS(4072), - [anon_sym_null] = ACTIONS(4070), [anon_sym_if] = ACTIONS(4070), [anon_sym_else] = ACTIONS(4070), [anon_sym_when] = ACTIONS(4070), @@ -341391,6 +341390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4070), [anon_sym_false] = ACTIONS(4070), [anon_sym_SQUOTE] = ACTIONS(4072), + [sym_null_literal] = ACTIONS(4070), [sym__backtick_identifier] = ACTIONS(4072), [sym__automatic_semicolon] = ACTIONS(4072), [sym_safe_nav] = ACTIONS(4072), @@ -341454,30 +341454,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1766), [anon_sym_DASH_DASH] = ACTIONS(1766), [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -341518,7 +341518,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3943), [anon_sym_AMP_AMP] = ACTIONS(3943), [anon_sym_PIPE_PIPE] = ACTIONS(3943), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(3938), [anon_sym_when] = ACTIONS(3938), @@ -341569,6 +341568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(3943), [sym__automatic_semicolon] = ACTIONS(3943), [sym_safe_nav] = ACTIONS(3943), @@ -341632,30 +341632,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3370), [anon_sym_DASH_DASH] = ACTIONS(3370), [anon_sym_BANG_BANG] = ACTIONS(3370), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -341810,30 +341810,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -341899,30 +341899,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -342077,30 +342077,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1766), [anon_sym_DASH_DASH] = ACTIONS(1766), [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -342166,30 +342166,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -342229,7 +342229,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4266), [anon_sym_AMP_AMP] = ACTIONS(4266), [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_null] = ACTIONS(4264), [anon_sym_if] = ACTIONS(4264), [anon_sym_else] = ACTIONS(4264), [anon_sym_when] = ACTIONS(4264), @@ -342280,6 +342279,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4264), [anon_sym_false] = ACTIONS(4264), [anon_sym_SQUOTE] = ACTIONS(4266), + [sym_null_literal] = ACTIONS(4264), [sym__backtick_identifier] = ACTIONS(4266), [sym__automatic_semicolon] = ACTIONS(4266), [sym_safe_nav] = ACTIONS(4266), @@ -342431,30 +342431,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1766), [anon_sym_DASH_DASH] = ACTIONS(1766), [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -342519,30 +342519,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -342607,30 +342607,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -342669,7 +342669,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4204), [anon_sym_AMP_AMP] = ACTIONS(4204), [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_null] = ACTIONS(4202), [anon_sym_if] = ACTIONS(4202), [anon_sym_else] = ACTIONS(4202), [anon_sym_when] = ACTIONS(4202), @@ -342720,6 +342719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4202), [anon_sym_false] = ACTIONS(4202), [anon_sym_SQUOTE] = ACTIONS(4204), + [sym_null_literal] = ACTIONS(4202), [sym__backtick_identifier] = ACTIONS(4204), [sym__automatic_semicolon] = ACTIONS(4204), [sym_safe_nav] = ACTIONS(4204), @@ -342783,30 +342783,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -342871,30 +342871,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -342933,7 +342933,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3240), [anon_sym_AMP_AMP] = ACTIONS(3240), [anon_sym_PIPE_PIPE] = ACTIONS(3240), - [anon_sym_null] = ACTIONS(3236), [anon_sym_if] = ACTIONS(3236), [anon_sym_else] = ACTIONS(3236), [anon_sym_when] = ACTIONS(3236), @@ -342984,6 +342983,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3236), [anon_sym_false] = ACTIONS(3236), [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), [sym__backtick_identifier] = ACTIONS(3240), [sym__automatic_semicolon] = ACTIONS(3240), [sym_safe_nav] = ACTIONS(3240), @@ -343016,7 +343016,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(3943), [sym_label] = ACTIONS(3938), [anon_sym_in] = ACTIONS(3938), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(3938), [anon_sym_when] = ACTIONS(3938), @@ -343073,6 +343072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(3943), [sym__automatic_semicolon] = ACTIONS(3943), [sym_multiline_comment] = ACTIONS(3), @@ -343109,7 +343109,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4144), [anon_sym_AMP_AMP] = ACTIONS(4144), [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4142), [anon_sym_if] = ACTIONS(4142), [anon_sym_else] = ACTIONS(4142), [anon_sym_when] = ACTIONS(4142), @@ -343160,6 +343159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4142), [anon_sym_false] = ACTIONS(4142), [anon_sym_SQUOTE] = ACTIONS(4144), + [sym_null_literal] = ACTIONS(4142), [sym__backtick_identifier] = ACTIONS(4144), [sym__automatic_semicolon] = ACTIONS(4144), [sym_safe_nav] = ACTIONS(4144), @@ -343223,30 +343223,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -343311,30 +343311,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -343373,7 +343373,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4154), [anon_sym_AMP_AMP] = ACTIONS(4154), [anon_sym_PIPE_PIPE] = ACTIONS(4154), - [anon_sym_null] = ACTIONS(4152), [anon_sym_if] = ACTIONS(4152), [anon_sym_else] = ACTIONS(4152), [anon_sym_when] = ACTIONS(4152), @@ -343424,6 +343423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4152), [anon_sym_false] = ACTIONS(4152), [anon_sym_SQUOTE] = ACTIONS(4154), + [sym_null_literal] = ACTIONS(4152), [sym__backtick_identifier] = ACTIONS(4154), [sym__automatic_semicolon] = ACTIONS(4154), [sym_safe_nav] = ACTIONS(4154), @@ -343462,7 +343462,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4188), [anon_sym_AMP_AMP] = ACTIONS(4188), [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(4190), [anon_sym_when] = ACTIONS(3938), @@ -343513,6 +343512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(4185), [sym_safe_nav] = ACTIONS(4188), [sym_multiline_comment] = ACTIONS(3), @@ -343575,30 +343575,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -343663,30 +343663,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -343725,7 +343725,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4198), [anon_sym_AMP_AMP] = ACTIONS(4198), [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), [anon_sym_if] = ACTIONS(4196), [anon_sym_else] = ACTIONS(4196), [anon_sym_when] = ACTIONS(4196), @@ -343776,6 +343775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4196), [anon_sym_false] = ACTIONS(4196), [anon_sym_SQUOTE] = ACTIONS(4198), + [sym_null_literal] = ACTIONS(4196), [sym__backtick_identifier] = ACTIONS(4198), [sym__automatic_semicolon] = ACTIONS(4198), [sym_safe_nav] = ACTIONS(4198), @@ -343813,7 +343813,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4204), [anon_sym_AMP_AMP] = ACTIONS(4204), [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_null] = ACTIONS(4202), [anon_sym_if] = ACTIONS(4202), [anon_sym_else] = ACTIONS(4202), [anon_sym_when] = ACTIONS(4202), @@ -343864,6 +343863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4202), [anon_sym_false] = ACTIONS(4202), [anon_sym_SQUOTE] = ACTIONS(4204), + [sym_null_literal] = ACTIONS(4202), [sym__backtick_identifier] = ACTIONS(4204), [sym__automatic_semicolon] = ACTIONS(4204), [sym_safe_nav] = ACTIONS(4204), @@ -343927,30 +343927,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -344015,30 +344015,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -344103,30 +344103,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -344165,7 +344165,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4240), [anon_sym_AMP_AMP] = ACTIONS(4240), [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4238), [anon_sym_if] = ACTIONS(4238), [anon_sym_else] = ACTIONS(4238), [anon_sym_when] = ACTIONS(4238), @@ -344216,6 +344215,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4238), [anon_sym_false] = ACTIONS(4238), [anon_sym_SQUOTE] = ACTIONS(4240), + [sym_null_literal] = ACTIONS(4238), [sym__backtick_identifier] = ACTIONS(4240), [sym__automatic_semicolon] = ACTIONS(4240), [sym_safe_nav] = ACTIONS(4240), @@ -344279,30 +344279,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -344367,30 +344367,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -344429,7 +344429,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -344480,6 +344479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -344517,7 +344517,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -344568,6 +344567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -344605,7 +344605,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4160), [anon_sym_AMP_AMP] = ACTIONS(4160), [anon_sym_PIPE_PIPE] = ACTIONS(4160), - [anon_sym_null] = ACTIONS(4158), [anon_sym_if] = ACTIONS(4158), [anon_sym_else] = ACTIONS(4158), [anon_sym_when] = ACTIONS(4158), @@ -344656,6 +344655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4158), [anon_sym_false] = ACTIONS(4158), [anon_sym_SQUOTE] = ACTIONS(4160), + [sym_null_literal] = ACTIONS(4158), [sym__backtick_identifier] = ACTIONS(4160), [sym__automatic_semicolon] = ACTIONS(4160), [sym_safe_nav] = ACTIONS(4160), @@ -344719,30 +344719,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -344781,7 +344781,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4276), [anon_sym_AMP_AMP] = ACTIONS(4276), [anon_sym_PIPE_PIPE] = ACTIONS(4276), - [anon_sym_null] = ACTIONS(4274), [anon_sym_if] = ACTIONS(4274), [anon_sym_else] = ACTIONS(4274), [anon_sym_when] = ACTIONS(4274), @@ -344832,6 +344831,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4274), [anon_sym_false] = ACTIONS(4274), [anon_sym_SQUOTE] = ACTIONS(4276), + [sym_null_literal] = ACTIONS(4274), [sym__backtick_identifier] = ACTIONS(4276), [sym__automatic_semicolon] = ACTIONS(4276), [sym_safe_nav] = ACTIONS(4276), @@ -344895,30 +344895,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -344957,7 +344957,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3230), [anon_sym_AMP_AMP] = ACTIONS(3230), [anon_sym_PIPE_PIPE] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3226), [anon_sym_if] = ACTIONS(3226), [anon_sym_else] = ACTIONS(3226), [anon_sym_when] = ACTIONS(3226), @@ -345008,6 +345007,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3226), [anon_sym_false] = ACTIONS(3226), [anon_sym_SQUOTE] = ACTIONS(3230), + [sym_null_literal] = ACTIONS(3226), [sym__backtick_identifier] = ACTIONS(3230), [sym__automatic_semicolon] = ACTIONS(3230), [sym_safe_nav] = ACTIONS(3230), @@ -345071,30 +345071,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -345159,30 +345159,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -345221,7 +345221,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4252), [anon_sym_AMP_AMP] = ACTIONS(4252), [anon_sym_PIPE_PIPE] = ACTIONS(4252), - [anon_sym_null] = ACTIONS(4250), [anon_sym_if] = ACTIONS(4250), [anon_sym_else] = ACTIONS(4250), [anon_sym_when] = ACTIONS(4250), @@ -345272,6 +345271,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4250), [anon_sym_false] = ACTIONS(4250), [anon_sym_SQUOTE] = ACTIONS(4252), + [sym_null_literal] = ACTIONS(4250), [sym__backtick_identifier] = ACTIONS(4252), [sym__automatic_semicolon] = ACTIONS(4252), [sym_safe_nav] = ACTIONS(4252), @@ -345335,30 +345335,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3370), [anon_sym_DASH_DASH] = ACTIONS(3370), [anon_sym_BANG_BANG] = ACTIONS(3370), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -345423,30 +345423,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -345486,7 +345486,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4220), [anon_sym_AMP_AMP] = ACTIONS(4220), [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(4222), [anon_sym_when] = ACTIONS(3938), @@ -345537,6 +345536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(4217), [sym_safe_nav] = ACTIONS(4220), [sym_multiline_comment] = ACTIONS(3), @@ -345661,7 +345661,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4166), [anon_sym_AMP_AMP] = ACTIONS(4166), [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_null] = ACTIONS(4164), [anon_sym_if] = ACTIONS(4164), [anon_sym_else] = ACTIONS(4164), [anon_sym_when] = ACTIONS(4164), @@ -345712,6 +345711,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4164), [anon_sym_false] = ACTIONS(4164), [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4164), [sym__backtick_identifier] = ACTIONS(4166), [sym__automatic_semicolon] = ACTIONS(4166), [sym_safe_nav] = ACTIONS(4166), @@ -345749,7 +345749,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4272), [anon_sym_AMP_AMP] = ACTIONS(4272), [anon_sym_PIPE_PIPE] = ACTIONS(4272), - [anon_sym_null] = ACTIONS(4270), [anon_sym_if] = ACTIONS(4270), [anon_sym_else] = ACTIONS(4270), [anon_sym_when] = ACTIONS(4270), @@ -345800,6 +345799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4270), [anon_sym_false] = ACTIONS(4270), [anon_sym_SQUOTE] = ACTIONS(4272), + [sym_null_literal] = ACTIONS(4270), [sym__backtick_identifier] = ACTIONS(4272), [sym__automatic_semicolon] = ACTIONS(4272), [sym_safe_nav] = ACTIONS(4272), @@ -345863,30 +345863,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1766), [anon_sym_DASH_DASH] = ACTIONS(1766), [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -345925,7 +345925,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4125), [anon_sym_AMP_AMP] = ACTIONS(4125), [anon_sym_PIPE_PIPE] = ACTIONS(4125), - [anon_sym_null] = ACTIONS(4123), [anon_sym_if] = ACTIONS(4123), [anon_sym_else] = ACTIONS(4123), [anon_sym_when] = ACTIONS(4123), @@ -345976,6 +345975,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4123), [anon_sym_false] = ACTIONS(4123), [anon_sym_SQUOTE] = ACTIONS(4125), + [sym_null_literal] = ACTIONS(4123), [sym__backtick_identifier] = ACTIONS(4125), [sym__automatic_semicolon] = ACTIONS(4125), [sym_safe_nav] = ACTIONS(4125), @@ -346008,7 +346008,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4095), [sym_label] = ACTIONS(4093), [anon_sym_in] = ACTIONS(4093), - [anon_sym_null] = ACTIONS(4093), [anon_sym_if] = ACTIONS(4093), [anon_sym_else] = ACTIONS(4093), [anon_sym_when] = ACTIONS(4093), @@ -346065,6 +346064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4093), [anon_sym_false] = ACTIONS(4093), [anon_sym_SQUOTE] = ACTIONS(4095), + [sym_null_literal] = ACTIONS(4093), [sym__backtick_identifier] = ACTIONS(4095), [sym__automatic_semicolon] = ACTIONS(4095), [sym_multiline_comment] = ACTIONS(3), @@ -346127,30 +346127,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -346215,30 +346215,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3370), [anon_sym_DASH_DASH] = ACTIONS(3370), [anon_sym_BANG_BANG] = ACTIONS(3370), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -346277,7 +346277,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4236), [anon_sym_AMP_AMP] = ACTIONS(4236), [anon_sym_PIPE_PIPE] = ACTIONS(4236), - [anon_sym_null] = ACTIONS(4234), [anon_sym_if] = ACTIONS(4234), [anon_sym_else] = ACTIONS(4234), [anon_sym_when] = ACTIONS(4234), @@ -346328,6 +346327,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4234), [anon_sym_false] = ACTIONS(4234), [anon_sym_SQUOTE] = ACTIONS(4236), + [sym_null_literal] = ACTIONS(4234), [sym__backtick_identifier] = ACTIONS(4236), [sym__automatic_semicolon] = ACTIONS(4236), [sym_safe_nav] = ACTIONS(4236), @@ -346366,7 +346366,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4258), [anon_sym_AMP_AMP] = ACTIONS(4258), [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), [anon_sym_if] = ACTIONS(4256), [anon_sym_else] = ACTIONS(4256), [anon_sym_when] = ACTIONS(4256), @@ -346417,6 +346416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4256), [anon_sym_false] = ACTIONS(4256), [anon_sym_SQUOTE] = ACTIONS(4258), + [sym_null_literal] = ACTIONS(4256), [sym__backtick_identifier] = ACTIONS(4258), [sym_safe_nav] = ACTIONS(4258), [sym_multiline_comment] = ACTIONS(3), @@ -346453,7 +346453,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4131), [anon_sym_AMP_AMP] = ACTIONS(4131), [anon_sym_PIPE_PIPE] = ACTIONS(4131), - [anon_sym_null] = ACTIONS(4129), [anon_sym_if] = ACTIONS(4129), [anon_sym_else] = ACTIONS(4129), [anon_sym_when] = ACTIONS(4129), @@ -346504,6 +346503,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4129), [anon_sym_false] = ACTIONS(4129), [anon_sym_SQUOTE] = ACTIONS(4131), + [sym_null_literal] = ACTIONS(4129), [sym__backtick_identifier] = ACTIONS(4131), [sym__automatic_semicolon] = ACTIONS(4131), [sym_safe_nav] = ACTIONS(4131), @@ -346541,7 +346541,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4246), [anon_sym_AMP_AMP] = ACTIONS(4246), [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [anon_sym_null] = ACTIONS(4244), [anon_sym_if] = ACTIONS(4244), [anon_sym_else] = ACTIONS(4244), [anon_sym_when] = ACTIONS(4244), @@ -346592,6 +346591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4244), [anon_sym_false] = ACTIONS(4244), [anon_sym_SQUOTE] = ACTIONS(4246), + [sym_null_literal] = ACTIONS(4244), [sym__backtick_identifier] = ACTIONS(4246), [sym__automatic_semicolon] = ACTIONS(4246), [sym_safe_nav] = ACTIONS(4246), @@ -346655,30 +346655,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -346717,7 +346717,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4150), [anon_sym_AMP_AMP] = ACTIONS(4150), [anon_sym_PIPE_PIPE] = ACTIONS(4150), - [anon_sym_null] = ACTIONS(4148), [anon_sym_if] = ACTIONS(4148), [anon_sym_else] = ACTIONS(4148), [anon_sym_when] = ACTIONS(4148), @@ -346768,6 +346767,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4148), [anon_sym_false] = ACTIONS(4148), [anon_sym_SQUOTE] = ACTIONS(4150), + [sym_null_literal] = ACTIONS(4148), [sym__backtick_identifier] = ACTIONS(4150), [sym__automatic_semicolon] = ACTIONS(4150), [sym_safe_nav] = ACTIONS(4150), @@ -346831,30 +346831,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -346893,7 +346893,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4262), [anon_sym_AMP_AMP] = ACTIONS(4262), [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_null] = ACTIONS(4260), [anon_sym_if] = ACTIONS(4260), [anon_sym_else] = ACTIONS(4260), [anon_sym_when] = ACTIONS(4260), @@ -346944,6 +346943,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4260), [anon_sym_false] = ACTIONS(4260), [anon_sym_SQUOTE] = ACTIONS(4262), + [sym_null_literal] = ACTIONS(4260), [sym__backtick_identifier] = ACTIONS(4262), [sym__automatic_semicolon] = ACTIONS(4262), [sym_safe_nav] = ACTIONS(4262), @@ -347007,30 +347007,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -347069,7 +347069,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4232), [anon_sym_AMP_AMP] = ACTIONS(4232), [anon_sym_PIPE_PIPE] = ACTIONS(4232), - [anon_sym_null] = ACTIONS(4230), [anon_sym_if] = ACTIONS(4230), [anon_sym_else] = ACTIONS(4230), [anon_sym_when] = ACTIONS(4230), @@ -347120,6 +347119,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4230), [anon_sym_false] = ACTIONS(4230), [anon_sym_SQUOTE] = ACTIONS(4232), + [sym_null_literal] = ACTIONS(4230), [sym__backtick_identifier] = ACTIONS(4232), [sym__automatic_semicolon] = ACTIONS(4232), [sym_safe_nav] = ACTIONS(4232), @@ -347157,7 +347157,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4079), [anon_sym_AMP_AMP] = ACTIONS(4079), [anon_sym_PIPE_PIPE] = ACTIONS(4079), - [anon_sym_null] = ACTIONS(4077), [anon_sym_if] = ACTIONS(4077), [anon_sym_else] = ACTIONS(4077), [anon_sym_when] = ACTIONS(4077), @@ -347208,6 +347207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4077), [anon_sym_false] = ACTIONS(4077), [anon_sym_SQUOTE] = ACTIONS(4079), + [sym_null_literal] = ACTIONS(4077), [sym__backtick_identifier] = ACTIONS(4079), [sym__automatic_semicolon] = ACTIONS(4079), [sym_safe_nav] = ACTIONS(4079), @@ -347271,30 +347271,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -347333,7 +347333,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4210), [anon_sym_AMP_AMP] = ACTIONS(4210), [anon_sym_PIPE_PIPE] = ACTIONS(4210), - [anon_sym_null] = ACTIONS(4208), [anon_sym_if] = ACTIONS(4208), [anon_sym_else] = ACTIONS(4208), [anon_sym_when] = ACTIONS(4208), @@ -347384,6 +347383,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4208), [anon_sym_false] = ACTIONS(4208), [anon_sym_SQUOTE] = ACTIONS(4210), + [sym_null_literal] = ACTIONS(4208), [sym__backtick_identifier] = ACTIONS(4210), [sym__automatic_semicolon] = ACTIONS(4210), [sym_safe_nav] = ACTIONS(4210), @@ -347421,7 +347421,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4166), [anon_sym_AMP_AMP] = ACTIONS(4166), [anon_sym_PIPE_PIPE] = ACTIONS(4166), - [anon_sym_null] = ACTIONS(4164), [anon_sym_if] = ACTIONS(4164), [anon_sym_else] = ACTIONS(4164), [anon_sym_when] = ACTIONS(4164), @@ -347472,6 +347471,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4164), [anon_sym_false] = ACTIONS(4164), [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4164), [sym__backtick_identifier] = ACTIONS(4166), [sym__automatic_semicolon] = ACTIONS(4166), [sym_safe_nav] = ACTIONS(4166), @@ -347510,7 +347510,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4095), [anon_sym_AMP_AMP] = ACTIONS(4095), [anon_sym_PIPE_PIPE] = ACTIONS(4095), - [anon_sym_null] = ACTIONS(4093), [anon_sym_if] = ACTIONS(4093), [anon_sym_else] = ACTIONS(4093), [anon_sym_when] = ACTIONS(4093), @@ -347561,6 +347560,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4093), [anon_sym_false] = ACTIONS(4093), [anon_sym_SQUOTE] = ACTIONS(4095), + [sym_null_literal] = ACTIONS(4093), [sym__backtick_identifier] = ACTIONS(4095), [sym_safe_nav] = ACTIONS(4095), [sym_multiline_comment] = ACTIONS(3), @@ -347597,7 +347597,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4144), [anon_sym_AMP_AMP] = ACTIONS(4144), [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4142), [anon_sym_if] = ACTIONS(4142), [anon_sym_else] = ACTIONS(4142), [anon_sym_when] = ACTIONS(4142), @@ -347648,6 +347647,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4142), [anon_sym_false] = ACTIONS(4142), [anon_sym_SQUOTE] = ACTIONS(4144), + [sym_null_literal] = ACTIONS(4142), [sym__backtick_identifier] = ACTIONS(4144), [sym__automatic_semicolon] = ACTIONS(4144), [sym_safe_nav] = ACTIONS(4144), @@ -347680,7 +347680,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4119), [sym_label] = ACTIONS(4117), [anon_sym_in] = ACTIONS(4117), - [anon_sym_null] = ACTIONS(4117), [anon_sym_if] = ACTIONS(4117), [anon_sym_else] = ACTIONS(4117), [anon_sym_when] = ACTIONS(4117), @@ -347737,6 +347736,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4117), [anon_sym_false] = ACTIONS(4117), [anon_sym_SQUOTE] = ACTIONS(4119), + [sym_null_literal] = ACTIONS(4117), [sym__backtick_identifier] = ACTIONS(4119), [sym__automatic_semicolon] = ACTIONS(4119), [sym_multiline_comment] = ACTIONS(3), @@ -347773,7 +347773,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4099), [anon_sym_AMP_AMP] = ACTIONS(4099), [anon_sym_PIPE_PIPE] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4097), [anon_sym_if] = ACTIONS(4097), [anon_sym_else] = ACTIONS(4097), [anon_sym_when] = ACTIONS(4097), @@ -347824,6 +347823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4097), [anon_sym_false] = ACTIONS(4097), [anon_sym_SQUOTE] = ACTIONS(4099), + [sym_null_literal] = ACTIONS(4097), [sym__backtick_identifier] = ACTIONS(4099), [sym__automatic_semicolon] = ACTIONS(4099), [sym_safe_nav] = ACTIONS(4099), @@ -347949,7 +347949,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4089), [anon_sym_AMP_AMP] = ACTIONS(4089), [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_null] = ACTIONS(4087), [anon_sym_if] = ACTIONS(4087), [anon_sym_else] = ACTIONS(4087), [anon_sym_when] = ACTIONS(4087), @@ -348000,6 +347999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4087), [anon_sym_false] = ACTIONS(4087), [anon_sym_SQUOTE] = ACTIONS(4089), + [sym_null_literal] = ACTIONS(4087), [sym__backtick_identifier] = ACTIONS(4089), [sym__automatic_semicolon] = ACTIONS(4089), [sym_safe_nav] = ACTIONS(4089), @@ -348037,7 +348037,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4089), [anon_sym_AMP_AMP] = ACTIONS(4089), [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_null] = ACTIONS(4087), [anon_sym_if] = ACTIONS(4087), [anon_sym_else] = ACTIONS(4087), [anon_sym_when] = ACTIONS(4087), @@ -348088,6 +348087,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4087), [anon_sym_false] = ACTIONS(4087), [anon_sym_SQUOTE] = ACTIONS(4089), + [sym_null_literal] = ACTIONS(4087), [sym__backtick_identifier] = ACTIONS(4089), [sym__automatic_semicolon] = ACTIONS(4089), [sym_safe_nav] = ACTIONS(4089), @@ -348125,7 +348125,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4099), [anon_sym_AMP_AMP] = ACTIONS(4099), [anon_sym_PIPE_PIPE] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4097), [anon_sym_if] = ACTIONS(4097), [anon_sym_else] = ACTIONS(4097), [anon_sym_when] = ACTIONS(4097), @@ -348176,6 +348175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4097), [anon_sym_false] = ACTIONS(4097), [anon_sym_SQUOTE] = ACTIONS(4099), + [sym_null_literal] = ACTIONS(4097), [sym__backtick_identifier] = ACTIONS(4099), [sym__automatic_semicolon] = ACTIONS(4099), [sym_safe_nav] = ACTIONS(4099), @@ -348213,7 +348213,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4282), [anon_sym_AMP_AMP] = ACTIONS(4282), [anon_sym_PIPE_PIPE] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4280), [anon_sym_if] = ACTIONS(4280), [anon_sym_else] = ACTIONS(4280), [anon_sym_when] = ACTIONS(4280), @@ -348264,6 +348263,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4280), [anon_sym_false] = ACTIONS(4280), [anon_sym_SQUOTE] = ACTIONS(4282), + [sym_null_literal] = ACTIONS(4280), [sym__backtick_identifier] = ACTIONS(4282), [sym__automatic_semicolon] = ACTIONS(4282), [sym_safe_nav] = ACTIONS(4282), @@ -348327,30 +348327,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -348388,7 +348388,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4105), [anon_sym_AMP_AMP] = ACTIONS(4105), [anon_sym_PIPE_PIPE] = ACTIONS(4105), - [anon_sym_null] = ACTIONS(4103), [anon_sym_if] = ACTIONS(4103), [anon_sym_else] = ACTIONS(4103), [anon_sym_when] = ACTIONS(4103), @@ -348439,6 +348438,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4103), [anon_sym_false] = ACTIONS(4103), [anon_sym_SQUOTE] = ACTIONS(4105), + [sym_null_literal] = ACTIONS(4103), [sym__backtick_identifier] = ACTIONS(4105), [sym__automatic_semicolon] = ACTIONS(4105), [sym_safe_nav] = ACTIONS(4105), @@ -348557,7 +348557,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4138), [sym_label] = ACTIONS(4136), [anon_sym_in] = ACTIONS(4136), - [anon_sym_null] = ACTIONS(4136), [anon_sym_if] = ACTIONS(4136), [anon_sym_else] = ACTIONS(4136), [anon_sym_when] = ACTIONS(4136), @@ -348614,6 +348613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4136), [anon_sym_false] = ACTIONS(4136), [anon_sym_SQUOTE] = ACTIONS(4138), + [sym_null_literal] = ACTIONS(4136), [sym__backtick_identifier] = ACTIONS(4138), [sym__automatic_semicolon] = ACTIONS(4138), [sym_multiline_comment] = ACTIONS(3), @@ -348649,7 +348649,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4232), [anon_sym_AMP_AMP] = ACTIONS(4232), [anon_sym_PIPE_PIPE] = ACTIONS(4232), - [anon_sym_null] = ACTIONS(4230), [anon_sym_if] = ACTIONS(4230), [anon_sym_else] = ACTIONS(4230), [anon_sym_when] = ACTIONS(4230), @@ -348700,6 +348699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4230), [anon_sym_false] = ACTIONS(4230), [anon_sym_SQUOTE] = ACTIONS(4232), + [sym_null_literal] = ACTIONS(4230), [sym__backtick_identifier] = ACTIONS(4232), [sym__automatic_semicolon] = ACTIONS(4232), [sym_safe_nav] = ACTIONS(4232), @@ -348761,30 +348761,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -348935,30 +348935,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3370), [anon_sym_DASH_DASH] = ACTIONS(3370), [anon_sym_BANG_BANG] = ACTIONS(3370), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -349022,30 +349022,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -349079,7 +349079,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4105), [sym_label] = ACTIONS(4103), [anon_sym_in] = ACTIONS(4103), - [anon_sym_null] = ACTIONS(4103), [anon_sym_if] = ACTIONS(4103), [anon_sym_else] = ACTIONS(4103), [anon_sym_when] = ACTIONS(4103), @@ -349136,6 +349135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4103), [anon_sym_false] = ACTIONS(4103), [anon_sym_SQUOTE] = ACTIONS(4105), + [sym_null_literal] = ACTIONS(4103), [sym__backtick_identifier] = ACTIONS(4105), [sym__automatic_semicolon] = ACTIONS(4105), [sym_multiline_comment] = ACTIONS(3), @@ -349196,30 +349196,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1766), [anon_sym_DASH_DASH] = ACTIONS(1766), [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -349258,7 +349258,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4144), [anon_sym_AMP_AMP] = ACTIONS(4144), [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4142), [anon_sym_if] = ACTIONS(4142), [anon_sym_else] = ACTIONS(4142), [anon_sym_when] = ACTIONS(4142), @@ -349309,6 +349308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4142), [anon_sym_false] = ACTIONS(4142), [anon_sym_SQUOTE] = ACTIONS(4144), + [sym_null_literal] = ACTIONS(4142), [sym__backtick_identifier] = ACTIONS(4144), [sym__automatic_semicolon] = ACTIONS(4144), [sym_safe_nav] = ACTIONS(4144), @@ -349370,30 +349370,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1766), [anon_sym_DASH_DASH] = ACTIONS(1766), [anon_sym_BANG_BANG] = ACTIONS(1766), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -349457,30 +349457,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -349544,30 +349544,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -349693,7 +349693,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4099), [anon_sym_AMP_AMP] = ACTIONS(4099), [anon_sym_PIPE_PIPE] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4097), [anon_sym_if] = ACTIONS(4097), [anon_sym_else] = ACTIONS(4097), [anon_sym_when] = ACTIONS(4097), @@ -349744,6 +349743,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4097), [anon_sym_false] = ACTIONS(4097), [anon_sym_SQUOTE] = ACTIONS(4099), + [sym_null_literal] = ACTIONS(4097), [sym__backtick_identifier] = ACTIONS(4099), [sym__automatic_semicolon] = ACTIONS(4099), [sym_safe_nav] = ACTIONS(4099), @@ -349775,7 +349775,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4072), [sym_label] = ACTIONS(4070), [anon_sym_in] = ACTIONS(4070), - [anon_sym_null] = ACTIONS(4070), [anon_sym_if] = ACTIONS(4070), [anon_sym_else] = ACTIONS(4070), [anon_sym_when] = ACTIONS(4070), @@ -349832,6 +349831,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4070), [anon_sym_false] = ACTIONS(4070), [anon_sym_SQUOTE] = ACTIONS(4072), + [sym_null_literal] = ACTIONS(4070), [sym__backtick_identifier] = ACTIONS(4072), [sym__automatic_semicolon] = ACTIONS(4072), [sym_multiline_comment] = ACTIONS(3), @@ -349892,30 +349892,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3370), [anon_sym_DASH_DASH] = ACTIONS(3370), [anon_sym_BANG_BANG] = ACTIONS(3370), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -349954,7 +349954,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4089), [anon_sym_AMP_AMP] = ACTIONS(4089), [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_null] = ACTIONS(4087), [anon_sym_if] = ACTIONS(4087), [anon_sym_else] = ACTIONS(4087), [anon_sym_when] = ACTIONS(4087), @@ -350005,6 +350004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4087), [anon_sym_false] = ACTIONS(4087), [anon_sym_SQUOTE] = ACTIONS(4089), + [sym_null_literal] = ACTIONS(4087), [sym__backtick_identifier] = ACTIONS(4089), [sym__automatic_semicolon] = ACTIONS(4089), [sym_safe_nav] = ACTIONS(4089), @@ -350066,30 +350066,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -350128,7 +350128,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4262), [anon_sym_AMP_AMP] = ACTIONS(4262), [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_null] = ACTIONS(4260), [anon_sym_if] = ACTIONS(4260), [anon_sym_else] = ACTIONS(4260), [anon_sym_when] = ACTIONS(4260), @@ -350179,6 +350178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4260), [anon_sym_false] = ACTIONS(4260), [anon_sym_SQUOTE] = ACTIONS(4262), + [sym_null_literal] = ACTIONS(4260), [sym__backtick_identifier] = ACTIONS(4262), [sym__automatic_semicolon] = ACTIONS(4262), [sym_safe_nav] = ACTIONS(4262), @@ -350240,30 +350240,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -350327,30 +350327,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -350384,7 +350384,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4131), [sym_label] = ACTIONS(4129), [anon_sym_in] = ACTIONS(4129), - [anon_sym_null] = ACTIONS(4129), [anon_sym_if] = ACTIONS(4129), [anon_sym_else] = ACTIONS(4129), [anon_sym_when] = ACTIONS(4129), @@ -350441,6 +350440,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4129), [anon_sym_false] = ACTIONS(4129), [anon_sym_SQUOTE] = ACTIONS(4131), + [sym_null_literal] = ACTIONS(4129), [sym__backtick_identifier] = ACTIONS(4131), [sym__automatic_semicolon] = ACTIONS(4131), [sym_multiline_comment] = ACTIONS(3), @@ -350476,7 +350476,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4445), [anon_sym_AMP_AMP] = ACTIONS(4445), [anon_sym_PIPE_PIPE] = ACTIONS(4445), - [anon_sym_null] = ACTIONS(4443), [anon_sym_if] = ACTIONS(4443), [anon_sym_else] = ACTIONS(4443), [anon_sym_when] = ACTIONS(4443), @@ -350527,6 +350526,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4443), [anon_sym_false] = ACTIONS(4443), [anon_sym_SQUOTE] = ACTIONS(4445), + [sym_null_literal] = ACTIONS(4443), [sym__backtick_identifier] = ACTIONS(4445), [sym__automatic_semicolon] = ACTIONS(4445), [sym_safe_nav] = ACTIONS(4445), @@ -350563,7 +350563,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4422), [anon_sym_AMP_AMP] = ACTIONS(4422), [anon_sym_PIPE_PIPE] = ACTIONS(4422), - [anon_sym_null] = ACTIONS(4420), [anon_sym_if] = ACTIONS(4420), [anon_sym_else] = ACTIONS(4420), [anon_sym_when] = ACTIONS(4420), @@ -350614,6 +350613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4420), [anon_sym_false] = ACTIONS(4420), [anon_sym_SQUOTE] = ACTIONS(4422), + [sym_null_literal] = ACTIONS(4420), [sym__backtick_identifier] = ACTIONS(4422), [sym__automatic_semicolon] = ACTIONS(4422), [sym_safe_nav] = ACTIONS(4422), @@ -350650,7 +350650,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4262), [anon_sym_AMP_AMP] = ACTIONS(4262), [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_null] = ACTIONS(4260), [anon_sym_if] = ACTIONS(4260), [anon_sym_else] = ACTIONS(4260), [anon_sym_when] = ACTIONS(4260), @@ -350701,6 +350700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4260), [anon_sym_false] = ACTIONS(4260), [anon_sym_SQUOTE] = ACTIONS(4262), + [sym_null_literal] = ACTIONS(4260), [sym__backtick_identifier] = ACTIONS(4262), [sym__automatic_semicolon] = ACTIONS(4262), [sym_safe_nav] = ACTIONS(4262), @@ -350737,7 +350737,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4079), [anon_sym_AMP_AMP] = ACTIONS(4079), [anon_sym_PIPE_PIPE] = ACTIONS(4079), - [anon_sym_null] = ACTIONS(4077), [anon_sym_if] = ACTIONS(4077), [anon_sym_else] = ACTIONS(4077), [anon_sym_when] = ACTIONS(4077), @@ -350788,6 +350787,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4077), [anon_sym_false] = ACTIONS(4077), [anon_sym_SQUOTE] = ACTIONS(4079), + [sym_null_literal] = ACTIONS(4077), [sym__backtick_identifier] = ACTIONS(4079), [sym__automatic_semicolon] = ACTIONS(4079), [sym_safe_nav] = ACTIONS(4079), @@ -350849,30 +350849,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1756), [anon_sym_DASH_DASH] = ACTIONS(1756), [anon_sym_BANG_BANG] = ACTIONS(1756), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -350911,7 +350911,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4232), [anon_sym_AMP_AMP] = ACTIONS(4232), [anon_sym_PIPE_PIPE] = ACTIONS(4232), - [anon_sym_null] = ACTIONS(4230), [anon_sym_if] = ACTIONS(4230), [anon_sym_else] = ACTIONS(4230), [anon_sym_when] = ACTIONS(4230), @@ -350962,6 +350961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4230), [anon_sym_false] = ACTIONS(4230), [anon_sym_SQUOTE] = ACTIONS(4232), + [sym_null_literal] = ACTIONS(4230), [sym__backtick_identifier] = ACTIONS(4232), [sym__automatic_semicolon] = ACTIONS(4232), [sym_safe_nav] = ACTIONS(4232), @@ -351085,7 +351085,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4449), [anon_sym_AMP_AMP] = ACTIONS(4449), [anon_sym_PIPE_PIPE] = ACTIONS(4449), - [anon_sym_null] = ACTIONS(4447), [anon_sym_if] = ACTIONS(4447), [anon_sym_else] = ACTIONS(4447), [anon_sym_when] = ACTIONS(4447), @@ -351136,6 +351135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4447), [anon_sym_false] = ACTIONS(4447), [anon_sym_SQUOTE] = ACTIONS(4449), + [sym_null_literal] = ACTIONS(4447), [sym__backtick_identifier] = ACTIONS(4449), [sym__automatic_semicolon] = ACTIONS(4449), [sym_safe_nav] = ACTIONS(4449), @@ -351259,7 +351259,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4361), [anon_sym_AMP_AMP] = ACTIONS(4361), [anon_sym_PIPE_PIPE] = ACTIONS(4361), - [anon_sym_null] = ACTIONS(4359), [anon_sym_if] = ACTIONS(4359), [anon_sym_else] = ACTIONS(4359), [anon_sym_when] = ACTIONS(4359), @@ -351310,6 +351309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4359), [anon_sym_false] = ACTIONS(4359), [anon_sym_SQUOTE] = ACTIONS(4361), + [sym_null_literal] = ACTIONS(4359), [sym__backtick_identifier] = ACTIONS(4361), [sym__automatic_semicolon] = ACTIONS(4361), [sym_safe_nav] = ACTIONS(4361), @@ -351346,7 +351346,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3230), [anon_sym_AMP_AMP] = ACTIONS(3230), [anon_sym_PIPE_PIPE] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3226), [anon_sym_if] = ACTIONS(3226), [anon_sym_else] = ACTIONS(3226), [anon_sym_when] = ACTIONS(3226), @@ -351397,6 +351396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3226), [anon_sym_false] = ACTIONS(3226), [anon_sym_SQUOTE] = ACTIONS(3230), + [sym_null_literal] = ACTIONS(3226), [sym__backtick_identifier] = ACTIONS(3230), [sym__automatic_semicolon] = ACTIONS(3230), [sym_safe_nav] = ACTIONS(3230), @@ -351433,7 +351433,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4198), [anon_sym_AMP_AMP] = ACTIONS(4198), [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), [anon_sym_if] = ACTIONS(4196), [anon_sym_else] = ACTIONS(4196), [anon_sym_when] = ACTIONS(4196), @@ -351484,6 +351483,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4196), [anon_sym_false] = ACTIONS(4196), [anon_sym_SQUOTE] = ACTIONS(4198), + [sym_null_literal] = ACTIONS(4196), [sym__backtick_identifier] = ACTIONS(4198), [sym__automatic_semicolon] = ACTIONS(4198), [sym_safe_nav] = ACTIONS(4198), @@ -351520,7 +351520,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4144), [anon_sym_AMP_AMP] = ACTIONS(4144), [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4142), [anon_sym_if] = ACTIONS(4142), [anon_sym_else] = ACTIONS(4142), [anon_sym_when] = ACTIONS(4142), @@ -351571,6 +351570,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4142), [anon_sym_false] = ACTIONS(4142), [anon_sym_SQUOTE] = ACTIONS(4144), + [sym_null_literal] = ACTIONS(4142), [sym__backtick_identifier] = ACTIONS(4144), [sym__automatic_semicolon] = ACTIONS(4144), [sym_safe_nav] = ACTIONS(4144), @@ -351607,7 +351607,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4349), [anon_sym_AMP_AMP] = ACTIONS(4349), [anon_sym_PIPE_PIPE] = ACTIONS(4349), - [anon_sym_null] = ACTIONS(4347), [anon_sym_if] = ACTIONS(4347), [anon_sym_else] = ACTIONS(4347), [anon_sym_when] = ACTIONS(4347), @@ -351658,6 +351657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4347), [anon_sym_false] = ACTIONS(4347), [anon_sym_SQUOTE] = ACTIONS(4349), + [sym_null_literal] = ACTIONS(4347), [sym__backtick_identifier] = ACTIONS(4349), [sym__automatic_semicolon] = ACTIONS(4349), [sym_safe_nav] = ACTIONS(4349), @@ -351694,7 +351694,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4418), [anon_sym_AMP_AMP] = ACTIONS(4418), [anon_sym_PIPE_PIPE] = ACTIONS(4418), - [anon_sym_null] = ACTIONS(4416), [anon_sym_if] = ACTIONS(4416), [anon_sym_else] = ACTIONS(4416), [anon_sym_when] = ACTIONS(4416), @@ -351745,6 +351744,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4416), [anon_sym_false] = ACTIONS(4416), [anon_sym_SQUOTE] = ACTIONS(4418), + [sym_null_literal] = ACTIONS(4416), [sym__backtick_identifier] = ACTIONS(4418), [sym__automatic_semicolon] = ACTIONS(4418), [sym_safe_nav] = ACTIONS(4418), @@ -351806,30 +351806,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -351893,30 +351893,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -351955,7 +351955,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4361), [anon_sym_AMP_AMP] = ACTIONS(4361), [anon_sym_PIPE_PIPE] = ACTIONS(4361), - [anon_sym_null] = ACTIONS(4359), [anon_sym_if] = ACTIONS(4359), [anon_sym_else] = ACTIONS(4359), [anon_sym_when] = ACTIONS(4359), @@ -352006,6 +352005,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4359), [anon_sym_false] = ACTIONS(4359), [anon_sym_SQUOTE] = ACTIONS(4361), + [sym_null_literal] = ACTIONS(4359), [sym__backtick_identifier] = ACTIONS(4361), [sym__automatic_semicolon] = ACTIONS(4361), [sym_safe_nav] = ACTIONS(4361), @@ -352067,30 +352067,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -352154,30 +352154,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1746), [anon_sym_DASH_DASH] = ACTIONS(1746), [anon_sym_BANG_BANG] = ACTIONS(1746), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -352301,7 +352301,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4400), [anon_sym_AMP_AMP] = ACTIONS(4400), [anon_sym_PIPE_PIPE] = ACTIONS(4400), - [anon_sym_null] = ACTIONS(4398), [anon_sym_if] = ACTIONS(4398), [anon_sym_else] = ACTIONS(4398), [anon_sym_when] = ACTIONS(4398), @@ -352354,6 +352353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4398), [anon_sym_false] = ACTIONS(4398), [anon_sym_SQUOTE] = ACTIONS(4400), + [sym_null_literal] = ACTIONS(4398), [sym__backtick_identifier] = ACTIONS(4400), [sym__automatic_semicolon] = ACTIONS(4400), [sym_safe_nav] = ACTIONS(4400), @@ -352390,7 +352390,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4453), [anon_sym_AMP_AMP] = ACTIONS(4453), [anon_sym_PIPE_PIPE] = ACTIONS(4453), - [anon_sym_null] = ACTIONS(4451), [anon_sym_if] = ACTIONS(4451), [anon_sym_else] = ACTIONS(4451), [anon_sym_when] = ACTIONS(4451), @@ -352441,6 +352440,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4451), [anon_sym_false] = ACTIONS(4451), [anon_sym_SQUOTE] = ACTIONS(4453), + [sym_null_literal] = ACTIONS(4451), [sym__backtick_identifier] = ACTIONS(4453), [sym__automatic_semicolon] = ACTIONS(4453), [sym_safe_nav] = ACTIONS(4453), @@ -352477,7 +352477,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4154), [anon_sym_AMP_AMP] = ACTIONS(4154), [anon_sym_PIPE_PIPE] = ACTIONS(4154), - [anon_sym_null] = ACTIONS(4152), [anon_sym_if] = ACTIONS(4152), [anon_sym_else] = ACTIONS(4152), [anon_sym_when] = ACTIONS(4152), @@ -352528,6 +352527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4152), [anon_sym_false] = ACTIONS(4152), [anon_sym_SQUOTE] = ACTIONS(4154), + [sym_null_literal] = ACTIONS(4152), [sym__backtick_identifier] = ACTIONS(4154), [sym__automatic_semicolon] = ACTIONS(4154), [sym_safe_nav] = ACTIONS(4154), @@ -352562,7 +352562,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4333), [anon_sym_AMP_AMP] = ACTIONS(4333), [anon_sym_PIPE_PIPE] = ACTIONS(4333), - [anon_sym_null] = ACTIONS(4331), [anon_sym_if] = ACTIONS(4331), [anon_sym_else] = ACTIONS(4331), [anon_sym_when] = ACTIONS(4331), @@ -352615,6 +352614,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4331), [anon_sym_false] = ACTIONS(4331), [anon_sym_SQUOTE] = ACTIONS(4333), + [sym_null_literal] = ACTIONS(4331), [sym__backtick_identifier] = ACTIONS(4333), [sym__automatic_semicolon] = ACTIONS(4333), [sym_safe_nav] = ACTIONS(4333), @@ -352649,7 +352649,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4371), [anon_sym_AMP_AMP] = ACTIONS(4371), [anon_sym_PIPE_PIPE] = ACTIONS(4371), - [anon_sym_null] = ACTIONS(4369), [anon_sym_if] = ACTIONS(4369), [anon_sym_else] = ACTIONS(4369), [anon_sym_when] = ACTIONS(4369), @@ -352702,6 +352701,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4369), [anon_sym_false] = ACTIONS(4369), [anon_sym_SQUOTE] = ACTIONS(4371), + [sym_null_literal] = ACTIONS(4369), [sym__backtick_identifier] = ACTIONS(4371), [sym__automatic_semicolon] = ACTIONS(4371), [sym_safe_nav] = ACTIONS(4371), @@ -352738,7 +352738,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4154), [anon_sym_AMP_AMP] = ACTIONS(4154), [anon_sym_PIPE_PIPE] = ACTIONS(4154), - [anon_sym_null] = ACTIONS(4152), [anon_sym_if] = ACTIONS(4152), [anon_sym_else] = ACTIONS(4152), [anon_sym_when] = ACTIONS(4152), @@ -352789,6 +352788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4152), [anon_sym_false] = ACTIONS(4152), [anon_sym_SQUOTE] = ACTIONS(4154), + [sym_null_literal] = ACTIONS(4152), [sym__backtick_identifier] = ACTIONS(4154), [sym__automatic_semicolon] = ACTIONS(4154), [sym_safe_nav] = ACTIONS(4154), @@ -352825,7 +352825,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4337), [anon_sym_AMP_AMP] = ACTIONS(4337), [anon_sym_PIPE_PIPE] = ACTIONS(4337), - [anon_sym_null] = ACTIONS(4335), [anon_sym_if] = ACTIONS(4335), [anon_sym_else] = ACTIONS(4335), [anon_sym_when] = ACTIONS(4335), @@ -352876,6 +352875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4335), [anon_sym_false] = ACTIONS(4335), [anon_sym_SQUOTE] = ACTIONS(4337), + [sym_null_literal] = ACTIONS(4335), [sym__backtick_identifier] = ACTIONS(4337), [sym__automatic_semicolon] = ACTIONS(4337), [sym_safe_nav] = ACTIONS(4337), @@ -352912,7 +352912,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4276), [anon_sym_AMP_AMP] = ACTIONS(4276), [anon_sym_PIPE_PIPE] = ACTIONS(4276), - [anon_sym_null] = ACTIONS(4274), [anon_sym_if] = ACTIONS(4274), [anon_sym_else] = ACTIONS(4274), [anon_sym_when] = ACTIONS(4274), @@ -352963,6 +352962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4274), [anon_sym_false] = ACTIONS(4274), [anon_sym_SQUOTE] = ACTIONS(4276), + [sym_null_literal] = ACTIONS(4274), [sym__backtick_identifier] = ACTIONS(4276), [sym__automatic_semicolon] = ACTIONS(4276), [sym_safe_nav] = ACTIONS(4276), @@ -352999,7 +352999,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4276), [anon_sym_AMP_AMP] = ACTIONS(4276), [anon_sym_PIPE_PIPE] = ACTIONS(4276), - [anon_sym_null] = ACTIONS(4274), [anon_sym_if] = ACTIONS(4274), [anon_sym_else] = ACTIONS(4274), [anon_sym_when] = ACTIONS(4274), @@ -353050,6 +353049,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4274), [anon_sym_false] = ACTIONS(4274), [anon_sym_SQUOTE] = ACTIONS(4276), + [sym_null_literal] = ACTIONS(4274), [sym__backtick_identifier] = ACTIONS(4276), [sym__automatic_semicolon] = ACTIONS(4276), [sym_safe_nav] = ACTIONS(4276), @@ -353111,30 +353111,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -353198,30 +353198,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -353260,7 +353260,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4099), [anon_sym_AMP_AMP] = ACTIONS(4099), [anon_sym_PIPE_PIPE] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4097), [anon_sym_if] = ACTIONS(4097), [anon_sym_else] = ACTIONS(4097), [anon_sym_when] = ACTIONS(4097), @@ -353311,6 +353310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4097), [anon_sym_false] = ACTIONS(4097), [anon_sym_SQUOTE] = ACTIONS(4099), + [sym_null_literal] = ACTIONS(4097), [sym__backtick_identifier] = ACTIONS(4099), [sym__automatic_semicolon] = ACTIONS(4099), [sym_safe_nav] = ACTIONS(4099), @@ -353372,30 +353372,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -353459,30 +353459,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1772), [anon_sym_DASH_DASH] = ACTIONS(1772), [anon_sym_BANG_BANG] = ACTIONS(1772), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -353521,7 +353521,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4337), [anon_sym_AMP_AMP] = ACTIONS(4337), [anon_sym_PIPE_PIPE] = ACTIONS(4337), - [anon_sym_null] = ACTIONS(4335), [anon_sym_if] = ACTIONS(4335), [anon_sym_else] = ACTIONS(4335), [anon_sym_when] = ACTIONS(4335), @@ -353572,6 +353571,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4335), [anon_sym_false] = ACTIONS(4335), [anon_sym_SQUOTE] = ACTIONS(4337), + [sym_null_literal] = ACTIONS(4335), [sym__backtick_identifier] = ACTIONS(4337), [sym__automatic_semicolon] = ACTIONS(4337), [sym_safe_nav] = ACTIONS(4337), @@ -353608,7 +353608,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -353659,6 +353658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -353695,7 +353695,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4457), [anon_sym_AMP_AMP] = ACTIONS(4457), [anon_sym_PIPE_PIPE] = ACTIONS(4457), - [anon_sym_null] = ACTIONS(4455), [anon_sym_if] = ACTIONS(4455), [anon_sym_else] = ACTIONS(4455), [anon_sym_when] = ACTIONS(4455), @@ -353746,6 +353745,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4455), [anon_sym_false] = ACTIONS(4455), [anon_sym_SQUOTE] = ACTIONS(4457), + [sym_null_literal] = ACTIONS(4455), [sym__backtick_identifier] = ACTIONS(4457), [sym__automatic_semicolon] = ACTIONS(4457), [sym_safe_nav] = ACTIONS(4457), @@ -353780,7 +353780,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4404), [anon_sym_AMP_AMP] = ACTIONS(4404), [anon_sym_PIPE_PIPE] = ACTIONS(4404), - [anon_sym_null] = ACTIONS(4402), [anon_sym_if] = ACTIONS(4402), [anon_sym_else] = ACTIONS(4402), [anon_sym_when] = ACTIONS(4402), @@ -353833,6 +353832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4402), [anon_sym_false] = ACTIONS(4402), [anon_sym_SQUOTE] = ACTIONS(4404), + [sym_null_literal] = ACTIONS(4402), [sym__backtick_identifier] = ACTIONS(4404), [sym__automatic_semicolon] = ACTIONS(4404), [sym_safe_nav] = ACTIONS(4404), @@ -353981,30 +353981,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -354130,7 +354130,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3240), [anon_sym_AMP_AMP] = ACTIONS(3240), [anon_sym_PIPE_PIPE] = ACTIONS(3240), - [anon_sym_null] = ACTIONS(3236), [anon_sym_if] = ACTIONS(3236), [anon_sym_else] = ACTIONS(3236), [anon_sym_when] = ACTIONS(3236), @@ -354181,6 +354180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3236), [anon_sym_false] = ACTIONS(3236), [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), [sym__backtick_identifier] = ACTIONS(3240), [sym__automatic_semicolon] = ACTIONS(3240), [sym_safe_nav] = ACTIONS(3240), @@ -354217,7 +354217,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4204), [anon_sym_AMP_AMP] = ACTIONS(4204), [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_null] = ACTIONS(4202), [anon_sym_if] = ACTIONS(4202), [anon_sym_else] = ACTIONS(4202), [anon_sym_when] = ACTIONS(4202), @@ -354268,6 +354267,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4202), [anon_sym_false] = ACTIONS(4202), [anon_sym_SQUOTE] = ACTIONS(4204), + [sym_null_literal] = ACTIONS(4202), [sym__backtick_identifier] = ACTIONS(4204), [sym__automatic_semicolon] = ACTIONS(4204), [sym_safe_nav] = ACTIONS(4204), @@ -354329,30 +354329,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -354391,7 +354391,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4204), [anon_sym_AMP_AMP] = ACTIONS(4204), [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_null] = ACTIONS(4202), [anon_sym_if] = ACTIONS(4202), [anon_sym_else] = ACTIONS(4202), [anon_sym_when] = ACTIONS(4202), @@ -354442,6 +354441,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4202), [anon_sym_false] = ACTIONS(4202), [anon_sym_SQUOTE] = ACTIONS(4204), + [sym_null_literal] = ACTIONS(4202), [sym__backtick_identifier] = ACTIONS(4204), [sym__automatic_semicolon] = ACTIONS(4204), [sym_safe_nav] = ACTIONS(4204), @@ -354503,30 +354503,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -354590,30 +354590,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -354652,7 +354652,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4327), [anon_sym_AMP_AMP] = ACTIONS(4327), [anon_sym_PIPE_PIPE] = ACTIONS(4327), - [anon_sym_null] = ACTIONS(4325), [anon_sym_if] = ACTIONS(4325), [anon_sym_else] = ACTIONS(4325), [anon_sym_when] = ACTIONS(4325), @@ -354703,6 +354702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4325), [anon_sym_false] = ACTIONS(4325), [anon_sym_SQUOTE] = ACTIONS(4327), + [sym_null_literal] = ACTIONS(4325), [sym__backtick_identifier] = ACTIONS(4327), [sym__automatic_semicolon] = ACTIONS(4327), [sym_safe_nav] = ACTIONS(4327), @@ -354764,30 +354764,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -354851,30 +354851,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -354938,30 +354938,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1740), [anon_sym_DASH_DASH] = ACTIONS(1740), [anon_sym_BANG_BANG] = ACTIONS(1740), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -355000,7 +355000,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4089), [anon_sym_AMP_AMP] = ACTIONS(4089), [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_null] = ACTIONS(4087), [anon_sym_if] = ACTIONS(4087), [anon_sym_else] = ACTIONS(4087), [anon_sym_when] = ACTIONS(4087), @@ -355051,6 +355050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4087), [anon_sym_false] = ACTIONS(4087), [anon_sym_SQUOTE] = ACTIONS(4089), + [sym_null_literal] = ACTIONS(4087), [sym__backtick_identifier] = ACTIONS(4089), [sym__automatic_semicolon] = ACTIONS(4089), [sym_safe_nav] = ACTIONS(4089), @@ -355174,7 +355174,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4355), [anon_sym_AMP_AMP] = ACTIONS(4355), [anon_sym_PIPE_PIPE] = ACTIONS(4355), - [anon_sym_null] = ACTIONS(4353), [anon_sym_if] = ACTIONS(4353), [anon_sym_else] = ACTIONS(4353), [anon_sym_when] = ACTIONS(4353), @@ -355225,6 +355224,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4353), [anon_sym_false] = ACTIONS(4353), [anon_sym_SQUOTE] = ACTIONS(4355), + [sym_null_literal] = ACTIONS(4353), [sym__backtick_identifier] = ACTIONS(4355), [sym__automatic_semicolon] = ACTIONS(4355), [sym_safe_nav] = ACTIONS(4355), @@ -355261,7 +355261,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -355312,6 +355311,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -355348,7 +355348,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4414), [anon_sym_AMP_AMP] = ACTIONS(4414), [anon_sym_PIPE_PIPE] = ACTIONS(4414), - [anon_sym_null] = ACTIONS(4412), [anon_sym_if] = ACTIONS(4412), [anon_sym_else] = ACTIONS(4412), [anon_sym_when] = ACTIONS(4412), @@ -355399,6 +355398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4412), [anon_sym_false] = ACTIONS(4412), [anon_sym_SQUOTE] = ACTIONS(4414), + [sym_null_literal] = ACTIONS(4412), [sym__backtick_identifier] = ACTIONS(4414), [sym__automatic_semicolon] = ACTIONS(4414), [sym_safe_nav] = ACTIONS(4414), @@ -355520,7 +355520,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4345), [anon_sym_AMP_AMP] = ACTIONS(4345), [anon_sym_PIPE_PIPE] = ACTIONS(4345), - [anon_sym_null] = ACTIONS(4343), [anon_sym_if] = ACTIONS(4343), [anon_sym_else] = ACTIONS(4343), [anon_sym_when] = ACTIONS(4343), @@ -355573,6 +355572,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4343), [anon_sym_false] = ACTIONS(4343), [anon_sym_SQUOTE] = ACTIONS(4345), + [sym_null_literal] = ACTIONS(4343), [sym__backtick_identifier] = ACTIONS(4345), [sym__automatic_semicolon] = ACTIONS(4345), [sym_safe_nav] = ACTIONS(4345), @@ -355808,30 +355808,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1684), [anon_sym_DASH_DASH] = ACTIONS(1684), [anon_sym_BANG_BANG] = ACTIONS(1684), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_suspend] = ACTIONS(71), + [anon_sym_sealed] = ACTIONS(73), + [anon_sym_annotation] = ACTIONS(73), + [anon_sym_data] = ACTIONS(73), + [anon_sym_inner] = ACTIONS(73), + [anon_sym_value] = ACTIONS(73), + [anon_sym_override] = ACTIONS(77), + [anon_sym_lateinit] = ACTIONS(77), + [anon_sym_public] = ACTIONS(79), + [anon_sym_private] = ACTIONS(79), + [anon_sym_internal] = ACTIONS(79), + [anon_sym_protected] = ACTIONS(79), + [anon_sym_tailrec] = ACTIONS(71), + [anon_sym_operator] = ACTIONS(71), + [anon_sym_infix] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_external] = ACTIONS(71), + [sym_property_modifier] = ACTIONS(81), + [anon_sym_abstract] = ACTIONS(83), + [anon_sym_final] = ACTIONS(83), + [anon_sym_open] = ACTIONS(83), + [anon_sym_vararg] = ACTIONS(85), + [anon_sym_noinline] = ACTIONS(85), + [anon_sym_crossinline] = ACTIONS(85), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), @@ -355957,7 +355957,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4204), [anon_sym_AMP_AMP] = ACTIONS(4204), [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_null] = ACTIONS(4202), [anon_sym_if] = ACTIONS(4202), [anon_sym_else] = ACTIONS(4202), [anon_sym_when] = ACTIONS(4202), @@ -356008,6 +356007,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4202), [anon_sym_false] = ACTIONS(4202), [anon_sym_SQUOTE] = ACTIONS(4204), + [sym_null_literal] = ACTIONS(4202), [sym__backtick_identifier] = ACTIONS(4204), [sym__automatic_semicolon] = ACTIONS(4204), [sym_safe_nav] = ACTIONS(4204), @@ -356044,7 +356044,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4204), [anon_sym_AMP_AMP] = ACTIONS(4204), [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_null] = ACTIONS(4202), [anon_sym_if] = ACTIONS(4202), [anon_sym_else] = ACTIONS(4202), [anon_sym_when] = ACTIONS(4202), @@ -356095,6 +356094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4202), [anon_sym_false] = ACTIONS(4202), [anon_sym_SQUOTE] = ACTIONS(4204), + [sym_null_literal] = ACTIONS(4202), [sym__backtick_identifier] = ACTIONS(4204), [sym__automatic_semicolon] = ACTIONS(4204), [sym_safe_nav] = ACTIONS(4204), @@ -356130,7 +356130,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4204), [anon_sym_AMP_AMP] = ACTIONS(4204), [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_null] = ACTIONS(4202), [anon_sym_if] = ACTIONS(4202), [anon_sym_else] = ACTIONS(4202), [anon_sym_when] = ACTIONS(4202), @@ -356181,6 +356180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4202), [anon_sym_false] = ACTIONS(4202), [anon_sym_SQUOTE] = ACTIONS(4204), + [sym_null_literal] = ACTIONS(4202), [sym__backtick_identifier] = ACTIONS(4204), [sym__automatic_semicolon] = ACTIONS(4204), [sym_safe_nav] = ACTIONS(4204), @@ -356216,7 +356216,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4613), [anon_sym_AMP_AMP] = ACTIONS(4613), [anon_sym_PIPE_PIPE] = ACTIONS(4613), - [anon_sym_null] = ACTIONS(4611), [anon_sym_if] = ACTIONS(4611), [anon_sym_else] = ACTIONS(4611), [anon_sym_when] = ACTIONS(4611), @@ -356267,6 +356266,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4611), [anon_sym_false] = ACTIONS(4611), [anon_sym_SQUOTE] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4611), [sym__backtick_identifier] = ACTIONS(4613), [sym__automatic_semicolon] = ACTIONS(4613), [sym_safe_nav] = ACTIONS(4613), @@ -356388,7 +356388,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4569), [anon_sym_AMP_AMP] = ACTIONS(4569), [anon_sym_PIPE_PIPE] = ACTIONS(4569), - [anon_sym_null] = ACTIONS(4567), [anon_sym_if] = ACTIONS(4567), [anon_sym_else] = ACTIONS(4567), [anon_sym_when] = ACTIONS(4567), @@ -356439,6 +356438,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4567), [anon_sym_false] = ACTIONS(4567), [anon_sym_SQUOTE] = ACTIONS(4569), + [sym_null_literal] = ACTIONS(4567), [sym__backtick_identifier] = ACTIONS(4569), [sym__automatic_semicolon] = ACTIONS(4569), [sym_safe_nav] = ACTIONS(4569), @@ -356732,7 +356732,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4565), [anon_sym_AMP_AMP] = ACTIONS(4565), [anon_sym_PIPE_PIPE] = ACTIONS(4565), - [anon_sym_null] = ACTIONS(4563), [anon_sym_if] = ACTIONS(4563), [anon_sym_else] = ACTIONS(4563), [anon_sym_when] = ACTIONS(4563), @@ -356783,6 +356782,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4563), [anon_sym_false] = ACTIONS(4563), [anon_sym_SQUOTE] = ACTIONS(4565), + [sym_null_literal] = ACTIONS(4563), [sym__backtick_identifier] = ACTIONS(4565), [sym__automatic_semicolon] = ACTIONS(4565), [sym_safe_nav] = ACTIONS(4565), @@ -356818,7 +356818,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4414), [anon_sym_AMP_AMP] = ACTIONS(4414), [anon_sym_PIPE_PIPE] = ACTIONS(4414), - [anon_sym_null] = ACTIONS(4412), [anon_sym_if] = ACTIONS(4412), [anon_sym_else] = ACTIONS(4412), [anon_sym_when] = ACTIONS(4412), @@ -356869,6 +356868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4412), [anon_sym_false] = ACTIONS(4412), [anon_sym_SQUOTE] = ACTIONS(4414), + [sym_null_literal] = ACTIONS(4412), [sym__backtick_identifier] = ACTIONS(4414), [sym__automatic_semicolon] = ACTIONS(4414), [sym_safe_nav] = ACTIONS(4414), @@ -356990,7 +356990,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -357041,6 +357040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -357592,7 +357592,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4272), [anon_sym_AMP_AMP] = ACTIONS(4272), [anon_sym_PIPE_PIPE] = ACTIONS(4272), - [anon_sym_null] = ACTIONS(4270), [anon_sym_if] = ACTIONS(4270), [anon_sym_else] = ACTIONS(4270), [anon_sym_when] = ACTIONS(4270), @@ -357643,6 +357642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4270), [anon_sym_false] = ACTIONS(4270), [anon_sym_SQUOTE] = ACTIONS(4272), + [sym_null_literal] = ACTIONS(4270), [sym__backtick_identifier] = ACTIONS(4272), [sym__automatic_semicolon] = ACTIONS(4272), [sym_safe_nav] = ACTIONS(4272), @@ -357678,7 +357678,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4375), [anon_sym_AMP_AMP] = ACTIONS(4375), [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_null] = ACTIONS(4373), [anon_sym_if] = ACTIONS(4373), [anon_sym_else] = ACTIONS(4373), [anon_sym_when] = ACTIONS(4373), @@ -357729,6 +357728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4373), [anon_sym_false] = ACTIONS(4373), [anon_sym_SQUOTE] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4373), [sym__backtick_identifier] = ACTIONS(4375), [sym__automatic_semicolon] = ACTIONS(4375), [sym_safe_nav] = ACTIONS(4375), @@ -357764,7 +357764,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4523), [anon_sym_AMP_AMP] = ACTIONS(4523), [anon_sym_PIPE_PIPE] = ACTIONS(4523), - [anon_sym_null] = ACTIONS(4521), [anon_sym_if] = ACTIONS(4521), [anon_sym_else] = ACTIONS(4521), [anon_sym_when] = ACTIONS(4521), @@ -357815,6 +357814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4521), [anon_sym_false] = ACTIONS(4521), [anon_sym_SQUOTE] = ACTIONS(4523), + [sym_null_literal] = ACTIONS(4521), [sym__backtick_identifier] = ACTIONS(4523), [sym__automatic_semicolon] = ACTIONS(4523), [sym_safe_nav] = ACTIONS(4523), @@ -357936,7 +357936,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4204), [anon_sym_AMP_AMP] = ACTIONS(4204), [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_null] = ACTIONS(4202), [anon_sym_if] = ACTIONS(4202), [anon_sym_else] = ACTIONS(4202), [anon_sym_when] = ACTIONS(4202), @@ -357987,6 +357986,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4202), [anon_sym_false] = ACTIONS(4202), [anon_sym_SQUOTE] = ACTIONS(4204), + [sym_null_literal] = ACTIONS(4202), [sym__backtick_identifier] = ACTIONS(4204), [sym__automatic_semicolon] = ACTIONS(4204), [sym_safe_nav] = ACTIONS(4204), @@ -358022,7 +358022,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4636), [anon_sym_AMP_AMP] = ACTIONS(4636), [anon_sym_PIPE_PIPE] = ACTIONS(4636), - [anon_sym_null] = ACTIONS(4634), [anon_sym_if] = ACTIONS(4634), [anon_sym_else] = ACTIONS(4634), [anon_sym_when] = ACTIONS(4634), @@ -358073,6 +358072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4634), [anon_sym_false] = ACTIONS(4634), [anon_sym_SQUOTE] = ACTIONS(4636), + [sym_null_literal] = ACTIONS(4634), [sym__backtick_identifier] = ACTIONS(4636), [sym__automatic_semicolon] = ACTIONS(4636), [sym_safe_nav] = ACTIONS(4636), @@ -358194,7 +358194,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3240), [anon_sym_AMP_AMP] = ACTIONS(3240), [anon_sym_PIPE_PIPE] = ACTIONS(3240), - [anon_sym_null] = ACTIONS(3236), [anon_sym_if] = ACTIONS(3236), [anon_sym_else] = ACTIONS(3236), [anon_sym_when] = ACTIONS(3236), @@ -358245,6 +358244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3236), [anon_sym_false] = ACTIONS(3236), [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), [sym__backtick_identifier] = ACTIONS(3240), [sym__automatic_semicolon] = ACTIONS(3240), [sym_safe_nav] = ACTIONS(3240), @@ -358280,7 +358280,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4640), [anon_sym_AMP_AMP] = ACTIONS(4640), [anon_sym_PIPE_PIPE] = ACTIONS(4640), - [anon_sym_null] = ACTIONS(4638), [anon_sym_if] = ACTIONS(4638), [anon_sym_else] = ACTIONS(4638), [anon_sym_when] = ACTIONS(4638), @@ -358331,6 +358330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4638), [anon_sym_false] = ACTIONS(4638), [anon_sym_SQUOTE] = ACTIONS(4640), + [sym_null_literal] = ACTIONS(4638), [sym__backtick_identifier] = ACTIONS(4640), [sym__automatic_semicolon] = ACTIONS(4640), [sym_safe_nav] = ACTIONS(4640), @@ -358366,7 +358366,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4585), [anon_sym_AMP_AMP] = ACTIONS(4585), [anon_sym_PIPE_PIPE] = ACTIONS(4585), - [anon_sym_null] = ACTIONS(4583), [anon_sym_if] = ACTIONS(4583), [anon_sym_else] = ACTIONS(4583), [anon_sym_when] = ACTIONS(4583), @@ -358417,6 +358416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4583), [anon_sym_false] = ACTIONS(4583), [anon_sym_SQUOTE] = ACTIONS(4585), + [sym_null_literal] = ACTIONS(4583), [sym__backtick_identifier] = ACTIONS(4585), [sym__automatic_semicolon] = ACTIONS(4585), [sym_safe_nav] = ACTIONS(4585), @@ -358452,7 +358452,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4644), [anon_sym_AMP_AMP] = ACTIONS(4644), [anon_sym_PIPE_PIPE] = ACTIONS(4644), - [anon_sym_null] = ACTIONS(4642), [anon_sym_if] = ACTIONS(4642), [anon_sym_else] = ACTIONS(4642), [anon_sym_when] = ACTIONS(4642), @@ -358503,6 +358502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4642), [anon_sym_false] = ACTIONS(4642), [anon_sym_SQUOTE] = ACTIONS(4644), + [sym_null_literal] = ACTIONS(4642), [sym__backtick_identifier] = ACTIONS(4644), [sym__automatic_semicolon] = ACTIONS(4644), [sym_safe_nav] = ACTIONS(4644), @@ -358968,7 +358968,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4593), [anon_sym_AMP_AMP] = ACTIONS(4593), [anon_sym_PIPE_PIPE] = ACTIONS(4593), - [anon_sym_null] = ACTIONS(4591), [anon_sym_if] = ACTIONS(4591), [anon_sym_else] = ACTIONS(4591), [anon_sym_when] = ACTIONS(4591), @@ -359019,6 +359018,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4591), [anon_sym_false] = ACTIONS(4591), [anon_sym_SQUOTE] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4591), [sym__backtick_identifier] = ACTIONS(4593), [sym__automatic_semicolon] = ACTIONS(4593), [sym_safe_nav] = ACTIONS(4593), @@ -359054,7 +359054,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4519), [anon_sym_AMP_AMP] = ACTIONS(4519), [anon_sym_PIPE_PIPE] = ACTIONS(4519), - [anon_sym_null] = ACTIONS(4517), [anon_sym_if] = ACTIONS(4517), [anon_sym_else] = ACTIONS(4517), [anon_sym_when] = ACTIONS(4517), @@ -359105,6 +359104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4517), [anon_sym_false] = ACTIONS(4517), [anon_sym_SQUOTE] = ACTIONS(4519), + [sym_null_literal] = ACTIONS(4517), [sym__backtick_identifier] = ACTIONS(4519), [sym__automatic_semicolon] = ACTIONS(4519), [sym_safe_nav] = ACTIONS(4519), @@ -359140,7 +359140,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4597), [anon_sym_AMP_AMP] = ACTIONS(4597), [anon_sym_PIPE_PIPE] = ACTIONS(4597), - [anon_sym_null] = ACTIONS(4595), [anon_sym_if] = ACTIONS(4595), [anon_sym_else] = ACTIONS(4595), [anon_sym_when] = ACTIONS(4595), @@ -359191,6 +359190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4595), [anon_sym_false] = ACTIONS(4595), [anon_sym_SQUOTE] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4595), [sym__backtick_identifier] = ACTIONS(4597), [sym__automatic_semicolon] = ACTIONS(4597), [sym_safe_nav] = ACTIONS(4597), @@ -359226,7 +359226,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4457), [anon_sym_AMP_AMP] = ACTIONS(4457), [anon_sym_PIPE_PIPE] = ACTIONS(4457), - [anon_sym_null] = ACTIONS(4455), [anon_sym_if] = ACTIONS(4455), [anon_sym_else] = ACTIONS(4455), [anon_sym_when] = ACTIONS(4455), @@ -359277,6 +359276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4455), [anon_sym_false] = ACTIONS(4455), [anon_sym_SQUOTE] = ACTIONS(4457), + [sym_null_literal] = ACTIONS(4455), [sym__backtick_identifier] = ACTIONS(4457), [sym__automatic_semicolon] = ACTIONS(4457), [sym_safe_nav] = ACTIONS(4457), @@ -359312,7 +359312,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -359363,6 +359362,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -359398,7 +359398,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4337), [anon_sym_AMP_AMP] = ACTIONS(4337), [anon_sym_PIPE_PIPE] = ACTIONS(4337), - [anon_sym_null] = ACTIONS(4335), [anon_sym_if] = ACTIONS(4335), [anon_sym_else] = ACTIONS(4335), [anon_sym_when] = ACTIONS(4335), @@ -359449,6 +359448,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4335), [anon_sym_false] = ACTIONS(4335), [anon_sym_SQUOTE] = ACTIONS(4337), + [sym_null_literal] = ACTIONS(4335), [sym__backtick_identifier] = ACTIONS(4337), [sym__automatic_semicolon] = ACTIONS(4337), [sym_safe_nav] = ACTIONS(4337), @@ -359484,7 +359484,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4390), [anon_sym_AMP_AMP] = ACTIONS(4390), [anon_sym_PIPE_PIPE] = ACTIONS(4390), - [anon_sym_null] = ACTIONS(4388), [anon_sym_if] = ACTIONS(4388), [anon_sym_else] = ACTIONS(4388), [anon_sym_when] = ACTIONS(4388), @@ -359535,6 +359534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4388), [anon_sym_false] = ACTIONS(4388), [anon_sym_SQUOTE] = ACTIONS(4390), + [sym_null_literal] = ACTIONS(4388), [sym__backtick_identifier] = ACTIONS(4390), [sym__automatic_semicolon] = ACTIONS(4390), [sym_safe_nav] = ACTIONS(4390), @@ -359570,7 +359570,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4276), [anon_sym_AMP_AMP] = ACTIONS(4276), [anon_sym_PIPE_PIPE] = ACTIONS(4276), - [anon_sym_null] = ACTIONS(4274), [anon_sym_if] = ACTIONS(4274), [anon_sym_else] = ACTIONS(4274), [anon_sym_when] = ACTIONS(4274), @@ -359621,6 +359620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4274), [anon_sym_false] = ACTIONS(4274), [anon_sym_SQUOTE] = ACTIONS(4276), + [sym_null_literal] = ACTIONS(4274), [sym__backtick_identifier] = ACTIONS(4276), [sym__automatic_semicolon] = ACTIONS(4276), [sym_safe_nav] = ACTIONS(4276), @@ -359656,7 +359656,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4501), [anon_sym_AMP_AMP] = ACTIONS(4501), [anon_sym_PIPE_PIPE] = ACTIONS(4501), - [anon_sym_null] = ACTIONS(4499), [anon_sym_if] = ACTIONS(4499), [anon_sym_else] = ACTIONS(4499), [anon_sym_when] = ACTIONS(4499), @@ -359707,6 +359706,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4499), [anon_sym_false] = ACTIONS(4499), [anon_sym_SQUOTE] = ACTIONS(4501), + [sym_null_literal] = ACTIONS(4499), [sym__backtick_identifier] = ACTIONS(4501), [sym__automatic_semicolon] = ACTIONS(4501), [sym_safe_nav] = ACTIONS(4501), @@ -359742,7 +359742,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4505), [anon_sym_AMP_AMP] = ACTIONS(4505), [anon_sym_PIPE_PIPE] = ACTIONS(4505), - [anon_sym_null] = ACTIONS(4503), [anon_sym_if] = ACTIONS(4503), [anon_sym_else] = ACTIONS(4503), [anon_sym_when] = ACTIONS(4503), @@ -359793,6 +359792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4503), [anon_sym_false] = ACTIONS(4503), [anon_sym_SQUOTE] = ACTIONS(4505), + [sym_null_literal] = ACTIONS(4503), [sym__backtick_identifier] = ACTIONS(4505), [sym__automatic_semicolon] = ACTIONS(4505), [sym_safe_nav] = ACTIONS(4505), @@ -359828,7 +359828,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4337), [anon_sym_AMP_AMP] = ACTIONS(4337), [anon_sym_PIPE_PIPE] = ACTIONS(4337), - [anon_sym_null] = ACTIONS(4335), [anon_sym_if] = ACTIONS(4335), [anon_sym_else] = ACTIONS(4335), [anon_sym_when] = ACTIONS(4335), @@ -359879,6 +359878,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4335), [anon_sym_false] = ACTIONS(4335), [anon_sym_SQUOTE] = ACTIONS(4337), + [sym_null_literal] = ACTIONS(4335), [sym__backtick_identifier] = ACTIONS(4337), [sym__automatic_semicolon] = ACTIONS(4337), [sym_safe_nav] = ACTIONS(4337), @@ -359914,7 +359914,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4678), [anon_sym_AMP_AMP] = ACTIONS(4678), [anon_sym_PIPE_PIPE] = ACTIONS(4678), - [anon_sym_null] = ACTIONS(4676), [anon_sym_if] = ACTIONS(4676), [anon_sym_else] = ACTIONS(4676), [anon_sym_when] = ACTIONS(4676), @@ -359965,6 +359964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4676), [anon_sym_false] = ACTIONS(4676), [anon_sym_SQUOTE] = ACTIONS(4678), + [sym_null_literal] = ACTIONS(4676), [sym__backtick_identifier] = ACTIONS(4678), [sym__automatic_semicolon] = ACTIONS(4678), [sym_safe_nav] = ACTIONS(4678), @@ -360086,7 +360086,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4252), [anon_sym_AMP_AMP] = ACTIONS(4252), [anon_sym_PIPE_PIPE] = ACTIONS(4252), - [anon_sym_null] = ACTIONS(4250), [anon_sym_if] = ACTIONS(4250), [anon_sym_else] = ACTIONS(4250), [anon_sym_when] = ACTIONS(4250), @@ -360137,6 +360136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4250), [anon_sym_false] = ACTIONS(4250), [anon_sym_SQUOTE] = ACTIONS(4252), + [sym_null_literal] = ACTIONS(4250), [sym__backtick_identifier] = ACTIONS(4252), [sym__automatic_semicolon] = ACTIONS(4252), [sym_safe_nav] = ACTIONS(4252), @@ -360172,7 +360172,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4154), [anon_sym_AMP_AMP] = ACTIONS(4154), [anon_sym_PIPE_PIPE] = ACTIONS(4154), - [anon_sym_null] = ACTIONS(4152), [anon_sym_if] = ACTIONS(4152), [anon_sym_else] = ACTIONS(4152), [anon_sym_when] = ACTIONS(4152), @@ -360223,6 +360222,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4152), [anon_sym_false] = ACTIONS(4152), [anon_sym_SQUOTE] = ACTIONS(4154), + [sym_null_literal] = ACTIONS(4152), [sym__backtick_identifier] = ACTIONS(4154), [sym__automatic_semicolon] = ACTIONS(4154), [sym_safe_nav] = ACTIONS(4154), @@ -360258,7 +360258,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4605), [anon_sym_AMP_AMP] = ACTIONS(4605), [anon_sym_PIPE_PIPE] = ACTIONS(4605), - [anon_sym_null] = ACTIONS(4603), [anon_sym_if] = ACTIONS(4603), [anon_sym_else] = ACTIONS(4603), [anon_sym_when] = ACTIONS(4603), @@ -360309,6 +360308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4603), [anon_sym_false] = ACTIONS(4603), [anon_sym_SQUOTE] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4603), [sym__backtick_identifier] = ACTIONS(4605), [sym__automatic_semicolon] = ACTIONS(4605), [sym_safe_nav] = ACTIONS(4605), @@ -360344,7 +360344,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4609), [anon_sym_AMP_AMP] = ACTIONS(4609), [anon_sym_PIPE_PIPE] = ACTIONS(4609), - [anon_sym_null] = ACTIONS(4607), [anon_sym_if] = ACTIONS(4607), [anon_sym_else] = ACTIONS(4607), [anon_sym_when] = ACTIONS(4607), @@ -360395,6 +360394,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4607), [anon_sym_false] = ACTIONS(4607), [anon_sym_SQUOTE] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4607), [sym__backtick_identifier] = ACTIONS(4609), [sym__automatic_semicolon] = ACTIONS(4609), [sym_safe_nav] = ACTIONS(4609), @@ -360430,7 +360430,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4511), [anon_sym_AMP_AMP] = ACTIONS(4511), [anon_sym_PIPE_PIPE] = ACTIONS(4511), - [anon_sym_null] = ACTIONS(4509), [anon_sym_if] = ACTIONS(4509), [anon_sym_else] = ACTIONS(4509), [anon_sym_when] = ACTIONS(4509), @@ -360481,6 +360480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4509), [anon_sym_false] = ACTIONS(4509), [anon_sym_SQUOTE] = ACTIONS(4511), + [sym_null_literal] = ACTIONS(4509), [sym__backtick_identifier] = ACTIONS(4511), [sym__automatic_semicolon] = ACTIONS(4511), [sym_safe_nav] = ACTIONS(4511), @@ -360602,7 +360602,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4361), [anon_sym_AMP_AMP] = ACTIONS(4361), [anon_sym_PIPE_PIPE] = ACTIONS(4361), - [anon_sym_null] = ACTIONS(4359), [anon_sym_if] = ACTIONS(4359), [anon_sym_else] = ACTIONS(4359), [anon_sym_when] = ACTIONS(4359), @@ -360653,6 +360652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4359), [anon_sym_false] = ACTIONS(4359), [anon_sym_SQUOTE] = ACTIONS(4361), + [sym_null_literal] = ACTIONS(4359), [sym__backtick_identifier] = ACTIONS(4361), [sym__automatic_semicolon] = ACTIONS(4361), [sym_safe_nav] = ACTIONS(4361), @@ -360688,7 +360688,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4349), [anon_sym_AMP_AMP] = ACTIONS(4349), [anon_sym_PIPE_PIPE] = ACTIONS(4349), - [anon_sym_null] = ACTIONS(4347), [anon_sym_if] = ACTIONS(4347), [anon_sym_else] = ACTIONS(4347), [anon_sym_when] = ACTIONS(4347), @@ -360739,6 +360738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4347), [anon_sym_false] = ACTIONS(4347), [anon_sym_SQUOTE] = ACTIONS(4349), + [sym_null_literal] = ACTIONS(4347), [sym__backtick_identifier] = ACTIONS(4349), [sym__automatic_semicolon] = ACTIONS(4349), [sym_safe_nav] = ACTIONS(4349), @@ -360774,7 +360774,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(6540), [anon_sym_while] = ACTIONS(6540), [anon_sym_do] = ACTIONS(6540), - [anon_sym_null] = ACTIONS(6540), [anon_sym_if] = ACTIONS(6540), [anon_sym_when] = ACTIONS(6540), [anon_sym_try] = ACTIONS(6540), @@ -360827,6 +360826,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(6540), [anon_sym_false] = ACTIONS(6540), [anon_sym_SQUOTE] = ACTIONS(6538), + [sym_null_literal] = ACTIONS(6540), [sym__backtick_identifier] = ACTIONS(6538), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(6538), @@ -360860,7 +360860,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3230), [anon_sym_AMP_AMP] = ACTIONS(3230), [anon_sym_PIPE_PIPE] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3226), [anon_sym_if] = ACTIONS(3226), [anon_sym_else] = ACTIONS(3226), [anon_sym_when] = ACTIONS(3226), @@ -360911,6 +360910,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3226), [anon_sym_false] = ACTIONS(3226), [anon_sym_SQUOTE] = ACTIONS(3230), + [sym_null_literal] = ACTIONS(3226), [sym__backtick_identifier] = ACTIONS(3230), [sym__automatic_semicolon] = ACTIONS(3230), [sym_safe_nav] = ACTIONS(3230), @@ -360946,7 +360946,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4497), [anon_sym_AMP_AMP] = ACTIONS(4497), [anon_sym_PIPE_PIPE] = ACTIONS(4497), - [anon_sym_null] = ACTIONS(4495), [anon_sym_if] = ACTIONS(4495), [anon_sym_else] = ACTIONS(4495), [anon_sym_when] = ACTIONS(4495), @@ -360997,6 +360996,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4495), [anon_sym_false] = ACTIONS(4495), [anon_sym_SQUOTE] = ACTIONS(4497), + [sym_null_literal] = ACTIONS(4495), [sym__backtick_identifier] = ACTIONS(4497), [sym__automatic_semicolon] = ACTIONS(4497), [sym_safe_nav] = ACTIONS(4497), @@ -361032,7 +361032,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4361), [anon_sym_AMP_AMP] = ACTIONS(4361), [anon_sym_PIPE_PIPE] = ACTIONS(4361), - [anon_sym_null] = ACTIONS(4359), [anon_sym_if] = ACTIONS(4359), [anon_sym_else] = ACTIONS(4359), [anon_sym_when] = ACTIONS(4359), @@ -361083,6 +361082,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4359), [anon_sym_false] = ACTIONS(4359), [anon_sym_SQUOTE] = ACTIONS(4361), + [sym_null_literal] = ACTIONS(4359), [sym__backtick_identifier] = ACTIONS(4361), [sym__automatic_semicolon] = ACTIONS(4361), [sym_safe_nav] = ACTIONS(4361), @@ -361118,7 +361118,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4240), [anon_sym_AMP_AMP] = ACTIONS(4240), [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4238), [anon_sym_if] = ACTIONS(4238), [anon_sym_else] = ACTIONS(4238), [anon_sym_when] = ACTIONS(4238), @@ -361169,6 +361168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4238), [anon_sym_false] = ACTIONS(4238), [anon_sym_SQUOTE] = ACTIONS(4240), + [sym_null_literal] = ACTIONS(4238), [sym__backtick_identifier] = ACTIONS(4240), [sym__automatic_semicolon] = ACTIONS(4240), [sym_safe_nav] = ACTIONS(4240), @@ -361204,7 +361204,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4449), [anon_sym_AMP_AMP] = ACTIONS(4449), [anon_sym_PIPE_PIPE] = ACTIONS(4449), - [anon_sym_null] = ACTIONS(4447), [anon_sym_if] = ACTIONS(4447), [anon_sym_else] = ACTIONS(4447), [anon_sym_when] = ACTIONS(4447), @@ -361255,6 +361254,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4447), [anon_sym_false] = ACTIONS(4447), [anon_sym_SQUOTE] = ACTIONS(4449), + [sym_null_literal] = ACTIONS(4447), [sym__backtick_identifier] = ACTIONS(4449), [sym__automatic_semicolon] = ACTIONS(4449), [sym_safe_nav] = ACTIONS(4449), @@ -361462,7 +361462,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4620), [anon_sym_AMP_AMP] = ACTIONS(4620), [anon_sym_PIPE_PIPE] = ACTIONS(4620), - [anon_sym_null] = ACTIONS(4618), [anon_sym_if] = ACTIONS(4618), [anon_sym_else] = ACTIONS(4618), [anon_sym_when] = ACTIONS(4618), @@ -361513,6 +361512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4618), [anon_sym_false] = ACTIONS(4618), [anon_sym_SQUOTE] = ACTIONS(4620), + [sym_null_literal] = ACTIONS(4618), [sym__backtick_identifier] = ACTIONS(4620), [sym__automatic_semicolon] = ACTIONS(4620), [sym_safe_nav] = ACTIONS(4620), @@ -361634,7 +361634,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4527), [anon_sym_AMP_AMP] = ACTIONS(4527), [anon_sym_PIPE_PIPE] = ACTIONS(4527), - [anon_sym_null] = ACTIONS(4525), [anon_sym_if] = ACTIONS(4525), [anon_sym_else] = ACTIONS(4525), [anon_sym_when] = ACTIONS(4525), @@ -361685,6 +361684,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4525), [anon_sym_false] = ACTIONS(4525), [anon_sym_SQUOTE] = ACTIONS(4527), + [sym_null_literal] = ACTIONS(4525), [sym__backtick_identifier] = ACTIONS(4527), [sym__automatic_semicolon] = ACTIONS(4527), [sym_safe_nav] = ACTIONS(4527), @@ -361720,7 +361720,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4654), [anon_sym_AMP_AMP] = ACTIONS(4654), [anon_sym_PIPE_PIPE] = ACTIONS(4654), - [anon_sym_null] = ACTIONS(4652), [anon_sym_if] = ACTIONS(4652), [anon_sym_else] = ACTIONS(4652), [anon_sym_when] = ACTIONS(4652), @@ -361771,6 +361770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4652), [anon_sym_false] = ACTIONS(4652), [anon_sym_SQUOTE] = ACTIONS(4654), + [sym_null_literal] = ACTIONS(4652), [sym__backtick_identifier] = ACTIONS(4654), [sym__automatic_semicolon] = ACTIONS(4654), [sym_safe_nav] = ACTIONS(4654), @@ -361806,7 +361806,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4659), [anon_sym_AMP_AMP] = ACTIONS(4659), [anon_sym_PIPE_PIPE] = ACTIONS(4659), - [anon_sym_null] = ACTIONS(4656), [anon_sym_if] = ACTIONS(4656), [anon_sym_else] = ACTIONS(4656), [anon_sym_when] = ACTIONS(4656), @@ -361857,6 +361856,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4656), [anon_sym_false] = ACTIONS(4656), [anon_sym_SQUOTE] = ACTIONS(4659), + [sym_null_literal] = ACTIONS(4656), [sym__backtick_identifier] = ACTIONS(4659), [sym__automatic_semicolon] = ACTIONS(4659), [sym_safe_nav] = ACTIONS(4659), @@ -361978,7 +361978,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4198), [anon_sym_AMP_AMP] = ACTIONS(4198), [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), [anon_sym_if] = ACTIONS(4196), [anon_sym_else] = ACTIONS(4196), [anon_sym_when] = ACTIONS(4196), @@ -362029,6 +362028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4196), [anon_sym_false] = ACTIONS(4196), [anon_sym_SQUOTE] = ACTIONS(4198), + [sym_null_literal] = ACTIONS(4196), [sym__backtick_identifier] = ACTIONS(4198), [sym__automatic_semicolon] = ACTIONS(4198), [sym_safe_nav] = ACTIONS(4198), @@ -362064,7 +362064,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4620), [anon_sym_AMP_AMP] = ACTIONS(4620), [anon_sym_PIPE_PIPE] = ACTIONS(4620), - [anon_sym_null] = ACTIONS(4618), [anon_sym_if] = ACTIONS(4618), [anon_sym_else] = ACTIONS(4618), [anon_sym_when] = ACTIONS(4618), @@ -362115,6 +362114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4618), [anon_sym_false] = ACTIONS(4618), [anon_sym_SQUOTE] = ACTIONS(4620), + [sym_null_literal] = ACTIONS(4618), [sym__backtick_identifier] = ACTIONS(4620), [sym__automatic_semicolon] = ACTIONS(4620), [sym_safe_nav] = ACTIONS(4620), @@ -362145,7 +362145,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4246), [sym_label] = ACTIONS(4244), [anon_sym_in] = ACTIONS(4244), - [anon_sym_null] = ACTIONS(4244), [anon_sym_if] = ACTIONS(4244), [anon_sym_else] = ACTIONS(4244), [anon_sym_when] = ACTIONS(4244), @@ -362202,6 +362201,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4244), [anon_sym_false] = ACTIONS(4244), [anon_sym_SQUOTE] = ACTIONS(4246), + [sym_null_literal] = ACTIONS(4244), [sym__backtick_identifier] = ACTIONS(4246), [sym__automatic_semicolon] = ACTIONS(4246), [sym_multiline_comment] = ACTIONS(3), @@ -362236,7 +362236,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4422), [anon_sym_AMP_AMP] = ACTIONS(4422), [anon_sym_PIPE_PIPE] = ACTIONS(4422), - [anon_sym_null] = ACTIONS(4420), [anon_sym_if] = ACTIONS(4420), [anon_sym_else] = ACTIONS(4420), [anon_sym_when] = ACTIONS(4420), @@ -362287,6 +362286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4420), [anon_sym_false] = ACTIONS(4420), [anon_sym_SQUOTE] = ACTIONS(4422), + [sym_null_literal] = ACTIONS(4420), [sym__backtick_identifier] = ACTIONS(4422), [sym__automatic_semicolon] = ACTIONS(4422), [sym_safe_nav] = ACTIONS(4422), @@ -362322,7 +362322,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4515), [anon_sym_AMP_AMP] = ACTIONS(4515), [anon_sym_PIPE_PIPE] = ACTIONS(4515), - [anon_sym_null] = ACTIONS(4513), [anon_sym_if] = ACTIONS(4513), [anon_sym_else] = ACTIONS(4513), [anon_sym_when] = ACTIONS(4513), @@ -362373,6 +362372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4513), [anon_sym_false] = ACTIONS(4513), [anon_sym_SQUOTE] = ACTIONS(4515), + [sym_null_literal] = ACTIONS(4513), [sym__backtick_identifier] = ACTIONS(4515), [sym__automatic_semicolon] = ACTIONS(4515), [sym_safe_nav] = ACTIONS(4515), @@ -362408,7 +362408,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4632), [anon_sym_AMP_AMP] = ACTIONS(4632), [anon_sym_PIPE_PIPE] = ACTIONS(4632), - [anon_sym_null] = ACTIONS(4630), [anon_sym_if] = ACTIONS(4630), [anon_sym_else] = ACTIONS(4630), [anon_sym_when] = ACTIONS(4630), @@ -362459,6 +362458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4630), [anon_sym_false] = ACTIONS(4630), [anon_sym_SQUOTE] = ACTIONS(4632), + [sym_null_literal] = ACTIONS(4630), [sym__backtick_identifier] = ACTIONS(4632), [sym__automatic_semicolon] = ACTIONS(4632), [sym_safe_nav] = ACTIONS(4632), @@ -362661,7 +362661,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4131), [sym_label] = ACTIONS(4129), [anon_sym_in] = ACTIONS(4129), - [anon_sym_null] = ACTIONS(4129), [anon_sym_if] = ACTIONS(4129), [anon_sym_else] = ACTIONS(4129), [anon_sym_when] = ACTIONS(4129), @@ -362718,6 +362717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4129), [anon_sym_false] = ACTIONS(4129), [anon_sym_SQUOTE] = ACTIONS(4131), + [sym_null_literal] = ACTIONS(4129), [sym__backtick_identifier] = ACTIONS(4131), [sym__automatic_semicolon] = ACTIONS(4131), [sym_multiline_comment] = ACTIONS(3), @@ -362752,7 +362752,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4601), [anon_sym_AMP_AMP] = ACTIONS(4601), [anon_sym_PIPE_PIPE] = ACTIONS(4601), - [anon_sym_null] = ACTIONS(4599), [anon_sym_if] = ACTIONS(4599), [anon_sym_else] = ACTIONS(4599), [anon_sym_when] = ACTIONS(4599), @@ -362803,6 +362802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4599), [anon_sym_false] = ACTIONS(4599), [anon_sym_SQUOTE] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4599), [sym__backtick_identifier] = ACTIONS(4601), [sym__automatic_semicolon] = ACTIONS(4601), [sym_safe_nav] = ACTIONS(4601), @@ -362838,7 +362838,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4673), [anon_sym_AMP_AMP] = ACTIONS(4673), [anon_sym_PIPE_PIPE] = ACTIONS(4673), - [anon_sym_null] = ACTIONS(4670), [anon_sym_if] = ACTIONS(4670), [anon_sym_else] = ACTIONS(4670), [anon_sym_when] = ACTIONS(4670), @@ -362889,6 +362888,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4670), [anon_sym_false] = ACTIONS(4670), [anon_sym_SQUOTE] = ACTIONS(4673), + [sym_null_literal] = ACTIONS(4670), [sym__backtick_identifier] = ACTIONS(4673), [sym__automatic_semicolon] = ACTIONS(4673), [sym_safe_nav] = ACTIONS(4673), @@ -362924,7 +362924,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4396), [anon_sym_AMP_AMP] = ACTIONS(4396), [anon_sym_PIPE_PIPE] = ACTIONS(4396), - [anon_sym_null] = ACTIONS(4394), [anon_sym_if] = ACTIONS(4394), [anon_sym_else] = ACTIONS(4394), [anon_sym_when] = ACTIONS(4394), @@ -362975,6 +362974,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4394), [anon_sym_false] = ACTIONS(4394), [anon_sym_SQUOTE] = ACTIONS(4396), + [sym_null_literal] = ACTIONS(4394), [sym__backtick_identifier] = ACTIONS(4396), [sym__automatic_semicolon] = ACTIONS(4396), [sym_safe_nav] = ACTIONS(4396), @@ -363177,7 +363177,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4236), [sym_label] = ACTIONS(4234), [anon_sym_in] = ACTIONS(4234), - [anon_sym_null] = ACTIONS(4234), [anon_sym_if] = ACTIONS(4234), [anon_sym_else] = ACTIONS(4234), [anon_sym_when] = ACTIONS(4234), @@ -363234,6 +363233,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4234), [anon_sym_false] = ACTIONS(4234), [anon_sym_SQUOTE] = ACTIONS(4236), + [sym_null_literal] = ACTIONS(4234), [sym__backtick_identifier] = ACTIONS(4236), [sym__automatic_semicolon] = ACTIONS(4236), [sym_multiline_comment] = ACTIONS(3), @@ -363354,7 +363354,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4589), [anon_sym_AMP_AMP] = ACTIONS(4589), [anon_sym_PIPE_PIPE] = ACTIONS(4589), - [anon_sym_null] = ACTIONS(4587), [anon_sym_if] = ACTIONS(4587), [anon_sym_else] = ACTIONS(4587), [anon_sym_when] = ACTIONS(4587), @@ -363405,6 +363404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4587), [anon_sym_false] = ACTIONS(4587), [anon_sym_SQUOTE] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4587), [sym__backtick_identifier] = ACTIONS(4589), [sym__automatic_semicolon] = ACTIONS(4589), [sym_safe_nav] = ACTIONS(4589), @@ -363440,7 +363440,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4515), [anon_sym_AMP_AMP] = ACTIONS(4515), [anon_sym_PIPE_PIPE] = ACTIONS(4515), - [anon_sym_null] = ACTIONS(4513), [anon_sym_if] = ACTIONS(4513), [anon_sym_else] = ACTIONS(4513), [anon_sym_when] = ACTIONS(4513), @@ -363491,6 +363490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4513), [anon_sym_false] = ACTIONS(4513), [anon_sym_SQUOTE] = ACTIONS(4515), + [sym_null_literal] = ACTIONS(4513), [sym__backtick_identifier] = ACTIONS(4515), [sym__automatic_semicolon] = ACTIONS(4515), [sym_safe_nav] = ACTIONS(4515), @@ -363521,7 +363521,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4150), [sym_label] = ACTIONS(4148), [anon_sym_in] = ACTIONS(4148), - [anon_sym_null] = ACTIONS(4148), [anon_sym_if] = ACTIONS(4148), [anon_sym_else] = ACTIONS(4148), [anon_sym_when] = ACTIONS(4148), @@ -363578,6 +363577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4148), [anon_sym_false] = ACTIONS(4148), [anon_sym_SQUOTE] = ACTIONS(4150), + [sym_null_literal] = ACTIONS(4148), [sym__backtick_identifier] = ACTIONS(4150), [sym__automatic_semicolon] = ACTIONS(4150), [sym_multiline_comment] = ACTIONS(3), @@ -363697,7 +363697,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4700), [anon_sym_AMP_AMP] = ACTIONS(4700), [anon_sym_PIPE_PIPE] = ACTIONS(4700), - [anon_sym_null] = ACTIONS(4698), [anon_sym_if] = ACTIONS(4698), [anon_sym_else] = ACTIONS(4698), [anon_sym_when] = ACTIONS(4698), @@ -363749,6 +363748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4698), [anon_sym_false] = ACTIONS(4698), [anon_sym_SQUOTE] = ACTIONS(4700), + [sym_null_literal] = ACTIONS(4698), [sym__backtick_identifier] = ACTIONS(4700), [sym__automatic_semicolon] = ACTIONS(4700), [sym_safe_nav] = ACTIONS(4700), @@ -363783,7 +363783,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5009), [anon_sym_AMP_AMP] = ACTIONS(5009), [anon_sym_PIPE_PIPE] = ACTIONS(5009), - [anon_sym_null] = ACTIONS(5007), [anon_sym_if] = ACTIONS(5007), [anon_sym_else] = ACTIONS(5007), [anon_sym_when] = ACTIONS(5007), @@ -363834,6 +363833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5007), [anon_sym_false] = ACTIONS(5007), [anon_sym_SQUOTE] = ACTIONS(5009), + [sym_null_literal] = ACTIONS(5007), [sym__backtick_identifier] = ACTIONS(5009), [sym__automatic_semicolon] = ACTIONS(5009), [sym_safe_nav] = ACTIONS(5009), @@ -363868,7 +363868,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4414), [anon_sym_AMP_AMP] = ACTIONS(4414), [anon_sym_PIPE_PIPE] = ACTIONS(4414), - [anon_sym_null] = ACTIONS(4412), [anon_sym_if] = ACTIONS(4412), [anon_sym_else] = ACTIONS(4412), [anon_sym_when] = ACTIONS(4412), @@ -363919,6 +363918,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4412), [anon_sym_false] = ACTIONS(4412), [anon_sym_SQUOTE] = ACTIONS(4414), + [sym_null_literal] = ACTIONS(4412), [sym__backtick_identifier] = ACTIONS(4414), [sym__automatic_semicolon] = ACTIONS(4414), [sym_safe_nav] = ACTIONS(4414), @@ -363953,7 +363953,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4938), [anon_sym_AMP_AMP] = ACTIONS(4938), [anon_sym_PIPE_PIPE] = ACTIONS(4938), - [anon_sym_null] = ACTIONS(4936), [anon_sym_if] = ACTIONS(4936), [anon_sym_else] = ACTIONS(4936), [anon_sym_when] = ACTIONS(4936), @@ -364004,6 +364003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4936), [anon_sym_false] = ACTIONS(4936), [anon_sym_SQUOTE] = ACTIONS(4938), + [sym_null_literal] = ACTIONS(4936), [sym__backtick_identifier] = ACTIONS(4938), [sym__automatic_semicolon] = ACTIONS(4938), [sym_safe_nav] = ACTIONS(4938), @@ -364123,7 +364123,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4934), [anon_sym_AMP_AMP] = ACTIONS(4934), [anon_sym_PIPE_PIPE] = ACTIONS(4934), - [anon_sym_null] = ACTIONS(4932), [anon_sym_if] = ACTIONS(4932), [anon_sym_else] = ACTIONS(4932), [anon_sym_when] = ACTIONS(4932), @@ -364174,6 +364173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4932), [anon_sym_false] = ACTIONS(4932), [anon_sym_SQUOTE] = ACTIONS(4934), + [sym_null_literal] = ACTIONS(4932), [sym__backtick_identifier] = ACTIONS(4934), [sym__automatic_semicolon] = ACTIONS(4934), [sym_safe_nav] = ACTIONS(4934), @@ -364208,7 +364208,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4930), [anon_sym_AMP_AMP] = ACTIONS(4930), [anon_sym_PIPE_PIPE] = ACTIONS(4930), - [anon_sym_null] = ACTIONS(4928), [anon_sym_if] = ACTIONS(4928), [anon_sym_else] = ACTIONS(4928), [anon_sym_when] = ACTIONS(4928), @@ -364259,6 +364258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4928), [anon_sym_false] = ACTIONS(4928), [anon_sym_SQUOTE] = ACTIONS(4930), + [sym_null_literal] = ACTIONS(4928), [sym__backtick_identifier] = ACTIONS(4930), [sym__automatic_semicolon] = ACTIONS(4930), [sym_safe_nav] = ACTIONS(4930), @@ -364293,7 +364293,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4886), [anon_sym_AMP_AMP] = ACTIONS(4886), [anon_sym_PIPE_PIPE] = ACTIONS(4886), - [anon_sym_null] = ACTIONS(4884), [anon_sym_if] = ACTIONS(4884), [anon_sym_else] = ACTIONS(4884), [anon_sym_when] = ACTIONS(4884), @@ -364344,6 +364343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4884), [anon_sym_false] = ACTIONS(4884), [anon_sym_SQUOTE] = ACTIONS(4886), + [sym_null_literal] = ACTIONS(4884), [sym__backtick_identifier] = ACTIONS(4886), [sym__automatic_semicolon] = ACTIONS(4886), [sym_safe_nav] = ACTIONS(4886), @@ -364378,7 +364378,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4922), [anon_sym_AMP_AMP] = ACTIONS(4922), [anon_sym_PIPE_PIPE] = ACTIONS(4922), - [anon_sym_null] = ACTIONS(4920), [anon_sym_if] = ACTIONS(4920), [anon_sym_else] = ACTIONS(4920), [anon_sym_when] = ACTIONS(4920), @@ -364429,6 +364428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4920), [anon_sym_false] = ACTIONS(4920), [anon_sym_SQUOTE] = ACTIONS(4922), + [sym_null_literal] = ACTIONS(4920), [sym__backtick_identifier] = ACTIONS(4922), [sym__automatic_semicolon] = ACTIONS(4922), [sym_safe_nav] = ACTIONS(4922), @@ -364463,7 +364463,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4220), [anon_sym_AMP_AMP] = ACTIONS(4220), [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(4222), [anon_sym_when] = ACTIONS(3938), @@ -364514,6 +364513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(4217), [sym__automatic_semicolon] = ACTIONS(4220), [sym_safe_nav] = ACTIONS(4220), @@ -364548,7 +364548,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4914), [anon_sym_AMP_AMP] = ACTIONS(4914), [anon_sym_PIPE_PIPE] = ACTIONS(4914), - [anon_sym_null] = ACTIONS(4912), [anon_sym_if] = ACTIONS(4912), [anon_sym_else] = ACTIONS(4912), [anon_sym_when] = ACTIONS(4912), @@ -364599,6 +364598,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4912), [anon_sym_false] = ACTIONS(4912), [anon_sym_SQUOTE] = ACTIONS(4914), + [sym_null_literal] = ACTIONS(4912), [sym__backtick_identifier] = ACTIONS(4914), [sym__automatic_semicolon] = ACTIONS(4914), [sym_safe_nav] = ACTIONS(4914), @@ -364633,7 +364633,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4910), [anon_sym_AMP_AMP] = ACTIONS(4910), [anon_sym_PIPE_PIPE] = ACTIONS(4910), - [anon_sym_null] = ACTIONS(4908), [anon_sym_if] = ACTIONS(4908), [anon_sym_else] = ACTIONS(4908), [anon_sym_when] = ACTIONS(4908), @@ -364684,6 +364683,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4908), [anon_sym_false] = ACTIONS(4908), [anon_sym_SQUOTE] = ACTIONS(4910), + [sym_null_literal] = ACTIONS(4908), [sym__backtick_identifier] = ACTIONS(4910), [sym__automatic_semicolon] = ACTIONS(4910), [sym_safe_nav] = ACTIONS(4910), @@ -364718,7 +364718,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4188), [anon_sym_AMP_AMP] = ACTIONS(4188), [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(4190), [anon_sym_when] = ACTIONS(3938), @@ -364769,6 +364768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(4185), [sym__automatic_semicolon] = ACTIONS(4188), [sym_safe_nav] = ACTIONS(4188), @@ -365058,7 +365058,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4046), [anon_sym_AMP_AMP] = ACTIONS(4046), [anon_sym_PIPE_PIPE] = ACTIONS(4046), - [anon_sym_null] = ACTIONS(4044), [anon_sym_if] = ACTIONS(4044), [anon_sym_else] = ACTIONS(4044), [anon_sym_when] = ACTIONS(4044), @@ -365109,6 +365108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4044), [anon_sym_false] = ACTIONS(4044), [anon_sym_SQUOTE] = ACTIONS(4046), + [sym_null_literal] = ACTIONS(4044), [sym__backtick_identifier] = ACTIONS(4046), [sym__automatic_semicolon] = ACTIONS(4046), [sym_safe_nav] = ACTIONS(4046), @@ -365143,7 +365143,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4902), [anon_sym_AMP_AMP] = ACTIONS(4902), [anon_sym_PIPE_PIPE] = ACTIONS(4902), - [anon_sym_null] = ACTIONS(4900), [anon_sym_if] = ACTIONS(4900), [anon_sym_else] = ACTIONS(4900), [anon_sym_when] = ACTIONS(4900), @@ -365194,6 +365193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4900), [anon_sym_false] = ACTIONS(4900), [anon_sym_SQUOTE] = ACTIONS(4902), + [sym_null_literal] = ACTIONS(4900), [sym__backtick_identifier] = ACTIONS(4902), [sym__automatic_semicolon] = ACTIONS(4902), [sym_safe_nav] = ACTIONS(4902), @@ -365228,7 +365228,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4894), [anon_sym_AMP_AMP] = ACTIONS(4894), [anon_sym_PIPE_PIPE] = ACTIONS(4894), - [anon_sym_null] = ACTIONS(4892), [anon_sym_if] = ACTIONS(4892), [anon_sym_else] = ACTIONS(4892), [anon_sym_when] = ACTIONS(4892), @@ -365279,6 +365278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4892), [anon_sym_false] = ACTIONS(4892), [anon_sym_SQUOTE] = ACTIONS(4894), + [sym_null_literal] = ACTIONS(4892), [sym__backtick_identifier] = ACTIONS(4894), [sym__automatic_semicolon] = ACTIONS(4894), [sym_safe_nav] = ACTIONS(4894), @@ -365313,7 +365313,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3934), [anon_sym_AMP_AMP] = ACTIONS(3934), [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [anon_sym_null] = ACTIONS(3932), [anon_sym_if] = ACTIONS(3932), [anon_sym_else] = ACTIONS(3932), [anon_sym_when] = ACTIONS(3932), @@ -365364,6 +365363,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3932), [anon_sym_false] = ACTIONS(3932), [anon_sym_SQUOTE] = ACTIONS(3934), + [sym_null_literal] = ACTIONS(3932), [sym__backtick_identifier] = ACTIONS(3934), [sym__automatic_semicolon] = ACTIONS(3934), [sym_safe_nav] = ACTIONS(3934), @@ -365398,7 +365398,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3067), [anon_sym_AMP_AMP] = ACTIONS(3067), [anon_sym_PIPE_PIPE] = ACTIONS(3067), - [anon_sym_null] = ACTIONS(3065), [anon_sym_if] = ACTIONS(3065), [anon_sym_else] = ACTIONS(3065), [anon_sym_when] = ACTIONS(3065), @@ -365449,6 +365448,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3065), [anon_sym_false] = ACTIONS(3065), [anon_sym_SQUOTE] = ACTIONS(3067), + [sym_null_literal] = ACTIONS(3065), [sym__backtick_identifier] = ACTIONS(3067), [sym__automatic_semicolon] = ACTIONS(3067), [sym_safe_nav] = ACTIONS(3067), @@ -365478,7 +365478,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4166), [sym_label] = ACTIONS(4164), [anon_sym_in] = ACTIONS(4164), - [anon_sym_null] = ACTIONS(4164), [anon_sym_if] = ACTIONS(4164), [anon_sym_else] = ACTIONS(4164), [anon_sym_when] = ACTIONS(4164), @@ -365535,6 +365534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4164), [anon_sym_false] = ACTIONS(4164), [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4164), [sym__backtick_identifier] = ACTIONS(4166), [sym__automatic_semicolon] = ACTIONS(4166), [sym_multiline_comment] = ACTIONS(3), @@ -365568,7 +365568,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4848), [anon_sym_AMP_AMP] = ACTIONS(4848), [anon_sym_PIPE_PIPE] = ACTIONS(4848), - [anon_sym_null] = ACTIONS(4846), [anon_sym_if] = ACTIONS(4846), [anon_sym_else] = ACTIONS(4846), [anon_sym_when] = ACTIONS(4846), @@ -365619,6 +365618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4846), [anon_sym_false] = ACTIONS(4846), [anon_sym_SQUOTE] = ACTIONS(4848), + [sym_null_literal] = ACTIONS(4846), [sym__backtick_identifier] = ACTIONS(4848), [sym__automatic_semicolon] = ACTIONS(4848), [sym_safe_nav] = ACTIONS(4848), @@ -365648,7 +365648,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4210), [sym_label] = ACTIONS(4208), [anon_sym_in] = ACTIONS(4208), - [anon_sym_null] = ACTIONS(4208), [anon_sym_if] = ACTIONS(4208), [anon_sym_else] = ACTIONS(4208), [anon_sym_when] = ACTIONS(4208), @@ -365705,6 +365704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4208), [anon_sym_false] = ACTIONS(4208), [anon_sym_SQUOTE] = ACTIONS(4210), + [sym_null_literal] = ACTIONS(4208), [sym__backtick_identifier] = ACTIONS(4210), [sym__automatic_semicolon] = ACTIONS(4210), [sym_multiline_comment] = ACTIONS(3), @@ -365738,7 +365738,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4834), [anon_sym_AMP_AMP] = ACTIONS(4834), [anon_sym_PIPE_PIPE] = ACTIONS(4834), - [anon_sym_null] = ACTIONS(4832), [anon_sym_if] = ACTIONS(4832), [anon_sym_else] = ACTIONS(4832), [anon_sym_when] = ACTIONS(4832), @@ -365789,6 +365788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4832), [anon_sym_false] = ACTIONS(4832), [anon_sym_SQUOTE] = ACTIONS(4834), + [sym_null_literal] = ACTIONS(4832), [sym__backtick_identifier] = ACTIONS(4834), [sym__automatic_semicolon] = ACTIONS(4834), [sym_safe_nav] = ACTIONS(4834), @@ -365823,7 +365823,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4824), [anon_sym_AMP_AMP] = ACTIONS(4824), [anon_sym_PIPE_PIPE] = ACTIONS(4824), - [anon_sym_null] = ACTIONS(4822), [anon_sym_if] = ACTIONS(4822), [anon_sym_else] = ACTIONS(4822), [anon_sym_when] = ACTIONS(4822), @@ -365874,6 +365873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4822), [anon_sym_false] = ACTIONS(4822), [anon_sym_SQUOTE] = ACTIONS(4824), + [sym_null_literal] = ACTIONS(4822), [sym__backtick_identifier] = ACTIONS(4824), [sym__automatic_semicolon] = ACTIONS(4824), [sym_safe_nav] = ACTIONS(4824), @@ -365908,7 +365908,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4994), [anon_sym_AMP_AMP] = ACTIONS(4994), [anon_sym_PIPE_PIPE] = ACTIONS(4994), - [anon_sym_null] = ACTIONS(4992), [anon_sym_if] = ACTIONS(4992), [anon_sym_else] = ACTIONS(4992), [anon_sym_when] = ACTIONS(4992), @@ -365959,6 +365958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4992), [anon_sym_false] = ACTIONS(4992), [anon_sym_SQUOTE] = ACTIONS(4994), + [sym_null_literal] = ACTIONS(4992), [sym__backtick_identifier] = ACTIONS(4994), [sym__automatic_semicolon] = ACTIONS(4994), [sym_safe_nav] = ACTIONS(4994), @@ -366073,7 +366073,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4105), [sym_label] = ACTIONS(4103), [anon_sym_in] = ACTIONS(4103), - [anon_sym_null] = ACTIONS(4103), [anon_sym_if] = ACTIONS(4103), [anon_sym_else] = ACTIONS(4103), [anon_sym_when] = ACTIONS(4103), @@ -366130,6 +366129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4103), [anon_sym_false] = ACTIONS(4103), [anon_sym_SQUOTE] = ACTIONS(4105), + [sym_null_literal] = ACTIONS(4103), [sym__backtick_identifier] = ACTIONS(4105), [sym__automatic_semicolon] = ACTIONS(4105), [sym_multiline_comment] = ACTIONS(3), @@ -366248,7 +366248,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4816), [anon_sym_AMP_AMP] = ACTIONS(4816), [anon_sym_PIPE_PIPE] = ACTIONS(4816), - [anon_sym_null] = ACTIONS(4814), [anon_sym_if] = ACTIONS(4814), [anon_sym_else] = ACTIONS(4814), [anon_sym_when] = ACTIONS(4814), @@ -366299,6 +366298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4814), [anon_sym_false] = ACTIONS(4814), [anon_sym_SQUOTE] = ACTIONS(4816), + [sym_null_literal] = ACTIONS(4814), [sym__backtick_identifier] = ACTIONS(4816), [sym__automatic_semicolon] = ACTIONS(4816), [sym_safe_nav] = ACTIONS(4816), @@ -366333,7 +366333,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4258), [anon_sym_AMP_AMP] = ACTIONS(4258), [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), [anon_sym_if] = ACTIONS(4256), [anon_sym_else] = ACTIONS(4256), [anon_sym_when] = ACTIONS(4256), @@ -366384,6 +366383,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4256), [anon_sym_false] = ACTIONS(4256), [anon_sym_SQUOTE] = ACTIONS(4258), + [sym_null_literal] = ACTIONS(4256), [sym__backtick_identifier] = ACTIONS(4258), [sym__automatic_semicolon] = ACTIONS(4258), [sym_safe_nav] = ACTIONS(4258), @@ -366673,7 +366673,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4812), [anon_sym_AMP_AMP] = ACTIONS(4812), [anon_sym_PIPE_PIPE] = ACTIONS(4812), - [anon_sym_null] = ACTIONS(4810), [anon_sym_if] = ACTIONS(4810), [anon_sym_else] = ACTIONS(4810), [anon_sym_when] = ACTIONS(4810), @@ -366724,6 +366723,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4810), [anon_sym_false] = ACTIONS(4810), [anon_sym_SQUOTE] = ACTIONS(4812), + [sym_null_literal] = ACTIONS(4810), [sym__backtick_identifier] = ACTIONS(4812), [sym__automatic_semicolon] = ACTIONS(4812), [sym_safe_nav] = ACTIONS(4812), @@ -366758,7 +366758,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4198), [anon_sym_AMP_AMP] = ACTIONS(4198), [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), [anon_sym_if] = ACTIONS(4196), [anon_sym_else] = ACTIONS(4196), [anon_sym_when] = ACTIONS(4196), @@ -366809,6 +366808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4196), [anon_sym_false] = ACTIONS(4196), [anon_sym_SQUOTE] = ACTIONS(4198), + [sym_null_literal] = ACTIONS(4196), [sym__backtick_identifier] = ACTIONS(4198), [sym__automatic_semicolon] = ACTIONS(4198), [sym_safe_nav] = ACTIONS(4198), @@ -366928,7 +366928,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4882), [anon_sym_AMP_AMP] = ACTIONS(4882), [anon_sym_PIPE_PIPE] = ACTIONS(4882), - [anon_sym_null] = ACTIONS(4880), [anon_sym_if] = ACTIONS(4880), [anon_sym_else] = ACTIONS(4880), [anon_sym_when] = ACTIONS(4880), @@ -366979,6 +366978,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4880), [anon_sym_false] = ACTIONS(4880), [anon_sym_SQUOTE] = ACTIONS(4882), + [sym_null_literal] = ACTIONS(4880), [sym__backtick_identifier] = ACTIONS(4882), [sym__automatic_semicolon] = ACTIONS(4882), [sym_safe_nav] = ACTIONS(4882), @@ -367098,7 +367098,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4898), [anon_sym_AMP_AMP] = ACTIONS(4898), [anon_sym_PIPE_PIPE] = ACTIONS(4898), - [anon_sym_null] = ACTIONS(4896), [anon_sym_if] = ACTIONS(4896), [anon_sym_else] = ACTIONS(4896), [anon_sym_when] = ACTIONS(4896), @@ -367149,6 +367148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4896), [anon_sym_false] = ACTIONS(4896), [anon_sym_SQUOTE] = ACTIONS(4898), + [sym_null_literal] = ACTIONS(4896), [sym__backtick_identifier] = ACTIONS(4898), [sym__automatic_semicolon] = ACTIONS(4898), [sym_safe_nav] = ACTIONS(4898), @@ -367183,7 +367183,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4906), [anon_sym_AMP_AMP] = ACTIONS(4906), [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_null] = ACTIONS(4904), [anon_sym_if] = ACTIONS(4904), [anon_sym_else] = ACTIONS(4904), [anon_sym_when] = ACTIONS(4904), @@ -367234,6 +367233,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4904), [anon_sym_false] = ACTIONS(4904), [anon_sym_SQUOTE] = ACTIONS(4906), + [sym_null_literal] = ACTIONS(4904), [sym__backtick_identifier] = ACTIONS(4906), [sym__automatic_semicolon] = ACTIONS(4906), [sym_safe_nav] = ACTIONS(4906), @@ -367268,7 +367268,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4445), [anon_sym_AMP_AMP] = ACTIONS(4445), [anon_sym_PIPE_PIPE] = ACTIONS(4445), - [anon_sym_null] = ACTIONS(4443), [anon_sym_if] = ACTIONS(4443), [anon_sym_else] = ACTIONS(4443), [anon_sym_when] = ACTIONS(4443), @@ -367319,6 +367318,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4443), [anon_sym_false] = ACTIONS(4443), [anon_sym_SQUOTE] = ACTIONS(4445), + [sym_null_literal] = ACTIONS(4443), [sym__backtick_identifier] = ACTIONS(4445), [sym__automatic_semicolon] = ACTIONS(4445), [sym_safe_nav] = ACTIONS(4445), @@ -367438,7 +367438,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4794), [anon_sym_AMP_AMP] = ACTIONS(4794), [anon_sym_PIPE_PIPE] = ACTIONS(4794), - [anon_sym_null] = ACTIONS(4792), [anon_sym_if] = ACTIONS(4792), [anon_sym_else] = ACTIONS(4792), [anon_sym_when] = ACTIONS(4792), @@ -367489,6 +367488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4792), [anon_sym_false] = ACTIONS(4792), [anon_sym_SQUOTE] = ACTIONS(4794), + [sym_null_literal] = ACTIONS(4792), [sym__backtick_identifier] = ACTIONS(4794), [sym__automatic_semicolon] = ACTIONS(4794), [sym_safe_nav] = ACTIONS(4794), @@ -367523,7 +367523,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4790), [anon_sym_AMP_AMP] = ACTIONS(4790), [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [anon_sym_null] = ACTIONS(4788), [anon_sym_if] = ACTIONS(4788), [anon_sym_else] = ACTIONS(4788), [anon_sym_when] = ACTIONS(4788), @@ -367574,6 +367573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4788), [anon_sym_false] = ACTIONS(4788), [anon_sym_SQUOTE] = ACTIONS(4790), + [sym_null_literal] = ACTIONS(4788), [sym__backtick_identifier] = ACTIONS(4790), [sym__automatic_semicolon] = ACTIONS(4790), [sym_safe_nav] = ACTIONS(4790), @@ -367608,7 +367608,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4782), [anon_sym_AMP_AMP] = ACTIONS(4782), [anon_sym_PIPE_PIPE] = ACTIONS(4782), - [anon_sym_null] = ACTIONS(4780), [anon_sym_if] = ACTIONS(4780), [anon_sym_else] = ACTIONS(4780), [anon_sym_when] = ACTIONS(4780), @@ -367659,6 +367658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4780), [anon_sym_false] = ACTIONS(4780), [anon_sym_SQUOTE] = ACTIONS(4782), + [sym_null_literal] = ACTIONS(4780), [sym__backtick_identifier] = ACTIONS(4782), [sym__automatic_semicolon] = ACTIONS(4782), [sym_safe_nav] = ACTIONS(4782), @@ -367693,7 +367693,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4778), [anon_sym_AMP_AMP] = ACTIONS(4778), [anon_sym_PIPE_PIPE] = ACTIONS(4778), - [anon_sym_null] = ACTIONS(4776), [anon_sym_if] = ACTIONS(4776), [anon_sym_else] = ACTIONS(4776), [anon_sym_when] = ACTIONS(4776), @@ -367744,6 +367743,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4776), [anon_sym_false] = ACTIONS(4776), [anon_sym_SQUOTE] = ACTIONS(4778), + [sym_null_literal] = ACTIONS(4776), [sym__backtick_identifier] = ACTIONS(4778), [sym__automatic_semicolon] = ACTIONS(4778), [sym_safe_nav] = ACTIONS(4778), @@ -367778,7 +367778,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4946), [anon_sym_AMP_AMP] = ACTIONS(4946), [anon_sym_PIPE_PIPE] = ACTIONS(4946), - [anon_sym_null] = ACTIONS(4944), [anon_sym_if] = ACTIONS(4944), [anon_sym_else] = ACTIONS(4944), [anon_sym_when] = ACTIONS(4944), @@ -367829,6 +367828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4944), [anon_sym_false] = ACTIONS(4944), [anon_sym_SQUOTE] = ACTIONS(4946), + [sym_null_literal] = ACTIONS(4944), [sym__backtick_identifier] = ACTIONS(4946), [sym__automatic_semicolon] = ACTIONS(4946), [sym_safe_nav] = ACTIONS(4946), @@ -367863,7 +367863,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3370), [anon_sym_AMP_AMP] = ACTIONS(3370), [anon_sym_PIPE_PIPE] = ACTIONS(3370), - [anon_sym_null] = ACTIONS(3368), [anon_sym_if] = ACTIONS(3368), [anon_sym_else] = ACTIONS(3368), [anon_sym_when] = ACTIONS(3368), @@ -367914,6 +367913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3368), [anon_sym_false] = ACTIONS(3368), [anon_sym_SQUOTE] = ACTIONS(3370), + [sym_null_literal] = ACTIONS(3368), [sym__backtick_identifier] = ACTIONS(3370), [sym__automatic_semicolon] = ACTIONS(3370), [sym_safe_nav] = ACTIONS(3370), @@ -367948,7 +367948,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4772), [anon_sym_AMP_AMP] = ACTIONS(4772), [anon_sym_PIPE_PIPE] = ACTIONS(4772), - [anon_sym_null] = ACTIONS(4770), [anon_sym_if] = ACTIONS(4770), [anon_sym_else] = ACTIONS(4770), [anon_sym_when] = ACTIONS(4770), @@ -367999,6 +367998,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4770), [anon_sym_false] = ACTIONS(4770), [anon_sym_SQUOTE] = ACTIONS(4772), + [sym_null_literal] = ACTIONS(4770), [sym__backtick_identifier] = ACTIONS(4772), [sym__automatic_semicolon] = ACTIONS(4772), [sym_safe_nav] = ACTIONS(4772), @@ -368033,7 +368033,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4445), [anon_sym_AMP_AMP] = ACTIONS(4445), [anon_sym_PIPE_PIPE] = ACTIONS(4445), - [anon_sym_null] = ACTIONS(4443), [anon_sym_if] = ACTIONS(4443), [anon_sym_else] = ACTIONS(4443), [anon_sym_when] = ACTIONS(4443), @@ -368084,6 +368083,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4443), [anon_sym_false] = ACTIONS(4443), [anon_sym_SQUOTE] = ACTIONS(4445), + [sym_null_literal] = ACTIONS(4443), [sym__backtick_identifier] = ACTIONS(4445), [sym__automatic_semicolon] = ACTIONS(4445), [sym_safe_nav] = ACTIONS(4445), @@ -368203,7 +368203,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4866), [anon_sym_AMP_AMP] = ACTIONS(4866), [anon_sym_PIPE_PIPE] = ACTIONS(4866), - [anon_sym_null] = ACTIONS(4864), [anon_sym_if] = ACTIONS(4864), [anon_sym_else] = ACTIONS(4864), [anon_sym_when] = ACTIONS(4864), @@ -368254,6 +368253,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4864), [anon_sym_false] = ACTIONS(4864), [anon_sym_SQUOTE] = ACTIONS(4866), + [sym_null_literal] = ACTIONS(4864), [sym__backtick_identifier] = ACTIONS(4866), [sym__automatic_semicolon] = ACTIONS(4866), [sym_safe_nav] = ACTIONS(4866), @@ -368288,7 +368288,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4632), [anon_sym_AMP_AMP] = ACTIONS(4632), [anon_sym_PIPE_PIPE] = ACTIONS(4632), - [anon_sym_null] = ACTIONS(4630), [anon_sym_if] = ACTIONS(4630), [anon_sym_else] = ACTIONS(4630), [anon_sym_when] = ACTIONS(4630), @@ -368339,6 +368338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4630), [anon_sym_false] = ACTIONS(4630), [anon_sym_SQUOTE] = ACTIONS(4632), + [sym_null_literal] = ACTIONS(4630), [sym__backtick_identifier] = ACTIONS(4632), [sym__automatic_semicolon] = ACTIONS(4632), [sym_safe_nav] = ACTIONS(4632), @@ -368373,7 +368373,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4870), [anon_sym_AMP_AMP] = ACTIONS(4870), [anon_sym_PIPE_PIPE] = ACTIONS(4870), - [anon_sym_null] = ACTIONS(4868), [anon_sym_if] = ACTIONS(4868), [anon_sym_else] = ACTIONS(4868), [anon_sym_when] = ACTIONS(4868), @@ -368424,6 +368423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4868), [anon_sym_false] = ACTIONS(4868), [anon_sym_SQUOTE] = ACTIONS(4870), + [sym_null_literal] = ACTIONS(4868), [sym__backtick_identifier] = ACTIONS(4870), [sym__automatic_semicolon] = ACTIONS(4870), [sym_safe_nav] = ACTIONS(4870), @@ -368458,7 +368458,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4002), [anon_sym_AMP_AMP] = ACTIONS(4002), [anon_sym_PIPE_PIPE] = ACTIONS(4002), - [anon_sym_null] = ACTIONS(4000), [anon_sym_if] = ACTIONS(4000), [anon_sym_else] = ACTIONS(4000), [anon_sym_when] = ACTIONS(4000), @@ -368509,6 +368508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4000), [anon_sym_false] = ACTIONS(4000), [anon_sym_SQUOTE] = ACTIONS(4002), + [sym_null_literal] = ACTIONS(4000), [sym__backtick_identifier] = ACTIONS(4002), [sym__automatic_semicolon] = ACTIONS(4002), [sym_safe_nav] = ACTIONS(4002), @@ -368543,7 +368543,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1766), [anon_sym_AMP_AMP] = ACTIONS(1766), [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), [anon_sym_if] = ACTIONS(1764), [anon_sym_else] = ACTIONS(1764), [anon_sym_when] = ACTIONS(1764), @@ -368594,6 +368593,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1764), [anon_sym_false] = ACTIONS(1764), [anon_sym_SQUOTE] = ACTIONS(1766), + [sym_null_literal] = ACTIONS(1764), [sym__backtick_identifier] = ACTIONS(1766), [sym__automatic_semicolon] = ACTIONS(1766), [sym_safe_nav] = ACTIONS(1766), @@ -368628,7 +368628,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4874), [anon_sym_AMP_AMP] = ACTIONS(4874), [anon_sym_PIPE_PIPE] = ACTIONS(4874), - [anon_sym_null] = ACTIONS(4872), [anon_sym_if] = ACTIONS(4872), [anon_sym_else] = ACTIONS(4872), [anon_sym_when] = ACTIONS(4872), @@ -368679,6 +368678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4872), [anon_sym_false] = ACTIONS(4872), [anon_sym_SQUOTE] = ACTIONS(4874), + [sym_null_literal] = ACTIONS(4872), [sym__backtick_identifier] = ACTIONS(4874), [sym__automatic_semicolon] = ACTIONS(4874), [sym_safe_nav] = ACTIONS(4874), @@ -368713,7 +368713,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4950), [anon_sym_AMP_AMP] = ACTIONS(4950), [anon_sym_PIPE_PIPE] = ACTIONS(4950), - [anon_sym_null] = ACTIONS(4948), [anon_sym_if] = ACTIONS(4948), [anon_sym_else] = ACTIONS(4948), [anon_sym_when] = ACTIONS(4948), @@ -368764,6 +368763,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4948), [anon_sym_false] = ACTIONS(4948), [anon_sym_SQUOTE] = ACTIONS(4950), + [sym_null_literal] = ACTIONS(4948), [sym__backtick_identifier] = ACTIONS(4950), [sym__automatic_semicolon] = ACTIONS(4950), [sym_safe_nav] = ACTIONS(4950), @@ -368883,7 +368883,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4878), [anon_sym_AMP_AMP] = ACTIONS(4878), [anon_sym_PIPE_PIPE] = ACTIONS(4878), - [anon_sym_null] = ACTIONS(4876), [anon_sym_if] = ACTIONS(4876), [anon_sym_else] = ACTIONS(4876), [anon_sym_when] = ACTIONS(4876), @@ -368934,6 +368933,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4876), [anon_sym_false] = ACTIONS(4876), [anon_sym_SQUOTE] = ACTIONS(4878), + [sym_null_literal] = ACTIONS(4876), [sym__backtick_identifier] = ACTIONS(4878), [sym__automatic_semicolon] = ACTIONS(4878), [sym_safe_nav] = ACTIONS(4878), @@ -368968,7 +368968,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4954), [anon_sym_AMP_AMP] = ACTIONS(4954), [anon_sym_PIPE_PIPE] = ACTIONS(4954), - [anon_sym_null] = ACTIONS(4952), [anon_sym_if] = ACTIONS(4952), [anon_sym_else] = ACTIONS(4952), [anon_sym_when] = ACTIONS(4952), @@ -369019,6 +369018,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4952), [anon_sym_false] = ACTIONS(4952), [anon_sym_SQUOTE] = ACTIONS(4954), + [sym_null_literal] = ACTIONS(4952), [sym__backtick_identifier] = ACTIONS(4954), [sym__automatic_semicolon] = ACTIONS(4954), [sym_safe_nav] = ACTIONS(4954), @@ -369053,7 +369053,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4262), [anon_sym_AMP_AMP] = ACTIONS(4262), [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_null] = ACTIONS(4260), [anon_sym_if] = ACTIONS(4260), [anon_sym_else] = ACTIONS(4260), [anon_sym_when] = ACTIONS(4260), @@ -369104,6 +369103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4260), [anon_sym_false] = ACTIONS(4260), [anon_sym_SQUOTE] = ACTIONS(4262), + [sym_null_literal] = ACTIONS(4260), [sym__backtick_identifier] = ACTIONS(4262), [sym__automatic_semicolon] = ACTIONS(4262), [sym_safe_nav] = ACTIONS(4262), @@ -369138,7 +369138,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4958), [anon_sym_AMP_AMP] = ACTIONS(4958), [anon_sym_PIPE_PIPE] = ACTIONS(4958), - [anon_sym_null] = ACTIONS(4956), [anon_sym_if] = ACTIONS(4956), [anon_sym_else] = ACTIONS(4956), [anon_sym_when] = ACTIONS(4956), @@ -369189,6 +369188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4956), [anon_sym_false] = ACTIONS(4956), [anon_sym_SQUOTE] = ACTIONS(4958), + [sym_null_literal] = ACTIONS(4956), [sym__backtick_identifier] = ACTIONS(4958), [sym__automatic_semicolon] = ACTIONS(4958), [sym_safe_nav] = ACTIONS(4958), @@ -369223,7 +369223,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4262), [anon_sym_AMP_AMP] = ACTIONS(4262), [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_null] = ACTIONS(4260), [anon_sym_if] = ACTIONS(4260), [anon_sym_else] = ACTIONS(4260), [anon_sym_when] = ACTIONS(4260), @@ -369274,6 +369273,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4260), [anon_sym_false] = ACTIONS(4260), [anon_sym_SQUOTE] = ACTIONS(4262), + [sym_null_literal] = ACTIONS(4260), [sym__backtick_identifier] = ACTIONS(4262), [sym__automatic_semicolon] = ACTIONS(4262), [sym_safe_nav] = ACTIONS(4262), @@ -369308,7 +369308,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4240), [anon_sym_AMP_AMP] = ACTIONS(4240), [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4238), [anon_sym_if] = ACTIONS(4238), [anon_sym_else] = ACTIONS(4238), [anon_sym_when] = ACTIONS(4238), @@ -369359,6 +369358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4238), [anon_sym_false] = ACTIONS(4238), [anon_sym_SQUOTE] = ACTIONS(4240), + [sym_null_literal] = ACTIONS(4238), [sym__backtick_identifier] = ACTIONS(4240), [sym__automatic_semicolon] = ACTIONS(4240), [sym_safe_nav] = ACTIONS(4240), @@ -369393,7 +369393,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5039), [anon_sym_AMP_AMP] = ACTIONS(5039), [anon_sym_PIPE_PIPE] = ACTIONS(5039), - [anon_sym_null] = ACTIONS(5037), [anon_sym_if] = ACTIONS(5037), [anon_sym_else] = ACTIONS(5037), [anon_sym_when] = ACTIONS(5037), @@ -369444,6 +369443,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5037), [anon_sym_false] = ACTIONS(5037), [anon_sym_SQUOTE] = ACTIONS(5039), + [sym_null_literal] = ACTIONS(5037), [sym__backtick_identifier] = ACTIONS(5039), [sym__automatic_semicolon] = ACTIONS(5039), [sym_safe_nav] = ACTIONS(5039), @@ -369478,7 +369478,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5047), [anon_sym_AMP_AMP] = ACTIONS(5047), [anon_sym_PIPE_PIPE] = ACTIONS(5047), - [anon_sym_null] = ACTIONS(5045), [anon_sym_if] = ACTIONS(5045), [anon_sym_else] = ACTIONS(5045), [anon_sym_when] = ACTIONS(5045), @@ -369529,6 +369528,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5045), [anon_sym_false] = ACTIONS(5045), [anon_sym_SQUOTE] = ACTIONS(5047), + [sym_null_literal] = ACTIONS(5045), [sym__backtick_identifier] = ACTIONS(5047), [sym__automatic_semicolon] = ACTIONS(5047), [sym_safe_nav] = ACTIONS(5047), @@ -369648,7 +369648,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4188), [anon_sym_AMP_AMP] = ACTIONS(4188), [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_null] = ACTIONS(4182), [anon_sym_if] = ACTIONS(4182), [anon_sym_else] = ACTIONS(4190), [anon_sym_when] = ACTIONS(4182), @@ -369699,6 +369698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4182), [anon_sym_false] = ACTIONS(4182), [anon_sym_SQUOTE] = ACTIONS(4185), + [sym_null_literal] = ACTIONS(4182), [sym__backtick_identifier] = ACTIONS(4185), [sym__automatic_semicolon] = ACTIONS(4188), [sym_safe_nav] = ACTIONS(4188), @@ -369733,7 +369733,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4734), [anon_sym_AMP_AMP] = ACTIONS(4734), [anon_sym_PIPE_PIPE] = ACTIONS(4734), - [anon_sym_null] = ACTIONS(4732), [anon_sym_if] = ACTIONS(4732), [anon_sym_else] = ACTIONS(4732), [anon_sym_when] = ACTIONS(4732), @@ -369784,6 +369783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4732), [anon_sym_false] = ACTIONS(4732), [anon_sym_SQUOTE] = ACTIONS(4734), + [sym_null_literal] = ACTIONS(4732), [sym__backtick_identifier] = ACTIONS(4734), [sym__automatic_semicolon] = ACTIONS(4734), [sym_safe_nav] = ACTIONS(4734), @@ -369818,7 +369818,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4418), [anon_sym_AMP_AMP] = ACTIONS(4418), [anon_sym_PIPE_PIPE] = ACTIONS(4418), - [anon_sym_null] = ACTIONS(4416), [anon_sym_if] = ACTIONS(4416), [anon_sym_else] = ACTIONS(4416), [anon_sym_when] = ACTIONS(4416), @@ -369869,6 +369868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4416), [anon_sym_false] = ACTIONS(4416), [anon_sym_SQUOTE] = ACTIONS(4418), + [sym_null_literal] = ACTIONS(4416), [sym__backtick_identifier] = ACTIONS(4418), [sym__automatic_semicolon] = ACTIONS(4418), [sym_safe_nav] = ACTIONS(4418), @@ -369903,7 +369903,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4355), [anon_sym_AMP_AMP] = ACTIONS(4355), [anon_sym_PIPE_PIPE] = ACTIONS(4355), - [anon_sym_null] = ACTIONS(4353), [anon_sym_if] = ACTIONS(4353), [anon_sym_else] = ACTIONS(4353), [anon_sym_when] = ACTIONS(4353), @@ -369954,6 +369953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4353), [anon_sym_false] = ACTIONS(4353), [anon_sym_SQUOTE] = ACTIONS(4355), + [sym_null_literal] = ACTIONS(4353), [sym__backtick_identifier] = ACTIONS(4355), [sym__automatic_semicolon] = ACTIONS(4355), [sym_safe_nav] = ACTIONS(4355), @@ -369988,7 +369988,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4918), [anon_sym_AMP_AMP] = ACTIONS(4918), [anon_sym_PIPE_PIPE] = ACTIONS(4918), - [anon_sym_null] = ACTIONS(4916), [anon_sym_if] = ACTIONS(4916), [anon_sym_else] = ACTIONS(4916), [anon_sym_when] = ACTIONS(4916), @@ -370039,6 +370038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4916), [anon_sym_false] = ACTIONS(4916), [anon_sym_SQUOTE] = ACTIONS(4918), + [sym_null_literal] = ACTIONS(4916), [sym__backtick_identifier] = ACTIONS(4918), [sym__automatic_semicolon] = ACTIONS(4918), [sym_safe_nav] = ACTIONS(4918), @@ -370073,7 +370073,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4418), [anon_sym_AMP_AMP] = ACTIONS(4418), [anon_sym_PIPE_PIPE] = ACTIONS(4418), - [anon_sym_null] = ACTIONS(4416), [anon_sym_if] = ACTIONS(4416), [anon_sym_else] = ACTIONS(4416), [anon_sym_when] = ACTIONS(4416), @@ -370124,6 +370123,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4416), [anon_sym_false] = ACTIONS(4416), [anon_sym_SQUOTE] = ACTIONS(4418), + [sym_null_literal] = ACTIONS(4416), [sym__backtick_identifier] = ACTIONS(4418), [sym__automatic_semicolon] = ACTIONS(4418), [sym_safe_nav] = ACTIONS(4418), @@ -370158,7 +370158,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4728), [anon_sym_AMP_AMP] = ACTIONS(4728), [anon_sym_PIPE_PIPE] = ACTIONS(4728), - [anon_sym_null] = ACTIONS(4726), [anon_sym_if] = ACTIONS(4726), [anon_sym_else] = ACTIONS(4726), [anon_sym_when] = ACTIONS(4726), @@ -370209,6 +370208,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4726), [anon_sym_false] = ACTIONS(4726), [anon_sym_SQUOTE] = ACTIONS(4728), + [sym_null_literal] = ACTIONS(4726), [sym__backtick_identifier] = ACTIONS(4728), [sym__automatic_semicolon] = ACTIONS(4728), [sym_safe_nav] = ACTIONS(4728), @@ -370243,7 +370243,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3098), [anon_sym_AMP_AMP] = ACTIONS(3098), [anon_sym_PIPE_PIPE] = ACTIONS(3098), - [anon_sym_null] = ACTIONS(3096), [anon_sym_if] = ACTIONS(3096), [anon_sym_else] = ACTIONS(3096), [anon_sym_when] = ACTIONS(3096), @@ -370294,6 +370293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3096), [anon_sym_false] = ACTIONS(3096), [anon_sym_SQUOTE] = ACTIONS(3098), + [sym_null_literal] = ACTIONS(3096), [sym__backtick_identifier] = ACTIONS(3098), [sym__automatic_semicolon] = ACTIONS(3098), [sym_safe_nav] = ACTIONS(3098), @@ -370328,7 +370328,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4724), [anon_sym_AMP_AMP] = ACTIONS(4724), [anon_sym_PIPE_PIPE] = ACTIONS(4724), - [anon_sym_null] = ACTIONS(4722), [anon_sym_if] = ACTIONS(4722), [anon_sym_else] = ACTIONS(4722), [anon_sym_when] = ACTIONS(4722), @@ -370379,6 +370378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4722), [anon_sym_false] = ACTIONS(4722), [anon_sym_SQUOTE] = ACTIONS(4724), + [sym_null_literal] = ACTIONS(4722), [sym__backtick_identifier] = ACTIONS(4724), [sym__automatic_semicolon] = ACTIONS(4724), [sym_safe_nav] = ACTIONS(4724), @@ -370413,7 +370413,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4804), [anon_sym_AMP_AMP] = ACTIONS(4804), [anon_sym_PIPE_PIPE] = ACTIONS(4804), - [anon_sym_null] = ACTIONS(4802), [anon_sym_if] = ACTIONS(4802), [anon_sym_else] = ACTIONS(4802), [anon_sym_when] = ACTIONS(4802), @@ -370464,6 +370463,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4802), [anon_sym_false] = ACTIONS(4802), [anon_sym_SQUOTE] = ACTIONS(4804), + [sym_null_literal] = ACTIONS(4802), [sym__backtick_identifier] = ACTIONS(4804), [sym__automatic_semicolon] = ACTIONS(4804), [sym_safe_nav] = ACTIONS(4804), @@ -370498,7 +370498,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4453), [anon_sym_AMP_AMP] = ACTIONS(4453), [anon_sym_PIPE_PIPE] = ACTIONS(4453), - [anon_sym_null] = ACTIONS(4451), [anon_sym_if] = ACTIONS(4451), [anon_sym_else] = ACTIONS(4451), [anon_sym_when] = ACTIONS(4451), @@ -370549,6 +370548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4451), [anon_sym_false] = ACTIONS(4451), [anon_sym_SQUOTE] = ACTIONS(4453), + [sym_null_literal] = ACTIONS(4451), [sym__backtick_identifier] = ACTIONS(4453), [sym__automatic_semicolon] = ACTIONS(4453), [sym_safe_nav] = ACTIONS(4453), @@ -370583,7 +370583,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4453), [anon_sym_AMP_AMP] = ACTIONS(4453), [anon_sym_PIPE_PIPE] = ACTIONS(4453), - [anon_sym_null] = ACTIONS(4451), [anon_sym_if] = ACTIONS(4451), [anon_sym_else] = ACTIONS(4451), [anon_sym_when] = ACTIONS(4451), @@ -370634,6 +370633,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4451), [anon_sym_false] = ACTIONS(4451), [anon_sym_SQUOTE] = ACTIONS(4453), + [sym_null_literal] = ACTIONS(4451), [sym__backtick_identifier] = ACTIONS(4453), [sym__automatic_semicolon] = ACTIONS(4453), [sym_safe_nav] = ACTIONS(4453), @@ -370753,7 +370753,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3230), [anon_sym_AMP_AMP] = ACTIONS(3230), [anon_sym_PIPE_PIPE] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3226), [anon_sym_if] = ACTIONS(3226), [anon_sym_else] = ACTIONS(3226), [anon_sym_when] = ACTIONS(3226), @@ -370804,6 +370803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3226), [anon_sym_false] = ACTIONS(3226), [anon_sym_SQUOTE] = ACTIONS(3230), + [sym_null_literal] = ACTIONS(3226), [sym__backtick_identifier] = ACTIONS(3230), [sym__automatic_semicolon] = ACTIONS(3230), [sym_safe_nav] = ACTIONS(3230), @@ -370838,7 +370838,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4422), [anon_sym_AMP_AMP] = ACTIONS(4422), [anon_sym_PIPE_PIPE] = ACTIONS(4422), - [anon_sym_null] = ACTIONS(4420), [anon_sym_if] = ACTIONS(4420), [anon_sym_else] = ACTIONS(4420), [anon_sym_when] = ACTIONS(4420), @@ -370889,6 +370888,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4420), [anon_sym_false] = ACTIONS(4420), [anon_sym_SQUOTE] = ACTIONS(4422), + [sym_null_literal] = ACTIONS(4420), [sym__backtick_identifier] = ACTIONS(4422), [sym__automatic_semicolon] = ACTIONS(4422), [sym_safe_nav] = ACTIONS(4422), @@ -370923,7 +370923,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4962), [anon_sym_AMP_AMP] = ACTIONS(4962), [anon_sym_PIPE_PIPE] = ACTIONS(4962), - [anon_sym_null] = ACTIONS(4960), [anon_sym_if] = ACTIONS(4960), [anon_sym_else] = ACTIONS(4960), [anon_sym_when] = ACTIONS(4960), @@ -370974,6 +370973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4960), [anon_sym_false] = ACTIONS(4960), [anon_sym_SQUOTE] = ACTIONS(4962), + [sym_null_literal] = ACTIONS(4960), [sym__backtick_identifier] = ACTIONS(4962), [sym__automatic_semicolon] = ACTIONS(4962), [sym_safe_nav] = ACTIONS(4962), @@ -371008,7 +371008,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4720), [anon_sym_AMP_AMP] = ACTIONS(4720), [anon_sym_PIPE_PIPE] = ACTIONS(4720), - [anon_sym_null] = ACTIONS(4718), [anon_sym_if] = ACTIONS(4718), [anon_sym_else] = ACTIONS(4718), [anon_sym_when] = ACTIONS(4718), @@ -371059,6 +371058,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4718), [anon_sym_false] = ACTIONS(4718), [anon_sym_SQUOTE] = ACTIONS(4720), + [sym_null_literal] = ACTIONS(4718), [sym__backtick_identifier] = ACTIONS(4720), [sym__automatic_semicolon] = ACTIONS(4720), [sym_safe_nav] = ACTIONS(4720), @@ -371093,7 +371093,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4349), [anon_sym_AMP_AMP] = ACTIONS(4349), [anon_sym_PIPE_PIPE] = ACTIONS(4349), - [anon_sym_null] = ACTIONS(4347), [anon_sym_if] = ACTIONS(4347), [anon_sym_else] = ACTIONS(4347), [anon_sym_when] = ACTIONS(4347), @@ -371144,6 +371143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4347), [anon_sym_false] = ACTIONS(4347), [anon_sym_SQUOTE] = ACTIONS(4349), + [sym_null_literal] = ACTIONS(4347), [sym__backtick_identifier] = ACTIONS(4349), [sym__automatic_semicolon] = ACTIONS(4349), [sym_safe_nav] = ACTIONS(4349), @@ -371178,7 +371178,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4966), [anon_sym_AMP_AMP] = ACTIONS(4966), [anon_sym_PIPE_PIPE] = ACTIONS(4966), - [anon_sym_null] = ACTIONS(4964), [anon_sym_if] = ACTIONS(4964), [anon_sym_else] = ACTIONS(4964), [anon_sym_when] = ACTIONS(4964), @@ -371229,6 +371228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4964), [anon_sym_false] = ACTIONS(4964), [anon_sym_SQUOTE] = ACTIONS(4966), + [sym_null_literal] = ACTIONS(4964), [sym__backtick_identifier] = ACTIONS(4966), [sym__automatic_semicolon] = ACTIONS(4966), [sym_safe_nav] = ACTIONS(4966), @@ -371348,7 +371348,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4970), [anon_sym_AMP_AMP] = ACTIONS(4970), [anon_sym_PIPE_PIPE] = ACTIONS(4970), - [anon_sym_null] = ACTIONS(4968), [anon_sym_if] = ACTIONS(4968), [anon_sym_else] = ACTIONS(4968), [anon_sym_when] = ACTIONS(4968), @@ -371399,6 +371398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4968), [anon_sym_false] = ACTIONS(4968), [anon_sym_SQUOTE] = ACTIONS(4970), + [sym_null_literal] = ACTIONS(4968), [sym__backtick_identifier] = ACTIONS(4970), [sym__automatic_semicolon] = ACTIONS(4970), [sym_safe_nav] = ACTIONS(4970), @@ -371433,7 +371433,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4345), [anon_sym_AMP_AMP] = ACTIONS(4345), [anon_sym_PIPE_PIPE] = ACTIONS(4345), - [anon_sym_null] = ACTIONS(4343), [anon_sym_if] = ACTIONS(4343), [anon_sym_else] = ACTIONS(4343), [anon_sym_when] = ACTIONS(4343), @@ -371484,6 +371483,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4343), [anon_sym_false] = ACTIONS(4343), [anon_sym_SQUOTE] = ACTIONS(4345), + [sym_null_literal] = ACTIONS(4343), [sym__backtick_identifier] = ACTIONS(4345), [sym__automatic_semicolon] = ACTIONS(4345), [sym_safe_nav] = ACTIONS(4345), @@ -371513,7 +371513,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4282), [sym_label] = ACTIONS(4280), [anon_sym_in] = ACTIONS(4280), - [anon_sym_null] = ACTIONS(4280), [anon_sym_if] = ACTIONS(4280), [anon_sym_else] = ACTIONS(4280), [anon_sym_when] = ACTIONS(4280), @@ -371570,6 +371569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4280), [anon_sym_false] = ACTIONS(4280), [anon_sym_SQUOTE] = ACTIONS(4282), + [sym_null_literal] = ACTIONS(4280), [sym__backtick_identifier] = ACTIONS(4282), [sym__automatic_semicolon] = ACTIONS(4282), [sym_multiline_comment] = ACTIONS(3), @@ -371598,7 +371598,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4272), [sym_label] = ACTIONS(4270), [anon_sym_in] = ACTIONS(4270), - [anon_sym_null] = ACTIONS(4270), [anon_sym_if] = ACTIONS(4270), [anon_sym_else] = ACTIONS(4270), [anon_sym_when] = ACTIONS(4270), @@ -371655,6 +371654,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4270), [anon_sym_false] = ACTIONS(4270), [anon_sym_SQUOTE] = ACTIONS(4272), + [sym_null_literal] = ACTIONS(4270), [sym__backtick_identifier] = ACTIONS(4272), [sym__automatic_semicolon] = ACTIONS(4272), [sym_multiline_comment] = ACTIONS(3), @@ -371688,7 +371688,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5017), [anon_sym_AMP_AMP] = ACTIONS(5017), [anon_sym_PIPE_PIPE] = ACTIONS(5017), - [anon_sym_null] = ACTIONS(5015), [anon_sym_if] = ACTIONS(5015), [anon_sym_else] = ACTIONS(5015), [anon_sym_when] = ACTIONS(5015), @@ -371739,6 +371738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5015), [anon_sym_false] = ACTIONS(5015), [anon_sym_SQUOTE] = ACTIONS(5017), + [sym_null_literal] = ACTIONS(5015), [sym__backtick_identifier] = ACTIONS(5017), [sym__automatic_semicolon] = ACTIONS(5017), [sym_safe_nav] = ACTIONS(5017), @@ -371858,7 +371858,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1684), [anon_sym_AMP_AMP] = ACTIONS(1684), [anon_sym_PIPE_PIPE] = ACTIONS(1684), - [anon_sym_null] = ACTIONS(1682), [anon_sym_if] = ACTIONS(1682), [anon_sym_else] = ACTIONS(1682), [anon_sym_when] = ACTIONS(1682), @@ -371909,6 +371908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1682), [anon_sym_false] = ACTIONS(1682), [anon_sym_SQUOTE] = ACTIONS(1684), + [sym_null_literal] = ACTIONS(1682), [sym__backtick_identifier] = ACTIONS(1684), [sym__automatic_semicolon] = ACTIONS(1684), [sym_safe_nav] = ACTIONS(1684), @@ -371943,7 +371943,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4333), [anon_sym_AMP_AMP] = ACTIONS(4333), [anon_sym_PIPE_PIPE] = ACTIONS(4333), - [anon_sym_null] = ACTIONS(4331), [anon_sym_if] = ACTIONS(4331), [anon_sym_else] = ACTIONS(4331), [anon_sym_when] = ACTIONS(4331), @@ -371994,6 +371993,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4331), [anon_sym_false] = ACTIONS(4331), [anon_sym_SQUOTE] = ACTIONS(4333), + [sym_null_literal] = ACTIONS(4331), [sym__backtick_identifier] = ACTIONS(4333), [sym__automatic_semicolon] = ACTIONS(4333), [sym_safe_nav] = ACTIONS(4333), @@ -372023,7 +372023,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4266), [sym_label] = ACTIONS(4264), [anon_sym_in] = ACTIONS(4264), - [anon_sym_null] = ACTIONS(4264), [anon_sym_if] = ACTIONS(4264), [anon_sym_else] = ACTIONS(4264), [anon_sym_when] = ACTIONS(4264), @@ -372080,6 +372079,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4264), [anon_sym_false] = ACTIONS(4264), [anon_sym_SQUOTE] = ACTIONS(4266), + [sym_null_literal] = ACTIONS(4264), [sym__backtick_identifier] = ACTIONS(4266), [sym__automatic_semicolon] = ACTIONS(4266), [sym_multiline_comment] = ACTIONS(3), @@ -372113,7 +372113,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4716), [anon_sym_AMP_AMP] = ACTIONS(4716), [anon_sym_PIPE_PIPE] = ACTIONS(4716), - [anon_sym_null] = ACTIONS(4714), [anon_sym_if] = ACTIONS(4714), [anon_sym_else] = ACTIONS(4714), [anon_sym_when] = ACTIONS(4714), @@ -372164,6 +372163,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4714), [anon_sym_false] = ACTIONS(4714), [anon_sym_SQUOTE] = ACTIONS(4716), + [sym_null_literal] = ACTIONS(4714), [sym__backtick_identifier] = ACTIONS(4716), [sym__automatic_semicolon] = ACTIONS(4716), [sym_safe_nav] = ACTIONS(4716), @@ -372198,7 +372198,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4974), [anon_sym_AMP_AMP] = ACTIONS(4974), [anon_sym_PIPE_PIPE] = ACTIONS(4974), - [anon_sym_null] = ACTIONS(4972), [anon_sym_if] = ACTIONS(4972), [anon_sym_else] = ACTIONS(4972), [anon_sym_when] = ACTIONS(4972), @@ -372249,6 +372248,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4972), [anon_sym_false] = ACTIONS(4972), [anon_sym_SQUOTE] = ACTIONS(4974), + [sym_null_literal] = ACTIONS(4972), [sym__backtick_identifier] = ACTIONS(4974), [sym__automatic_semicolon] = ACTIONS(4974), [sym_safe_nav] = ACTIONS(4974), @@ -372283,7 +372283,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4978), [anon_sym_AMP_AMP] = ACTIONS(4978), [anon_sym_PIPE_PIPE] = ACTIONS(4978), - [anon_sym_null] = ACTIONS(4976), [anon_sym_if] = ACTIONS(4976), [anon_sym_else] = ACTIONS(4976), [anon_sym_when] = ACTIONS(4976), @@ -372334,6 +372333,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4976), [anon_sym_false] = ACTIONS(4976), [anon_sym_SQUOTE] = ACTIONS(4978), + [sym_null_literal] = ACTIONS(4976), [sym__backtick_identifier] = ACTIONS(4978), [sym__automatic_semicolon] = ACTIONS(4978), [sym_safe_nav] = ACTIONS(4978), @@ -372368,7 +372368,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5079), [anon_sym_AMP_AMP] = ACTIONS(5079), [anon_sym_PIPE_PIPE] = ACTIONS(5079), - [anon_sym_null] = ACTIONS(5077), [anon_sym_if] = ACTIONS(5077), [anon_sym_else] = ACTIONS(5077), [anon_sym_when] = ACTIONS(5077), @@ -372419,6 +372418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5077), [anon_sym_false] = ACTIONS(5077), [anon_sym_SQUOTE] = ACTIONS(5079), + [sym_null_literal] = ACTIONS(5077), [sym__backtick_identifier] = ACTIONS(5079), [sym__automatic_semicolon] = ACTIONS(5079), [sym_safe_nav] = ACTIONS(5079), @@ -372453,7 +372453,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5055), [anon_sym_AMP_AMP] = ACTIONS(5055), [anon_sym_PIPE_PIPE] = ACTIONS(5055), - [anon_sym_null] = ACTIONS(5053), [anon_sym_if] = ACTIONS(5053), [anon_sym_else] = ACTIONS(5053), [anon_sym_when] = ACTIONS(5053), @@ -372504,6 +372503,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5053), [anon_sym_false] = ACTIONS(5053), [anon_sym_SQUOTE] = ACTIONS(5055), + [sym_null_literal] = ACTIONS(5053), [sym__backtick_identifier] = ACTIONS(5055), [sym__automatic_semicolon] = ACTIONS(5055), [sym_safe_nav] = ACTIONS(5055), @@ -372538,7 +372538,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4982), [anon_sym_AMP_AMP] = ACTIONS(4982), [anon_sym_PIPE_PIPE] = ACTIONS(4982), - [anon_sym_null] = ACTIONS(4980), [anon_sym_if] = ACTIONS(4980), [anon_sym_else] = ACTIONS(4980), [anon_sym_when] = ACTIONS(4980), @@ -372589,6 +372588,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4980), [anon_sym_false] = ACTIONS(4980), [anon_sym_SQUOTE] = ACTIONS(4982), + [sym_null_literal] = ACTIONS(4980), [sym__backtick_identifier] = ACTIONS(4982), [sym__automatic_semicolon] = ACTIONS(4982), [sym_safe_nav] = ACTIONS(4982), @@ -372623,7 +372623,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4232), [anon_sym_AMP_AMP] = ACTIONS(4232), [anon_sym_PIPE_PIPE] = ACTIONS(4232), - [anon_sym_null] = ACTIONS(4230), [anon_sym_if] = ACTIONS(4230), [anon_sym_else] = ACTIONS(4230), [anon_sym_when] = ACTIONS(4230), @@ -372674,6 +372673,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4230), [anon_sym_false] = ACTIONS(4230), [anon_sym_SQUOTE] = ACTIONS(4232), + [sym_null_literal] = ACTIONS(4230), [sym__backtick_identifier] = ACTIONS(4232), [sym__automatic_semicolon] = ACTIONS(4232), [sym_safe_nav] = ACTIONS(4232), @@ -372708,7 +372708,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4986), [anon_sym_AMP_AMP] = ACTIONS(4986), [anon_sym_PIPE_PIPE] = ACTIONS(4986), - [anon_sym_null] = ACTIONS(4984), [anon_sym_if] = ACTIONS(4984), [anon_sym_else] = ACTIONS(4984), [anon_sym_when] = ACTIONS(4984), @@ -372759,6 +372758,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4984), [anon_sym_false] = ACTIONS(4984), [anon_sym_SQUOTE] = ACTIONS(4986), + [sym_null_literal] = ACTIONS(4984), [sym__backtick_identifier] = ACTIONS(4986), [sym__automatic_semicolon] = ACTIONS(4986), [sym_safe_nav] = ACTIONS(4986), @@ -372793,7 +372793,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4345), [anon_sym_AMP_AMP] = ACTIONS(4345), [anon_sym_PIPE_PIPE] = ACTIONS(4345), - [anon_sym_null] = ACTIONS(4343), [anon_sym_if] = ACTIONS(4343), [anon_sym_else] = ACTIONS(4343), [anon_sym_when] = ACTIONS(4343), @@ -372844,6 +372843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4343), [anon_sym_false] = ACTIONS(4343), [anon_sym_SQUOTE] = ACTIONS(4345), + [sym_null_literal] = ACTIONS(4343), [sym__backtick_identifier] = ACTIONS(4345), [sym__automatic_semicolon] = ACTIONS(4345), [sym_safe_nav] = ACTIONS(4345), @@ -372878,7 +372878,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4333), [anon_sym_AMP_AMP] = ACTIONS(4333), [anon_sym_PIPE_PIPE] = ACTIONS(4333), - [anon_sym_null] = ACTIONS(4331), [anon_sym_if] = ACTIONS(4331), [anon_sym_else] = ACTIONS(4331), [anon_sym_when] = ACTIONS(4331), @@ -372929,6 +372928,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4331), [anon_sym_false] = ACTIONS(4331), [anon_sym_SQUOTE] = ACTIONS(4333), + [sym_null_literal] = ACTIONS(4331), [sym__backtick_identifier] = ACTIONS(4333), [sym__automatic_semicolon] = ACTIONS(4333), [sym_safe_nav] = ACTIONS(4333), @@ -372963,7 +372963,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3296), [anon_sym_if] = ACTIONS(3296), [anon_sym_else] = ACTIONS(3296), [anon_sym_when] = ACTIONS(3296), @@ -373014,6 +373013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3296), [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), + [sym_null_literal] = ACTIONS(3296), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), [sym_safe_nav] = ACTIONS(3298), @@ -373048,7 +373048,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4232), [anon_sym_AMP_AMP] = ACTIONS(4232), [anon_sym_PIPE_PIPE] = ACTIONS(4232), - [anon_sym_null] = ACTIONS(4230), [anon_sym_if] = ACTIONS(4230), [anon_sym_else] = ACTIONS(4230), [anon_sym_when] = ACTIONS(4230), @@ -373099,6 +373098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4230), [anon_sym_false] = ACTIONS(4230), [anon_sym_SQUOTE] = ACTIONS(4232), + [sym_null_literal] = ACTIONS(4230), [sym__backtick_identifier] = ACTIONS(4232), [sym__automatic_semicolon] = ACTIONS(4232), [sym_safe_nav] = ACTIONS(4232), @@ -373218,7 +373218,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4327), [anon_sym_AMP_AMP] = ACTIONS(4327), [anon_sym_PIPE_PIPE] = ACTIONS(4327), - [anon_sym_null] = ACTIONS(4325), [anon_sym_if] = ACTIONS(4325), [anon_sym_else] = ACTIONS(4325), [anon_sym_when] = ACTIONS(4325), @@ -373269,6 +373268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4325), [anon_sym_false] = ACTIONS(4325), [anon_sym_SQUOTE] = ACTIONS(4327), + [sym_null_literal] = ACTIONS(4325), [sym__backtick_identifier] = ACTIONS(4327), [sym__automatic_semicolon] = ACTIONS(4327), [sym_safe_nav] = ACTIONS(4327), @@ -373303,7 +373303,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4990), [anon_sym_AMP_AMP] = ACTIONS(4990), [anon_sym_PIPE_PIPE] = ACTIONS(4990), - [anon_sym_null] = ACTIONS(4988), [anon_sym_if] = ACTIONS(4988), [anon_sym_else] = ACTIONS(4988), [anon_sym_when] = ACTIONS(4988), @@ -373354,6 +373353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4988), [anon_sym_false] = ACTIONS(4988), [anon_sym_SQUOTE] = ACTIONS(4990), + [sym_null_literal] = ACTIONS(4988), [sym__backtick_identifier] = ACTIONS(4990), [sym__automatic_semicolon] = ACTIONS(4990), [sym_safe_nav] = ACTIONS(4990), @@ -373388,7 +373388,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4620), [anon_sym_AMP_AMP] = ACTIONS(4620), [anon_sym_PIPE_PIPE] = ACTIONS(4620), - [anon_sym_null] = ACTIONS(4618), [anon_sym_if] = ACTIONS(4618), [anon_sym_else] = ACTIONS(4618), [anon_sym_when] = ACTIONS(4618), @@ -373439,6 +373438,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4618), [anon_sym_false] = ACTIONS(4618), [anon_sym_SQUOTE] = ACTIONS(4620), + [sym_null_literal] = ACTIONS(4618), [sym__backtick_identifier] = ACTIONS(4620), [sym__automatic_semicolon] = ACTIONS(4620), [sym_safe_nav] = ACTIONS(4620), @@ -373473,7 +373473,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5059), [anon_sym_AMP_AMP] = ACTIONS(5059), [anon_sym_PIPE_PIPE] = ACTIONS(5059), - [anon_sym_null] = ACTIONS(5057), [anon_sym_if] = ACTIONS(5057), [anon_sym_else] = ACTIONS(5057), [anon_sym_when] = ACTIONS(5057), @@ -373524,6 +373523,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5057), [anon_sym_false] = ACTIONS(5057), [anon_sym_SQUOTE] = ACTIONS(5059), + [sym_null_literal] = ACTIONS(5057), [sym__backtick_identifier] = ACTIONS(5059), [sym__automatic_semicolon] = ACTIONS(5059), [sym_safe_nav] = ACTIONS(5059), @@ -373558,7 +373558,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5035), [anon_sym_AMP_AMP] = ACTIONS(5035), [anon_sym_PIPE_PIPE] = ACTIONS(5035), - [anon_sym_null] = ACTIONS(5033), [anon_sym_if] = ACTIONS(5033), [anon_sym_else] = ACTIONS(5033), [anon_sym_when] = ACTIONS(5033), @@ -373609,6 +373608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5033), [anon_sym_false] = ACTIONS(5033), [anon_sym_SQUOTE] = ACTIONS(5035), + [sym_null_literal] = ACTIONS(5033), [sym__backtick_identifier] = ACTIONS(5035), [sym__automatic_semicolon] = ACTIONS(5035), [sym_safe_nav] = ACTIONS(5035), @@ -373643,7 +373643,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4712), [anon_sym_AMP_AMP] = ACTIONS(4712), [anon_sym_PIPE_PIPE] = ACTIONS(4712), - [anon_sym_null] = ACTIONS(4710), [anon_sym_if] = ACTIONS(4710), [anon_sym_else] = ACTIONS(4710), [anon_sym_when] = ACTIONS(4710), @@ -373694,6 +373693,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4710), [anon_sym_false] = ACTIONS(4710), [anon_sym_SQUOTE] = ACTIONS(4712), + [sym_null_literal] = ACTIONS(4710), [sym__backtick_identifier] = ACTIONS(4712), [sym__automatic_semicolon] = ACTIONS(4712), [sym_safe_nav] = ACTIONS(4712), @@ -373813,7 +373813,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4890), [anon_sym_AMP_AMP] = ACTIONS(4890), [anon_sym_PIPE_PIPE] = ACTIONS(4890), - [anon_sym_null] = ACTIONS(4888), [anon_sym_if] = ACTIONS(4888), [anon_sym_else] = ACTIONS(4888), [anon_sym_when] = ACTIONS(4888), @@ -373864,6 +373863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4888), [anon_sym_false] = ACTIONS(4888), [anon_sym_SQUOTE] = ACTIONS(4890), + [sym_null_literal] = ACTIONS(4888), [sym__backtick_identifier] = ACTIONS(4890), [sym__automatic_semicolon] = ACTIONS(4890), [sym_safe_nav] = ACTIONS(4890), @@ -373983,7 +373983,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4276), [anon_sym_AMP_AMP] = ACTIONS(4276), [anon_sym_PIPE_PIPE] = ACTIONS(4276), - [anon_sym_null] = ACTIONS(4274), [anon_sym_if] = ACTIONS(4274), [anon_sym_else] = ACTIONS(4274), [anon_sym_when] = ACTIONS(4274), @@ -374034,6 +374033,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4274), [anon_sym_false] = ACTIONS(4274), [anon_sym_SQUOTE] = ACTIONS(4276), + [sym_null_literal] = ACTIONS(4274), [sym__backtick_identifier] = ACTIONS(4276), [sym__automatic_semicolon] = ACTIONS(4276), [sym_safe_nav] = ACTIONS(4276), @@ -374068,7 +374068,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4994), [anon_sym_AMP_AMP] = ACTIONS(4994), [anon_sym_PIPE_PIPE] = ACTIONS(4994), - [anon_sym_null] = ACTIONS(4992), [anon_sym_if] = ACTIONS(4992), [anon_sym_else] = ACTIONS(4992), [anon_sym_when] = ACTIONS(4992), @@ -374119,6 +374118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4992), [anon_sym_false] = ACTIONS(4992), [anon_sym_SQUOTE] = ACTIONS(4994), + [sym_null_literal] = ACTIONS(4992), [sym__backtick_identifier] = ACTIONS(4994), [sym__automatic_semicolon] = ACTIONS(4994), [sym_safe_nav] = ACTIONS(4994), @@ -374153,7 +374153,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5005), [anon_sym_AMP_AMP] = ACTIONS(5005), [anon_sym_PIPE_PIPE] = ACTIONS(5005), - [anon_sym_null] = ACTIONS(5003), [anon_sym_if] = ACTIONS(5003), [anon_sym_else] = ACTIONS(5003), [anon_sym_when] = ACTIONS(5003), @@ -374204,6 +374203,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5003), [anon_sym_false] = ACTIONS(5003), [anon_sym_SQUOTE] = ACTIONS(5005), + [sym_null_literal] = ACTIONS(5003), [sym__backtick_identifier] = ACTIONS(5005), [sym__automatic_semicolon] = ACTIONS(5005), [sym_safe_nav] = ACTIONS(5005), @@ -374238,7 +374238,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5009), [anon_sym_AMP_AMP] = ACTIONS(5009), [anon_sym_PIPE_PIPE] = ACTIONS(5009), - [anon_sym_null] = ACTIONS(5007), [anon_sym_if] = ACTIONS(5007), [anon_sym_else] = ACTIONS(5007), [anon_sym_when] = ACTIONS(5007), @@ -374289,6 +374288,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5007), [anon_sym_false] = ACTIONS(5007), [anon_sym_SQUOTE] = ACTIONS(5009), + [sym_null_literal] = ACTIONS(5007), [sym__backtick_identifier] = ACTIONS(5009), [sym__automatic_semicolon] = ACTIONS(5009), [sym_safe_nav] = ACTIONS(5009), @@ -374323,7 +374323,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3952), [anon_sym_AMP_AMP] = ACTIONS(3952), [anon_sym_PIPE_PIPE] = ACTIONS(3952), - [anon_sym_null] = ACTIONS(3950), [anon_sym_if] = ACTIONS(3950), [anon_sym_else] = ACTIONS(3950), [anon_sym_when] = ACTIONS(3950), @@ -374374,6 +374373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3950), [anon_sym_false] = ACTIONS(3950), [anon_sym_SQUOTE] = ACTIONS(3952), + [sym_null_literal] = ACTIONS(3950), [sym__backtick_identifier] = ACTIONS(3952), [sym__automatic_semicolon] = ACTIONS(3952), [sym_safe_nav] = ACTIONS(3952), @@ -374408,7 +374408,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -374459,6 +374458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -374493,7 +374493,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5021), [anon_sym_AMP_AMP] = ACTIONS(5021), [anon_sym_PIPE_PIPE] = ACTIONS(5021), - [anon_sym_null] = ACTIONS(5019), [anon_sym_if] = ACTIONS(5019), [anon_sym_else] = ACTIONS(5019), [anon_sym_when] = ACTIONS(5019), @@ -374544,6 +374543,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5019), [anon_sym_false] = ACTIONS(5019), [anon_sym_SQUOTE] = ACTIONS(5021), + [sym_null_literal] = ACTIONS(5019), [sym__backtick_identifier] = ACTIONS(5021), [sym__automatic_semicolon] = ACTIONS(5021), [sym_safe_nav] = ACTIONS(5021), @@ -374578,7 +374578,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5095), [anon_sym_AMP_AMP] = ACTIONS(5095), [anon_sym_PIPE_PIPE] = ACTIONS(5095), - [anon_sym_null] = ACTIONS(5093), [anon_sym_if] = ACTIONS(5093), [anon_sym_else] = ACTIONS(5093), [anon_sym_when] = ACTIONS(5093), @@ -374629,6 +374628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5093), [anon_sym_false] = ACTIONS(5093), [anon_sym_SQUOTE] = ACTIONS(5095), + [sym_null_literal] = ACTIONS(5093), [sym__backtick_identifier] = ACTIONS(5095), [sym__automatic_semicolon] = ACTIONS(5095), [sym_safe_nav] = ACTIONS(5095), @@ -374748,7 +374748,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1578), [anon_sym_AMP_AMP] = ACTIONS(1578), [anon_sym_PIPE_PIPE] = ACTIONS(1578), - [anon_sym_null] = ACTIONS(1580), [anon_sym_if] = ACTIONS(1580), [anon_sym_else] = ACTIONS(1580), [anon_sym_when] = ACTIONS(1580), @@ -374799,6 +374798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1580), [anon_sym_false] = ACTIONS(1580), [anon_sym_SQUOTE] = ACTIONS(1578), + [sym_null_literal] = ACTIONS(1580), [sym__backtick_identifier] = ACTIONS(1578), [sym__automatic_semicolon] = ACTIONS(1578), [sym_safe_nav] = ACTIONS(1578), @@ -374833,7 +374833,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4449), [anon_sym_AMP_AMP] = ACTIONS(4449), [anon_sym_PIPE_PIPE] = ACTIONS(4449), - [anon_sym_null] = ACTIONS(4447), [anon_sym_if] = ACTIONS(4447), [anon_sym_else] = ACTIONS(4447), [anon_sym_when] = ACTIONS(4447), @@ -374884,6 +374883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4447), [anon_sym_false] = ACTIONS(4447), [anon_sym_SQUOTE] = ACTIONS(4449), + [sym_null_literal] = ACTIONS(4447), [sym__backtick_identifier] = ACTIONS(4449), [sym__automatic_semicolon] = ACTIONS(4449), [sym_safe_nav] = ACTIONS(4449), @@ -375088,7 +375088,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5031), [anon_sym_AMP_AMP] = ACTIONS(5031), [anon_sym_PIPE_PIPE] = ACTIONS(5031), - [anon_sym_null] = ACTIONS(5029), [anon_sym_if] = ACTIONS(5029), [anon_sym_else] = ACTIONS(5029), [anon_sym_when] = ACTIONS(5029), @@ -375139,6 +375138,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5029), [anon_sym_false] = ACTIONS(5029), [anon_sym_SQUOTE] = ACTIONS(5031), + [sym_null_literal] = ACTIONS(5029), [sym__backtick_identifier] = ACTIONS(5031), [sym__automatic_semicolon] = ACTIONS(5031), [sym_safe_nav] = ACTIONS(5031), @@ -375343,7 +375343,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4079), [anon_sym_AMP_AMP] = ACTIONS(4079), [anon_sym_PIPE_PIPE] = ACTIONS(4079), - [anon_sym_null] = ACTIONS(4077), [anon_sym_if] = ACTIONS(4077), [anon_sym_else] = ACTIONS(4077), [anon_sym_when] = ACTIONS(4077), @@ -375394,6 +375393,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4077), [anon_sym_false] = ACTIONS(4077), [anon_sym_SQUOTE] = ACTIONS(4079), + [sym_null_literal] = ACTIONS(4077), [sym__backtick_identifier] = ACTIONS(4079), [sym__automatic_semicolon] = ACTIONS(4079), [sym_safe_nav] = ACTIONS(4079), @@ -375428,7 +375428,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4079), [anon_sym_AMP_AMP] = ACTIONS(4079), [anon_sym_PIPE_PIPE] = ACTIONS(4079), - [anon_sym_null] = ACTIONS(4077), [anon_sym_if] = ACTIONS(4077), [anon_sym_else] = ACTIONS(4077), [anon_sym_when] = ACTIONS(4077), @@ -375479,6 +375478,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4077), [anon_sym_false] = ACTIONS(4077), [anon_sym_SQUOTE] = ACTIONS(4079), + [sym_null_literal] = ACTIONS(4077), [sym__backtick_identifier] = ACTIONS(4079), [sym__automatic_semicolon] = ACTIONS(4079), [sym_safe_nav] = ACTIONS(4079), @@ -375513,7 +375513,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5051), [anon_sym_AMP_AMP] = ACTIONS(5051), [anon_sym_PIPE_PIPE] = ACTIONS(5051), - [anon_sym_null] = ACTIONS(5049), [anon_sym_if] = ACTIONS(5049), [anon_sym_else] = ACTIONS(5049), [anon_sym_when] = ACTIONS(5049), @@ -375564,6 +375563,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5049), [anon_sym_false] = ACTIONS(5049), [anon_sym_SQUOTE] = ACTIONS(5051), + [sym_null_literal] = ACTIONS(5049), [sym__backtick_identifier] = ACTIONS(5051), [sym__automatic_semicolon] = ACTIONS(5051), [sym_safe_nav] = ACTIONS(5051), @@ -375598,7 +375598,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4668), [anon_sym_AMP_AMP] = ACTIONS(4668), [anon_sym_PIPE_PIPE] = ACTIONS(4668), - [anon_sym_null] = ACTIONS(4666), [anon_sym_if] = ACTIONS(4666), [anon_sym_else] = ACTIONS(4666), [anon_sym_when] = ACTIONS(4666), @@ -375649,6 +375648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4666), [anon_sym_false] = ACTIONS(4666), [anon_sym_SQUOTE] = ACTIONS(4668), + [sym_null_literal] = ACTIONS(4666), [sym__backtick_identifier] = ACTIONS(4668), [sym__automatic_semicolon] = ACTIONS(4668), [sym_safe_nav] = ACTIONS(4668), @@ -375938,7 +375938,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(6602), [anon_sym_while] = ACTIONS(6602), [anon_sym_do] = ACTIONS(6602), - [anon_sym_null] = ACTIONS(6602), [anon_sym_if] = ACTIONS(6602), [anon_sym_when] = ACTIONS(6602), [anon_sym_try] = ACTIONS(6602), @@ -375991,6 +375990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(6602), [anon_sym_false] = ACTIONS(6602), [anon_sym_SQUOTE] = ACTIONS(6600), + [sym_null_literal] = ACTIONS(6602), [sym__backtick_identifier] = ACTIONS(6600), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(6600), @@ -376108,7 +376108,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1756), [anon_sym_AMP_AMP] = ACTIONS(1756), [anon_sym_PIPE_PIPE] = ACTIONS(1756), - [anon_sym_null] = ACTIONS(1754), [anon_sym_if] = ACTIONS(1754), [anon_sym_else] = ACTIONS(1754), [anon_sym_when] = ACTIONS(1754), @@ -376159,6 +376158,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), [anon_sym_SQUOTE] = ACTIONS(1756), + [sym_null_literal] = ACTIONS(1754), [sym__backtick_identifier] = ACTIONS(1756), [sym__automatic_semicolon] = ACTIONS(1756), [sym_safe_nav] = ACTIONS(1756), @@ -376193,7 +376193,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1740), [anon_sym_AMP_AMP] = ACTIONS(1740), [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1738), [anon_sym_if] = ACTIONS(1738), [anon_sym_else] = ACTIONS(1738), [anon_sym_when] = ACTIONS(1738), @@ -376244,6 +376243,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_null_literal] = ACTIONS(1738), [sym__backtick_identifier] = ACTIONS(1740), [sym__automatic_semicolon] = ACTIONS(1740), [sym_safe_nav] = ACTIONS(1740), @@ -376358,7 +376358,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4166), [sym_label] = ACTIONS(4164), [anon_sym_in] = ACTIONS(4164), - [anon_sym_null] = ACTIONS(4164), [anon_sym_if] = ACTIONS(4164), [anon_sym_else] = ACTIONS(4164), [anon_sym_when] = ACTIONS(4164), @@ -376415,6 +376414,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4164), [anon_sym_false] = ACTIONS(4164), [anon_sym_SQUOTE] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4164), [sym__backtick_identifier] = ACTIONS(4166), [sym__automatic_semicolon] = ACTIONS(4166), [sym_multiline_comment] = ACTIONS(3), @@ -376448,7 +376448,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(123), [anon_sym_if] = ACTIONS(123), [anon_sym_else] = ACTIONS(123), [anon_sym_when] = ACTIONS(123), @@ -376499,6 +376498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(123), [anon_sym_false] = ACTIONS(123), [anon_sym_SQUOTE] = ACTIONS(121), + [sym_null_literal] = ACTIONS(123), [sym__backtick_identifier] = ACTIONS(121), [sym__automatic_semicolon] = ACTIONS(121), [sym_safe_nav] = ACTIONS(121), @@ -376618,7 +376618,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5083), [anon_sym_AMP_AMP] = ACTIONS(5083), [anon_sym_PIPE_PIPE] = ACTIONS(5083), - [anon_sym_null] = ACTIONS(5081), [anon_sym_if] = ACTIONS(5081), [anon_sym_else] = ACTIONS(5081), [anon_sym_when] = ACTIONS(5081), @@ -376669,6 +376668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5081), [anon_sym_false] = ACTIONS(5081), [anon_sym_SQUOTE] = ACTIONS(5083), + [sym_null_literal] = ACTIONS(5081), [sym__backtick_identifier] = ACTIONS(5083), [sym__automatic_semicolon] = ACTIONS(5083), [sym_safe_nav] = ACTIONS(5083), @@ -376703,7 +376703,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5103), [anon_sym_AMP_AMP] = ACTIONS(5103), [anon_sym_PIPE_PIPE] = ACTIONS(5103), - [anon_sym_null] = ACTIONS(5101), [anon_sym_if] = ACTIONS(5101), [anon_sym_else] = ACTIONS(5101), [anon_sym_when] = ACTIONS(5101), @@ -376754,6 +376753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5101), [anon_sym_false] = ACTIONS(5101), [anon_sym_SQUOTE] = ACTIONS(5103), + [sym_null_literal] = ACTIONS(5101), [sym__backtick_identifier] = ACTIONS(5103), [sym__automatic_semicolon] = ACTIONS(5103), [sym_safe_nav] = ACTIONS(5103), @@ -376788,7 +376788,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5087), [anon_sym_AMP_AMP] = ACTIONS(5087), [anon_sym_PIPE_PIPE] = ACTIONS(5087), - [anon_sym_null] = ACTIONS(5085), [anon_sym_if] = ACTIONS(5085), [anon_sym_else] = ACTIONS(5085), [anon_sym_when] = ACTIONS(5085), @@ -376839,6 +376838,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5085), [anon_sym_false] = ACTIONS(5085), [anon_sym_SQUOTE] = ACTIONS(5087), + [sym_null_literal] = ACTIONS(5085), [sym__backtick_identifier] = ACTIONS(5087), [sym__automatic_semicolon] = ACTIONS(5087), [sym_safe_nav] = ACTIONS(5087), @@ -376873,7 +376873,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4942), [anon_sym_AMP_AMP] = ACTIONS(4942), [anon_sym_PIPE_PIPE] = ACTIONS(4942), - [anon_sym_null] = ACTIONS(4940), [anon_sym_if] = ACTIONS(4940), [anon_sym_else] = ACTIONS(4940), [anon_sym_when] = ACTIONS(4940), @@ -376924,6 +376923,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4940), [anon_sym_false] = ACTIONS(4940), [anon_sym_SQUOTE] = ACTIONS(4942), + [sym_null_literal] = ACTIONS(4940), [sym__backtick_identifier] = ACTIONS(4942), [sym__automatic_semicolon] = ACTIONS(4942), [sym_safe_nav] = ACTIONS(4942), @@ -376958,7 +376958,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5001), [anon_sym_AMP_AMP] = ACTIONS(5001), [anon_sym_PIPE_PIPE] = ACTIONS(5001), - [anon_sym_null] = ACTIONS(4999), [anon_sym_if] = ACTIONS(4999), [anon_sym_else] = ACTIONS(4999), [anon_sym_when] = ACTIONS(4999), @@ -377009,6 +377008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4999), [anon_sym_false] = ACTIONS(4999), [anon_sym_SQUOTE] = ACTIONS(5001), + [sym_null_literal] = ACTIONS(4999), [sym__backtick_identifier] = ACTIONS(5001), [sym__automatic_semicolon] = ACTIONS(5001), [sym_safe_nav] = ACTIONS(5001), @@ -377213,7 +377213,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4144), [anon_sym_AMP_AMP] = ACTIONS(4144), [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4142), [anon_sym_if] = ACTIONS(4142), [anon_sym_else] = ACTIONS(4142), [anon_sym_when] = ACTIONS(4142), @@ -377264,6 +377263,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4142), [anon_sym_false] = ACTIONS(4142), [anon_sym_SQUOTE] = ACTIONS(4144), + [sym_null_literal] = ACTIONS(4142), [sym__backtick_identifier] = ACTIONS(4144), [sym__automatic_semicolon] = ACTIONS(4144), [sym_safe_nav] = ACTIONS(4144), @@ -377298,7 +377298,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4144), [anon_sym_AMP_AMP] = ACTIONS(4144), [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4142), [anon_sym_if] = ACTIONS(4142), [anon_sym_else] = ACTIONS(4142), [anon_sym_when] = ACTIONS(4142), @@ -377349,6 +377348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4142), [anon_sym_false] = ACTIONS(4142), [anon_sym_SQUOTE] = ACTIONS(4144), + [sym_null_literal] = ACTIONS(4142), [sym__backtick_identifier] = ACTIONS(4144), [sym__automatic_semicolon] = ACTIONS(4144), [sym_safe_nav] = ACTIONS(4144), @@ -377383,7 +377383,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4220), [anon_sym_AMP_AMP] = ACTIONS(4220), [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(4222), [anon_sym_if] = ACTIONS(4222), [anon_sym_else] = ACTIONS(4222), [anon_sym_when] = ACTIONS(4222), @@ -377434,6 +377433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4222), [anon_sym_false] = ACTIONS(4222), [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_null_literal] = ACTIONS(4222), [sym__backtick_identifier] = ACTIONS(4220), [sym__automatic_semicolon] = ACTIONS(4220), [sym_safe_nav] = ACTIONS(4220), @@ -377468,7 +377468,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5091), [anon_sym_AMP_AMP] = ACTIONS(5091), [anon_sym_PIPE_PIPE] = ACTIONS(5091), - [anon_sym_null] = ACTIONS(5089), [anon_sym_if] = ACTIONS(5089), [anon_sym_else] = ACTIONS(5089), [anon_sym_when] = ACTIONS(5089), @@ -377519,6 +377518,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5089), [anon_sym_false] = ACTIONS(5089), [anon_sym_SQUOTE] = ACTIONS(5091), + [sym_null_literal] = ACTIONS(5089), [sym__backtick_identifier] = ACTIONS(5091), [sym__automatic_semicolon] = ACTIONS(5091), [sym_safe_nav] = ACTIONS(5091), @@ -377553,7 +377553,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5111), [anon_sym_AMP_AMP] = ACTIONS(5111), [anon_sym_PIPE_PIPE] = ACTIONS(5111), - [anon_sym_null] = ACTIONS(5109), [anon_sym_if] = ACTIONS(5109), [anon_sym_else] = ACTIONS(5109), [anon_sym_when] = ACTIONS(5109), @@ -377604,6 +377603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5109), [anon_sym_false] = ACTIONS(5109), [anon_sym_SQUOTE] = ACTIONS(5111), + [sym_null_literal] = ACTIONS(5109), [sym__backtick_identifier] = ACTIONS(5111), [sym__automatic_semicolon] = ACTIONS(5111), [sym_safe_nav] = ACTIONS(5111), @@ -377638,7 +377638,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4204), [anon_sym_AMP_AMP] = ACTIONS(4204), [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_null] = ACTIONS(4202), [anon_sym_if] = ACTIONS(4202), [anon_sym_else] = ACTIONS(4202), [anon_sym_when] = ACTIONS(4202), @@ -377689,6 +377688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4202), [anon_sym_false] = ACTIONS(4202), [anon_sym_SQUOTE] = ACTIONS(4204), + [sym_null_literal] = ACTIONS(4202), [sym__backtick_identifier] = ACTIONS(4204), [sym__automatic_semicolon] = ACTIONS(4204), [sym_safe_nav] = ACTIONS(4204), @@ -377723,7 +377723,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4188), [anon_sym_AMP_AMP] = ACTIONS(4188), [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_null] = ACTIONS(4190), [anon_sym_if] = ACTIONS(4190), [anon_sym_else] = ACTIONS(4190), [anon_sym_when] = ACTIONS(4190), @@ -377774,6 +377773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4190), [anon_sym_false] = ACTIONS(4190), [anon_sym_SQUOTE] = ACTIONS(4188), + [sym_null_literal] = ACTIONS(4190), [sym__backtick_identifier] = ACTIONS(4188), [sym__automatic_semicolon] = ACTIONS(4188), [sym_safe_nav] = ACTIONS(4188), @@ -377808,7 +377808,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4613), [anon_sym_AMP_AMP] = ACTIONS(4613), [anon_sym_PIPE_PIPE] = ACTIONS(4613), - [anon_sym_null] = ACTIONS(4611), [anon_sym_if] = ACTIONS(4611), [anon_sym_else] = ACTIONS(4611), [anon_sym_when] = ACTIONS(4611), @@ -377859,6 +377858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4611), [anon_sym_false] = ACTIONS(4611), [anon_sym_SQUOTE] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4611), [sym__backtick_identifier] = ACTIONS(4613), [sym__automatic_semicolon] = ACTIONS(4613), [sym_safe_nav] = ACTIONS(4613), @@ -377893,7 +377893,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5123), [anon_sym_AMP_AMP] = ACTIONS(5123), [anon_sym_PIPE_PIPE] = ACTIONS(5123), - [anon_sym_null] = ACTIONS(5121), [anon_sym_if] = ACTIONS(5121), [anon_sym_else] = ACTIONS(5121), [anon_sym_when] = ACTIONS(5121), @@ -377944,6 +377943,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5121), [anon_sym_false] = ACTIONS(5121), [anon_sym_SQUOTE] = ACTIONS(5123), + [sym_null_literal] = ACTIONS(5121), [sym__backtick_identifier] = ACTIONS(5123), [sym__automatic_semicolon] = ACTIONS(5123), [sym_safe_nav] = ACTIONS(5123), @@ -377978,7 +377978,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4842), [anon_sym_AMP_AMP] = ACTIONS(4842), [anon_sym_PIPE_PIPE] = ACTIONS(4842), - [anon_sym_null] = ACTIONS(4840), [anon_sym_if] = ACTIONS(4840), [anon_sym_else] = ACTIONS(4840), [anon_sym_when] = ACTIONS(4840), @@ -378029,6 +378028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4840), [anon_sym_false] = ACTIONS(4840), [anon_sym_SQUOTE] = ACTIONS(4842), + [sym_null_literal] = ACTIONS(4840), [sym__backtick_identifier] = ACTIONS(4842), [sym__automatic_semicolon] = ACTIONS(4842), [sym_safe_nav] = ACTIONS(4842), @@ -378063,7 +378063,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5119), [anon_sym_AMP_AMP] = ACTIONS(5119), [anon_sym_PIPE_PIPE] = ACTIONS(5119), - [anon_sym_null] = ACTIONS(5117), [anon_sym_if] = ACTIONS(5117), [anon_sym_else] = ACTIONS(5117), [anon_sym_when] = ACTIONS(5117), @@ -378114,6 +378113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5117), [anon_sym_false] = ACTIONS(5117), [anon_sym_SQUOTE] = ACTIONS(5119), + [sym_null_literal] = ACTIONS(5117), [sym__backtick_identifier] = ACTIONS(5119), [sym__automatic_semicolon] = ACTIONS(5119), [sym_safe_nav] = ACTIONS(5119), @@ -378148,7 +378148,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5025), [anon_sym_AMP_AMP] = ACTIONS(5025), [anon_sym_PIPE_PIPE] = ACTIONS(5025), - [anon_sym_null] = ACTIONS(5023), [anon_sym_if] = ACTIONS(5023), [anon_sym_else] = ACTIONS(5023), [anon_sym_when] = ACTIONS(5023), @@ -378199,6 +378198,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5023), [anon_sym_false] = ACTIONS(5023), [anon_sym_SQUOTE] = ACTIONS(5025), + [sym_null_literal] = ACTIONS(5023), [sym__backtick_identifier] = ACTIONS(5025), [sym__automatic_semicolon] = ACTIONS(5025), [sym_safe_nav] = ACTIONS(5025), @@ -378233,7 +378233,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5115), [anon_sym_AMP_AMP] = ACTIONS(5115), [anon_sym_PIPE_PIPE] = ACTIONS(5115), - [anon_sym_null] = ACTIONS(5113), [anon_sym_if] = ACTIONS(5113), [anon_sym_else] = ACTIONS(5113), [anon_sym_when] = ACTIONS(5113), @@ -378284,6 +378283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5113), [anon_sym_false] = ACTIONS(5113), [anon_sym_SQUOTE] = ACTIONS(5115), + [sym_null_literal] = ACTIONS(5113), [sym__backtick_identifier] = ACTIONS(5115), [sym__automatic_semicolon] = ACTIONS(5115), [sym_safe_nav] = ACTIONS(5115), @@ -378403,7 +378403,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4926), [anon_sym_AMP_AMP] = ACTIONS(4926), [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_null] = ACTIONS(4924), [anon_sym_if] = ACTIONS(4924), [anon_sym_else] = ACTIONS(4924), [anon_sym_when] = ACTIONS(4924), @@ -378454,6 +378453,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4924), [anon_sym_false] = ACTIONS(4924), [anon_sym_SQUOTE] = ACTIONS(4926), + [sym_null_literal] = ACTIONS(4924), [sym__backtick_identifier] = ACTIONS(4926), [sym__automatic_semicolon] = ACTIONS(4926), [sym_safe_nav] = ACTIONS(4926), @@ -378573,7 +378573,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4089), [anon_sym_AMP_AMP] = ACTIONS(4089), [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_null] = ACTIONS(4087), [anon_sym_if] = ACTIONS(4087), [anon_sym_else] = ACTIONS(4087), [anon_sym_when] = ACTIONS(4087), @@ -378624,6 +378623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4087), [anon_sym_false] = ACTIONS(4087), [anon_sym_SQUOTE] = ACTIONS(4089), + [sym_null_literal] = ACTIONS(4087), [sym__backtick_identifier] = ACTIONS(4089), [sym__automatic_semicolon] = ACTIONS(4089), [sym_safe_nav] = ACTIONS(4089), @@ -378658,7 +378658,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4089), [anon_sym_AMP_AMP] = ACTIONS(4089), [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_null] = ACTIONS(4087), [anon_sym_if] = ACTIONS(4087), [anon_sym_else] = ACTIONS(4087), [anon_sym_when] = ACTIONS(4087), @@ -378709,6 +378708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4087), [anon_sym_false] = ACTIONS(4087), [anon_sym_SQUOTE] = ACTIONS(4089), + [sym_null_literal] = ACTIONS(4087), [sym__backtick_identifier] = ACTIONS(4089), [sym__automatic_semicolon] = ACTIONS(4089), [sym_safe_nav] = ACTIONS(4089), @@ -378743,7 +378743,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4361), [anon_sym_AMP_AMP] = ACTIONS(4361), [anon_sym_PIPE_PIPE] = ACTIONS(4361), - [anon_sym_null] = ACTIONS(4359), [anon_sym_if] = ACTIONS(4359), [anon_sym_else] = ACTIONS(4359), [anon_sym_when] = ACTIONS(4359), @@ -378794,6 +378793,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4359), [anon_sym_false] = ACTIONS(4359), [anon_sym_SQUOTE] = ACTIONS(4361), + [sym_null_literal] = ACTIONS(4359), [sym__backtick_identifier] = ACTIONS(4361), [sym__automatic_semicolon] = ACTIONS(4361), [sym_safe_nav] = ACTIONS(4361), @@ -378828,7 +378828,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5127), [anon_sym_AMP_AMP] = ACTIONS(5127), [anon_sym_PIPE_PIPE] = ACTIONS(5127), - [anon_sym_null] = ACTIONS(5125), [anon_sym_if] = ACTIONS(5125), [anon_sym_else] = ACTIONS(5125), [anon_sym_when] = ACTIONS(5125), @@ -378879,6 +378878,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5125), [anon_sym_false] = ACTIONS(5125), [anon_sym_SQUOTE] = ACTIONS(5127), + [sym_null_literal] = ACTIONS(5125), [sym__backtick_identifier] = ACTIONS(5127), [sym__automatic_semicolon] = ACTIONS(5127), [sym_safe_nav] = ACTIONS(5127), @@ -378913,7 +378913,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5135), [anon_sym_AMP_AMP] = ACTIONS(5135), [anon_sym_PIPE_PIPE] = ACTIONS(5135), - [anon_sym_null] = ACTIONS(5133), [anon_sym_if] = ACTIONS(5133), [anon_sym_else] = ACTIONS(5133), [anon_sym_when] = ACTIONS(5133), @@ -378964,6 +378963,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5133), [anon_sym_false] = ACTIONS(5133), [anon_sym_SQUOTE] = ACTIONS(5135), + [sym_null_literal] = ACTIONS(5133), [sym__backtick_identifier] = ACTIONS(5135), [sym__automatic_semicolon] = ACTIONS(5135), [sym_safe_nav] = ACTIONS(5135), @@ -378998,7 +378998,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4852), [anon_sym_AMP_AMP] = ACTIONS(4852), [anon_sym_PIPE_PIPE] = ACTIONS(4852), - [anon_sym_null] = ACTIONS(4850), [anon_sym_if] = ACTIONS(4850), [anon_sym_else] = ACTIONS(4850), [anon_sym_when] = ACTIONS(4850), @@ -379049,6 +379048,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4850), [anon_sym_false] = ACTIONS(4850), [anon_sym_SQUOTE] = ACTIONS(4852), + [sym_null_literal] = ACTIONS(4850), [sym__backtick_identifier] = ACTIONS(4852), [sym__automatic_semicolon] = ACTIONS(4852), [sym_safe_nav] = ACTIONS(4852), @@ -379083,7 +379083,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4609), [anon_sym_AMP_AMP] = ACTIONS(4609), [anon_sym_PIPE_PIPE] = ACTIONS(4609), - [anon_sym_null] = ACTIONS(4607), [anon_sym_if] = ACTIONS(4607), [anon_sym_else] = ACTIONS(4607), [anon_sym_when] = ACTIONS(4607), @@ -379134,6 +379133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4607), [anon_sym_false] = ACTIONS(4607), [anon_sym_SQUOTE] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4607), [sym__backtick_identifier] = ACTIONS(4609), [sym__automatic_semicolon] = ACTIONS(4609), [sym_safe_nav] = ACTIONS(4609), @@ -379338,7 +379338,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1772), [anon_sym_AMP_AMP] = ACTIONS(1772), [anon_sym_PIPE_PIPE] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1770), [anon_sym_if] = ACTIONS(1770), [anon_sym_else] = ACTIONS(1770), [anon_sym_when] = ACTIONS(1770), @@ -379389,6 +379388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), [anon_sym_SQUOTE] = ACTIONS(1772), + [sym_null_literal] = ACTIONS(1770), [sym__backtick_identifier] = ACTIONS(1772), [sym__automatic_semicolon] = ACTIONS(1772), [sym_safe_nav] = ACTIONS(1772), @@ -379423,7 +379423,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4648), [anon_sym_AMP_AMP] = ACTIONS(4648), [anon_sym_PIPE_PIPE] = ACTIONS(4648), - [anon_sym_null] = ACTIONS(4646), [anon_sym_if] = ACTIONS(4646), [anon_sym_else] = ACTIONS(4646), [anon_sym_when] = ACTIONS(4646), @@ -379474,6 +379473,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4646), [anon_sym_false] = ACTIONS(4646), [anon_sym_SQUOTE] = ACTIONS(4648), + [sym_null_literal] = ACTIONS(4646), [sym__backtick_identifier] = ACTIONS(4648), [sym__automatic_semicolon] = ACTIONS(4648), [sym_safe_nav] = ACTIONS(4648), @@ -379508,7 +379508,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4185), [anon_sym_AMP_AMP] = ACTIONS(4185), [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_null] = ACTIONS(4182), [anon_sym_if] = ACTIONS(4182), [anon_sym_else] = ACTIONS(4182), [anon_sym_when] = ACTIONS(4182), @@ -379559,6 +379558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4182), [anon_sym_false] = ACTIONS(4182), [anon_sym_SQUOTE] = ACTIONS(4185), + [sym_null_literal] = ACTIONS(4182), [sym__backtick_identifier] = ACTIONS(4185), [sym__automatic_semicolon] = ACTIONS(4185), [sym_safe_nav] = ACTIONS(4185), @@ -379593,7 +379593,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5147), [anon_sym_AMP_AMP] = ACTIONS(5147), [anon_sym_PIPE_PIPE] = ACTIONS(5147), - [anon_sym_null] = ACTIONS(5145), [anon_sym_if] = ACTIONS(5145), [anon_sym_else] = ACTIONS(5145), [anon_sym_when] = ACTIONS(5145), @@ -379644,6 +379643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5145), [anon_sym_false] = ACTIONS(5145), [anon_sym_SQUOTE] = ACTIONS(5147), + [sym_null_literal] = ACTIONS(5145), [sym__backtick_identifier] = ACTIONS(5147), [sym__automatic_semicolon] = ACTIONS(5147), [sym_safe_nav] = ACTIONS(5147), @@ -379678,7 +379678,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5131), [anon_sym_AMP_AMP] = ACTIONS(5131), [anon_sym_PIPE_PIPE] = ACTIONS(5131), - [anon_sym_null] = ACTIONS(5129), [anon_sym_if] = ACTIONS(5129), [anon_sym_else] = ACTIONS(5129), [anon_sym_when] = ACTIONS(5129), @@ -379729,6 +379728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5129), [anon_sym_false] = ACTIONS(5129), [anon_sym_SQUOTE] = ACTIONS(5131), + [sym_null_literal] = ACTIONS(5129), [sym__backtick_identifier] = ACTIONS(5131), [sym__automatic_semicolon] = ACTIONS(5131), [sym_safe_nav] = ACTIONS(5131), @@ -379763,7 +379763,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5139), [anon_sym_AMP_AMP] = ACTIONS(5139), [anon_sym_PIPE_PIPE] = ACTIONS(5139), - [anon_sym_null] = ACTIONS(5137), [anon_sym_if] = ACTIONS(5137), [anon_sym_else] = ACTIONS(5137), [anon_sym_when] = ACTIONS(5137), @@ -379814,6 +379813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5137), [anon_sym_false] = ACTIONS(5137), [anon_sym_SQUOTE] = ACTIONS(5139), + [sym_null_literal] = ACTIONS(5137), [sym__backtick_identifier] = ACTIONS(5139), [sym__automatic_semicolon] = ACTIONS(5139), [sym_safe_nav] = ACTIONS(5139), @@ -379848,7 +379848,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5043), [anon_sym_AMP_AMP] = ACTIONS(5043), [anon_sym_PIPE_PIPE] = ACTIONS(5043), - [anon_sym_null] = ACTIONS(5041), [anon_sym_if] = ACTIONS(5041), [anon_sym_else] = ACTIONS(5041), [anon_sym_when] = ACTIONS(5041), @@ -379899,6 +379898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5041), [anon_sym_false] = ACTIONS(5041), [anon_sym_SQUOTE] = ACTIONS(5043), + [sym_null_literal] = ACTIONS(5041), [sym__backtick_identifier] = ACTIONS(5043), [sym__automatic_semicolon] = ACTIONS(5043), [sym_safe_nav] = ACTIONS(5043), @@ -379933,7 +379933,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4220), [anon_sym_AMP_AMP] = ACTIONS(4220), [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(4214), [anon_sym_if] = ACTIONS(4214), [anon_sym_else] = ACTIONS(4222), [anon_sym_when] = ACTIONS(4214), @@ -379984,6 +379983,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4214), [anon_sym_false] = ACTIONS(4214), [anon_sym_SQUOTE] = ACTIONS(4217), + [sym_null_literal] = ACTIONS(4214), [sym__backtick_identifier] = ACTIONS(4217), [sym__automatic_semicolon] = ACTIONS(4220), [sym_safe_nav] = ACTIONS(4220), @@ -380103,7 +380103,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3240), [anon_sym_AMP_AMP] = ACTIONS(3240), [anon_sym_PIPE_PIPE] = ACTIONS(3240), - [anon_sym_null] = ACTIONS(3236), [anon_sym_if] = ACTIONS(3236), [anon_sym_else] = ACTIONS(3236), [anon_sym_when] = ACTIONS(3236), @@ -380154,6 +380153,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3236), [anon_sym_false] = ACTIONS(3236), [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), [sym__backtick_identifier] = ACTIONS(3240), [sym__automatic_semicolon] = ACTIONS(3240), [sym_safe_nav] = ACTIONS(3240), @@ -380188,7 +380188,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4154), [anon_sym_AMP_AMP] = ACTIONS(4154), [anon_sym_PIPE_PIPE] = ACTIONS(4154), - [anon_sym_null] = ACTIONS(4152), [anon_sym_if] = ACTIONS(4152), [anon_sym_else] = ACTIONS(4152), [anon_sym_when] = ACTIONS(4152), @@ -380239,6 +380238,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4152), [anon_sym_false] = ACTIONS(4152), [anon_sym_SQUOTE] = ACTIONS(4154), + [sym_null_literal] = ACTIONS(4152), [sym__backtick_identifier] = ACTIONS(4154), [sym__automatic_semicolon] = ACTIONS(4154), [sym_safe_nav] = ACTIONS(4154), @@ -380273,7 +380273,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5155), [anon_sym_AMP_AMP] = ACTIONS(5155), [anon_sym_PIPE_PIPE] = ACTIONS(5155), - [anon_sym_null] = ACTIONS(5153), [anon_sym_if] = ACTIONS(5153), [anon_sym_else] = ACTIONS(5153), [anon_sym_when] = ACTIONS(5153), @@ -380324,6 +380323,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5153), [anon_sym_false] = ACTIONS(5153), [anon_sym_SQUOTE] = ACTIONS(5155), + [sym_null_literal] = ACTIONS(5153), [sym__backtick_identifier] = ACTIONS(5155), [sym__automatic_semicolon] = ACTIONS(5155), [sym_safe_nav] = ACTIONS(5155), @@ -380358,7 +380358,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4457), [anon_sym_AMP_AMP] = ACTIONS(4457), [anon_sym_PIPE_PIPE] = ACTIONS(4457), - [anon_sym_null] = ACTIONS(4455), [anon_sym_if] = ACTIONS(4455), [anon_sym_else] = ACTIONS(4455), [anon_sym_when] = ACTIONS(4455), @@ -380409,6 +380408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4455), [anon_sym_false] = ACTIONS(4455), [anon_sym_SQUOTE] = ACTIONS(4457), + [sym_null_literal] = ACTIONS(4455), [sym__backtick_identifier] = ACTIONS(4457), [sym__automatic_semicolon] = ACTIONS(4457), [sym_safe_nav] = ACTIONS(4457), @@ -380443,7 +380443,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4858), [anon_sym_AMP_AMP] = ACTIONS(4858), [anon_sym_PIPE_PIPE] = ACTIONS(4858), - [anon_sym_null] = ACTIONS(4856), [anon_sym_if] = ACTIONS(4856), [anon_sym_else] = ACTIONS(6631), [anon_sym_when] = ACTIONS(4856), @@ -380494,6 +380493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4856), [anon_sym_false] = ACTIONS(4856), [anon_sym_SQUOTE] = ACTIONS(4858), + [sym_null_literal] = ACTIONS(4856), [sym__backtick_identifier] = ACTIONS(4858), [sym__automatic_semicolon] = ACTIONS(4858), [sym_safe_nav] = ACTIONS(4858), @@ -380528,7 +380528,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5143), [anon_sym_AMP_AMP] = ACTIONS(5143), [anon_sym_PIPE_PIPE] = ACTIONS(5143), - [anon_sym_null] = ACTIONS(5141), [anon_sym_if] = ACTIONS(5141), [anon_sym_else] = ACTIONS(5141), [anon_sym_when] = ACTIONS(5141), @@ -380579,6 +380578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5141), [anon_sym_false] = ACTIONS(5141), [anon_sym_SQUOTE] = ACTIONS(5143), + [sym_null_literal] = ACTIONS(5141), [sym__backtick_identifier] = ACTIONS(5143), [sym__automatic_semicolon] = ACTIONS(5143), [sym_safe_nav] = ACTIONS(5143), @@ -380698,7 +380698,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4217), [anon_sym_AMP_AMP] = ACTIONS(4217), [anon_sym_PIPE_PIPE] = ACTIONS(4217), - [anon_sym_null] = ACTIONS(4214), [anon_sym_if] = ACTIONS(4214), [anon_sym_else] = ACTIONS(4214), [anon_sym_when] = ACTIONS(4214), @@ -380749,6 +380748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4214), [anon_sym_false] = ACTIONS(4214), [anon_sym_SQUOTE] = ACTIONS(4217), + [sym_null_literal] = ACTIONS(4214), [sym__backtick_identifier] = ACTIONS(4217), [sym__automatic_semicolon] = ACTIONS(4217), [sym_safe_nav] = ACTIONS(4217), @@ -380783,7 +380783,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(1746), [anon_sym_AMP_AMP] = ACTIONS(1746), [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), [anon_sym_if] = ACTIONS(1744), [anon_sym_else] = ACTIONS(1744), [anon_sym_when] = ACTIONS(1744), @@ -380834,6 +380833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1744), [anon_sym_false] = ACTIONS(1744), [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_null_literal] = ACTIONS(1744), [sym__backtick_identifier] = ACTIONS(1746), [sym__automatic_semicolon] = ACTIONS(1746), [sym_safe_nav] = ACTIONS(1746), @@ -380953,7 +380953,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5151), [anon_sym_AMP_AMP] = ACTIONS(5151), [anon_sym_PIPE_PIPE] = ACTIONS(5151), - [anon_sym_null] = ACTIONS(5149), [anon_sym_if] = ACTIONS(5149), [anon_sym_else] = ACTIONS(5149), [anon_sym_when] = ACTIONS(5149), @@ -381004,6 +381003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5149), [anon_sym_false] = ACTIONS(5149), [anon_sym_SQUOTE] = ACTIONS(5151), + [sym_null_literal] = ACTIONS(5149), [sym__backtick_identifier] = ACTIONS(5151), [sym__automatic_semicolon] = ACTIONS(5151), [sym_safe_nav] = ACTIONS(5151), @@ -381038,7 +381038,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4337), [anon_sym_AMP_AMP] = ACTIONS(4337), [anon_sym_PIPE_PIPE] = ACTIONS(4337), - [anon_sym_null] = ACTIONS(4335), [anon_sym_if] = ACTIONS(4335), [anon_sym_else] = ACTIONS(4335), [anon_sym_when] = ACTIONS(4335), @@ -381089,6 +381088,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4335), [anon_sym_false] = ACTIONS(4335), [anon_sym_SQUOTE] = ACTIONS(4337), + [sym_null_literal] = ACTIONS(4335), [sym__backtick_identifier] = ACTIONS(4337), [sym__automatic_semicolon] = ACTIONS(4337), [sym_safe_nav] = ACTIONS(4337), @@ -381123,7 +381123,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5159), [anon_sym_AMP_AMP] = ACTIONS(5159), [anon_sym_PIPE_PIPE] = ACTIONS(5159), - [anon_sym_null] = ACTIONS(5157), [anon_sym_if] = ACTIONS(5157), [anon_sym_else] = ACTIONS(5157), [anon_sym_when] = ACTIONS(5157), @@ -381174,6 +381173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5157), [anon_sym_false] = ACTIONS(5157), [anon_sym_SQUOTE] = ACTIONS(5159), + [sym_null_literal] = ACTIONS(5157), [sym__backtick_identifier] = ACTIONS(5159), [sym__automatic_semicolon] = ACTIONS(5159), [sym_safe_nav] = ACTIONS(5159), @@ -381208,7 +381208,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4185), [anon_sym_AMP_AMP] = ACTIONS(4185), [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_null] = ACTIONS(4182), [anon_sym_if] = ACTIONS(4182), [anon_sym_else] = ACTIONS(4182), [anon_sym_when] = ACTIONS(4182), @@ -381259,6 +381258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4182), [anon_sym_false] = ACTIONS(4182), [anon_sym_SQUOTE] = ACTIONS(4185), + [sym_null_literal] = ACTIONS(4182), [sym__backtick_identifier] = ACTIONS(4185), [sym__automatic_semicolon] = ACTIONS(4185), [sym_safe_nav] = ACTIONS(4185), @@ -381293,7 +381293,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4375), [anon_sym_AMP_AMP] = ACTIONS(4375), [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_null] = ACTIONS(4373), [anon_sym_if] = ACTIONS(4373), [anon_sym_else] = ACTIONS(4373), [anon_sym_when] = ACTIONS(4373), @@ -381344,6 +381343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4373), [anon_sym_false] = ACTIONS(4373), [anon_sym_SQUOTE] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4373), [sym__backtick_identifier] = ACTIONS(4375), [sym__automatic_semicolon] = ACTIONS(4375), [sym_safe_nav] = ACTIONS(4375), @@ -381378,7 +381378,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(5163), [anon_sym_AMP_AMP] = ACTIONS(5163), [anon_sym_PIPE_PIPE] = ACTIONS(5163), - [anon_sym_null] = ACTIONS(5161), [anon_sym_if] = ACTIONS(5161), [anon_sym_else] = ACTIONS(5161), [anon_sym_when] = ACTIONS(5161), @@ -381429,6 +381428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(5161), [anon_sym_false] = ACTIONS(5161), [anon_sym_SQUOTE] = ACTIONS(5163), + [sym_null_literal] = ACTIONS(5161), [sym__backtick_identifier] = ACTIONS(5163), [sym__automatic_semicolon] = ACTIONS(5163), [sym_safe_nav] = ACTIONS(5163), @@ -381463,7 +381463,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4858), [anon_sym_AMP_AMP] = ACTIONS(4858), [anon_sym_PIPE_PIPE] = ACTIONS(4858), - [anon_sym_null] = ACTIONS(4856), [anon_sym_if] = ACTIONS(4856), [anon_sym_else] = ACTIONS(6631), [anon_sym_when] = ACTIONS(4856), @@ -381514,6 +381513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4856), [anon_sym_false] = ACTIONS(4856), [anon_sym_SQUOTE] = ACTIONS(4858), + [sym_null_literal] = ACTIONS(4856), [sym__backtick_identifier] = ACTIONS(4858), [sym__automatic_semicolon] = ACTIONS(4858), [sym_safe_nav] = ACTIONS(4858), @@ -381543,7 +381543,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(4162), [sym_label] = ACTIONS(4158), [anon_sym_in] = ACTIONS(4158), - [anon_sym_null] = ACTIONS(4158), [anon_sym_if] = ACTIONS(4158), [anon_sym_else] = ACTIONS(4158), [anon_sym_when] = ACTIONS(4158), @@ -381600,6 +381599,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4158), [anon_sym_false] = ACTIONS(4158), [anon_sym_SQUOTE] = ACTIONS(4160), + [sym_null_literal] = ACTIONS(4158), [sym__backtick_identifier] = ACTIONS(4160), [sym__automatic_semicolon] = ACTIONS(4160), [sym_multiline_comment] = ACTIONS(3), @@ -381633,7 +381633,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4217), [anon_sym_AMP_AMP] = ACTIONS(4217), [anon_sym_PIPE_PIPE] = ACTIONS(4217), - [anon_sym_null] = ACTIONS(4214), [anon_sym_if] = ACTIONS(4214), [anon_sym_else] = ACTIONS(4214), [anon_sym_when] = ACTIONS(4214), @@ -381684,6 +381683,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4214), [anon_sym_false] = ACTIONS(4214), [anon_sym_SQUOTE] = ACTIONS(4217), + [sym_null_literal] = ACTIONS(4214), [sym__backtick_identifier] = ACTIONS(4217), [sym__automatic_semicolon] = ACTIONS(4217), [sym_safe_nav] = ACTIONS(4217), @@ -381718,7 +381718,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4099), [anon_sym_AMP_AMP] = ACTIONS(4099), [anon_sym_PIPE_PIPE] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4097), [anon_sym_if] = ACTIONS(4097), [anon_sym_else] = ACTIONS(4097), [anon_sym_when] = ACTIONS(4097), @@ -381769,6 +381768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4097), [anon_sym_false] = ACTIONS(4097), [anon_sym_SQUOTE] = ACTIONS(4099), + [sym_null_literal] = ACTIONS(4097), [sym__backtick_identifier] = ACTIONS(4099), [sym__automatic_semicolon] = ACTIONS(4099), [sym_safe_nav] = ACTIONS(4099), @@ -381803,7 +381803,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4099), [anon_sym_AMP_AMP] = ACTIONS(4099), [anon_sym_PIPE_PIPE] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4097), [anon_sym_if] = ACTIONS(4097), [anon_sym_else] = ACTIONS(4097), [anon_sym_when] = ACTIONS(4097), @@ -381854,6 +381853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4097), [anon_sym_false] = ACTIONS(4097), [anon_sym_SQUOTE] = ACTIONS(4099), + [sym_null_literal] = ACTIONS(4097), [sym__backtick_identifier] = ACTIONS(4099), [sym__automatic_semicolon] = ACTIONS(4099), [sym_safe_nav] = ACTIONS(4099), @@ -382396,7 +382396,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4125), [anon_sym_AMP_AMP] = ACTIONS(4125), [anon_sym_PIPE_PIPE] = ACTIONS(4125), - [anon_sym_null] = ACTIONS(4123), [anon_sym_if] = ACTIONS(4123), [anon_sym_else] = ACTIONS(4123), [anon_sym_when] = ACTIONS(4123), @@ -382442,6 +382441,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4123), [anon_sym_false] = ACTIONS(4123), [anon_sym_SQUOTE] = ACTIONS(4125), + [sym_null_literal] = ACTIONS(4123), [sym__backtick_identifier] = ACTIONS(4125), [sym__automatic_semicolon] = ACTIONS(4125), [sym_safe_nav] = ACTIONS(4125), @@ -382816,7 +382816,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4089), [anon_sym_AMP_AMP] = ACTIONS(4089), [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_null] = ACTIONS(4087), [anon_sym_if] = ACTIONS(4087), [anon_sym_else] = ACTIONS(4087), [anon_sym_when] = ACTIONS(4087), @@ -382862,6 +382861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4087), [anon_sym_false] = ACTIONS(4087), [anon_sym_SQUOTE] = ACTIONS(4089), + [sym_null_literal] = ACTIONS(4087), [sym__backtick_identifier] = ACTIONS(4089), [sym__automatic_semicolon] = ACTIONS(4089), [sym_safe_nav] = ACTIONS(4089), @@ -382900,7 +382900,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4099), [anon_sym_AMP_AMP] = ACTIONS(4099), [anon_sym_PIPE_PIPE] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4097), [anon_sym_if] = ACTIONS(4097), [anon_sym_else] = ACTIONS(4097), [anon_sym_when] = ACTIONS(4097), @@ -382946,6 +382945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4097), [anon_sym_false] = ACTIONS(4097), [anon_sym_SQUOTE] = ACTIONS(4099), + [sym_null_literal] = ACTIONS(4097), [sym__backtick_identifier] = ACTIONS(4099), [sym__automatic_semicolon] = ACTIONS(4099), [sym_safe_nav] = ACTIONS(4099), @@ -382984,7 +382984,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4144), [anon_sym_AMP_AMP] = ACTIONS(4144), [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4142), [anon_sym_if] = ACTIONS(4142), [anon_sym_else] = ACTIONS(4142), [anon_sym_when] = ACTIONS(4142), @@ -383030,6 +383029,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4142), [anon_sym_false] = ACTIONS(4142), [anon_sym_SQUOTE] = ACTIONS(4144), + [sym_null_literal] = ACTIONS(4142), [sym__backtick_identifier] = ACTIONS(4144), [sym__automatic_semicolon] = ACTIONS(4144), [sym_safe_nav] = ACTIONS(4144), @@ -383404,7 +383404,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4079), [anon_sym_AMP_AMP] = ACTIONS(4079), [anon_sym_PIPE_PIPE] = ACTIONS(4079), - [anon_sym_null] = ACTIONS(4077), [anon_sym_if] = ACTIONS(4077), [anon_sym_else] = ACTIONS(4077), [anon_sym_when] = ACTIONS(4077), @@ -383450,6 +383449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4077), [anon_sym_false] = ACTIONS(4077), [anon_sym_SQUOTE] = ACTIONS(4079), + [sym_null_literal] = ACTIONS(4077), [sym__backtick_identifier] = ACTIONS(4079), [sym__automatic_semicolon] = ACTIONS(4079), [sym_safe_nav] = ACTIONS(4079), @@ -384912,7 +384912,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4220), [anon_sym_AMP_AMP] = ACTIONS(4220), [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(4222), [anon_sym_when] = ACTIONS(3938), @@ -384963,6 +384962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(4217), [sym_safe_nav] = ACTIONS(4220), [sym_multiline_comment] = ACTIONS(3), @@ -385080,7 +385080,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4188), [anon_sym_AMP_AMP] = ACTIONS(4188), [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(4190), [anon_sym_when] = ACTIONS(3938), @@ -385131,6 +385130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(4185), [sym_safe_nav] = ACTIONS(4188), [sym_multiline_comment] = ACTIONS(3), @@ -390608,7 +390608,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4390), [sym_label] = ACTIONS(4388), [anon_sym_in] = ACTIONS(4388), - [anon_sym_null] = ACTIONS(4388), [anon_sym_if] = ACTIONS(4388), [anon_sym_else] = ACTIONS(4388), [anon_sym_when] = ACTIONS(4388), @@ -390665,6 +390664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4388), [anon_sym_false] = ACTIONS(4388), [anon_sym_SQUOTE] = ACTIONS(4390), + [sym_null_literal] = ACTIONS(4388), [sym__backtick_identifier] = ACTIONS(4390), [sym__automatic_semicolon] = ACTIONS(4390), [sym_multiline_comment] = ACTIONS(3), @@ -390940,7 +390940,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4396), [sym_label] = ACTIONS(4394), [anon_sym_in] = ACTIONS(4394), - [anon_sym_null] = ACTIONS(4394), [anon_sym_if] = ACTIONS(4394), [anon_sym_else] = ACTIONS(4394), [anon_sym_when] = ACTIONS(4394), @@ -390997,6 +390996,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4394), [anon_sym_false] = ACTIONS(4394), [anon_sym_SQUOTE] = ACTIONS(4396), + [sym_null_literal] = ACTIONS(4394), [sym__backtick_identifier] = ACTIONS(4396), [sym__automatic_semicolon] = ACTIONS(4396), [sym_multiline_comment] = ACTIONS(3), @@ -392439,7 +392439,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(6765), [anon_sym_while] = ACTIONS(6765), [anon_sym_do] = ACTIONS(6765), - [anon_sym_null] = ACTIONS(6765), [anon_sym_if] = ACTIONS(6765), [anon_sym_when] = ACTIONS(6765), [anon_sym_try] = ACTIONS(6765), @@ -392492,6 +392491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(6765), [anon_sym_false] = ACTIONS(6765), [anon_sym_SQUOTE] = ACTIONS(6763), + [sym_null_literal] = ACTIONS(6765), [sym__backtick_identifier] = ACTIONS(6763), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(6763), @@ -392937,7 +392937,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(4117), [anon_sym_while] = ACTIONS(4117), [anon_sym_do] = ACTIONS(4117), - [anon_sym_null] = ACTIONS(4117), [anon_sym_if] = ACTIONS(4117), [anon_sym_when] = ACTIONS(4117), [anon_sym_try] = ACTIONS(4117), @@ -392990,6 +392989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4117), [anon_sym_false] = ACTIONS(4117), [anon_sym_SQUOTE] = ACTIONS(4119), + [sym_null_literal] = ACTIONS(4117), [sym__backtick_identifier] = ACTIONS(4119), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4119), @@ -393850,7 +393850,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4217), [anon_sym_AMP_AMP] = ACTIONS(4217), [anon_sym_PIPE_PIPE] = ACTIONS(4217), - [anon_sym_null] = ACTIONS(4214), [anon_sym_if] = ACTIONS(4214), [anon_sym_else] = ACTIONS(4214), [anon_sym_when] = ACTIONS(4214), @@ -393901,6 +393900,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4214), [anon_sym_false] = ACTIONS(4214), [anon_sym_SQUOTE] = ACTIONS(4217), + [sym_null_literal] = ACTIONS(4214), [sym__backtick_identifier] = ACTIONS(4217), [sym__automatic_semicolon] = ACTIONS(4217), [sym_safe_nav] = ACTIONS(4217), @@ -394016,7 +394016,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4185), [anon_sym_AMP_AMP] = ACTIONS(4185), [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_null] = ACTIONS(4182), [anon_sym_if] = ACTIONS(4182), [anon_sym_else] = ACTIONS(4182), [anon_sym_when] = ACTIONS(4182), @@ -394067,6 +394066,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4182), [anon_sym_false] = ACTIONS(4182), [anon_sym_SQUOTE] = ACTIONS(4185), + [sym_null_literal] = ACTIONS(4182), [sym__backtick_identifier] = ACTIONS(4185), [sym__automatic_semicolon] = ACTIONS(4185), [sym_safe_nav] = ACTIONS(4185), @@ -394260,7 +394260,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4272), [sym_label] = ACTIONS(4270), [anon_sym_in] = ACTIONS(4270), - [anon_sym_null] = ACTIONS(4270), [anon_sym_if] = ACTIONS(4270), [anon_sym_else] = ACTIONS(4270), [anon_sym_when] = ACTIONS(4270), @@ -394317,6 +394316,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4270), [anon_sym_false] = ACTIONS(4270), [anon_sym_SQUOTE] = ACTIONS(4272), + [sym_null_literal] = ACTIONS(4270), [sym__backtick_identifier] = ACTIONS(4272), [sym__automatic_semicolon] = ACTIONS(4272), [sym_multiline_comment] = ACTIONS(3), @@ -395012,7 +395012,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4188), [anon_sym_AMP_AMP] = ACTIONS(4188), [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_null] = ACTIONS(4182), [anon_sym_if] = ACTIONS(4182), [anon_sym_else] = ACTIONS(4190), [anon_sym_when] = ACTIONS(4182), @@ -395063,6 +395062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4182), [anon_sym_false] = ACTIONS(4182), [anon_sym_SQUOTE] = ACTIONS(4185), + [sym_null_literal] = ACTIONS(4182), [sym__backtick_identifier] = ACTIONS(4185), [sym__automatic_semicolon] = ACTIONS(4188), [sym_safe_nav] = ACTIONS(4188), @@ -395095,7 +395095,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4220), [anon_sym_AMP_AMP] = ACTIONS(4220), [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(4214), [anon_sym_if] = ACTIONS(4214), [anon_sym_else] = ACTIONS(4222), [anon_sym_when] = ACTIONS(4214), @@ -395146,6 +395145,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4214), [anon_sym_false] = ACTIONS(4214), [anon_sym_SQUOTE] = ACTIONS(4217), + [sym_null_literal] = ACTIONS(4214), [sym__backtick_identifier] = ACTIONS(4217), [sym__automatic_semicolon] = ACTIONS(4220), [sym_safe_nav] = ACTIONS(4220), @@ -395261,7 +395261,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(6799), [anon_sym_while] = ACTIONS(6799), [anon_sym_do] = ACTIONS(6799), - [anon_sym_null] = ACTIONS(6799), [anon_sym_if] = ACTIONS(6799), [anon_sym_when] = ACTIONS(6799), [anon_sym_try] = ACTIONS(6799), @@ -395314,6 +395313,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(6799), [anon_sym_false] = ACTIONS(6799), [anon_sym_SQUOTE] = ACTIONS(6797), + [sym_null_literal] = ACTIONS(6799), [sym__backtick_identifier] = ACTIONS(6797), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(6797), @@ -395344,7 +395344,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3938), [anon_sym_while] = ACTIONS(3938), [anon_sym_do] = ACTIONS(3938), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_when] = ACTIONS(3938), [anon_sym_try] = ACTIONS(3938), @@ -395397,6 +395396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(3943), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3943), @@ -395427,7 +395427,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4858), [anon_sym_AMP_AMP] = ACTIONS(4858), [anon_sym_PIPE_PIPE] = ACTIONS(4858), - [anon_sym_null] = ACTIONS(4856), [anon_sym_if] = ACTIONS(4856), [anon_sym_else] = ACTIONS(6803), [anon_sym_when] = ACTIONS(4856), @@ -395478,6 +395477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4856), [anon_sym_false] = ACTIONS(4856), [anon_sym_SQUOTE] = ACTIONS(4858), + [sym_null_literal] = ACTIONS(4856), [sym__backtick_identifier] = ACTIONS(4858), [sym__automatic_semicolon] = ACTIONS(4858), [sym_safe_nav] = ACTIONS(4858), @@ -395510,7 +395510,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4858), [anon_sym_AMP_AMP] = ACTIONS(4858), [anon_sym_PIPE_PIPE] = ACTIONS(4858), - [anon_sym_null] = ACTIONS(4856), [anon_sym_if] = ACTIONS(4856), [anon_sym_else] = ACTIONS(6803), [anon_sym_when] = ACTIONS(4856), @@ -395561,6 +395560,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4856), [anon_sym_false] = ACTIONS(4856), [anon_sym_SQUOTE] = ACTIONS(4858), + [sym_null_literal] = ACTIONS(4856), [sym__backtick_identifier] = ACTIONS(4858), [sym__automatic_semicolon] = ACTIONS(4858), [sym_safe_nav] = ACTIONS(4858), @@ -396755,7 +396755,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4852), [anon_sym_AMP_AMP] = ACTIONS(4852), [anon_sym_PIPE_PIPE] = ACTIONS(4852), - [anon_sym_null] = ACTIONS(4850), [anon_sym_if] = ACTIONS(4850), [anon_sym_else] = ACTIONS(4850), [anon_sym_when] = ACTIONS(4850), @@ -396806,6 +396805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4850), [anon_sym_false] = ACTIONS(4850), [anon_sym_SQUOTE] = ACTIONS(4852), + [sym_null_literal] = ACTIONS(4850), [sym__backtick_identifier] = ACTIONS(4852), [sym__automatic_semicolon] = ACTIONS(4852), [sym_safe_nav] = ACTIONS(4852), @@ -396838,7 +396838,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4842), [anon_sym_AMP_AMP] = ACTIONS(4842), [anon_sym_PIPE_PIPE] = ACTIONS(4842), - [anon_sym_null] = ACTIONS(4840), [anon_sym_if] = ACTIONS(4840), [anon_sym_else] = ACTIONS(4840), [anon_sym_when] = ACTIONS(4840), @@ -396889,6 +396888,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4840), [anon_sym_false] = ACTIONS(4840), [anon_sym_SQUOTE] = ACTIONS(4842), + [sym_null_literal] = ACTIONS(4840), [sym__backtick_identifier] = ACTIONS(4842), [sym__automatic_semicolon] = ACTIONS(4842), [sym_safe_nav] = ACTIONS(4842), @@ -397165,7 +397165,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4636), [sym_label] = ACTIONS(4634), [anon_sym_in] = ACTIONS(4634), - [anon_sym_null] = ACTIONS(4634), [anon_sym_if] = ACTIONS(4634), [anon_sym_else] = ACTIONS(4634), [anon_sym_when] = ACTIONS(4634), @@ -397222,6 +397221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4634), [anon_sym_false] = ACTIONS(4634), [anon_sym_SQUOTE] = ACTIONS(4636), + [sym_null_literal] = ACTIONS(4634), [sym__backtick_identifier] = ACTIONS(4636), [sym__automatic_semicolon] = ACTIONS(4636), [sym_multiline_comment] = ACTIONS(3), @@ -397414,7 +397414,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4640), [sym_label] = ACTIONS(4638), [anon_sym_in] = ACTIONS(4638), - [anon_sym_null] = ACTIONS(4638), [anon_sym_if] = ACTIONS(4638), [anon_sym_else] = ACTIONS(4638), [anon_sym_when] = ACTIONS(4638), @@ -397471,6 +397470,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4638), [anon_sym_false] = ACTIONS(4638), [anon_sym_SQUOTE] = ACTIONS(4640), + [sym_null_literal] = ACTIONS(4638), [sym__backtick_identifier] = ACTIONS(4640), [sym__automatic_semicolon] = ACTIONS(4640), [sym_multiline_comment] = ACTIONS(3), @@ -397580,7 +397580,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4644), [sym_label] = ACTIONS(4642), [anon_sym_in] = ACTIONS(4642), - [anon_sym_null] = ACTIONS(4642), [anon_sym_if] = ACTIONS(4642), [anon_sym_else] = ACTIONS(4642), [anon_sym_when] = ACTIONS(4642), @@ -397637,6 +397636,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4642), [anon_sym_false] = ACTIONS(4642), [anon_sym_SQUOTE] = ACTIONS(4644), + [sym_null_literal] = ACTIONS(4642), [sym__backtick_identifier] = ACTIONS(4644), [sym__automatic_semicolon] = ACTIONS(4644), [sym_multiline_comment] = ACTIONS(3), @@ -397834,7 +397834,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(6825), [anon_sym_while] = ACTIONS(6825), [anon_sym_do] = ACTIONS(6825), - [anon_sym_null] = ACTIONS(6825), [anon_sym_if] = ACTIONS(6825), [anon_sym_when] = ACTIONS(6825), [anon_sym_try] = ACTIONS(6825), @@ -397887,6 +397886,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(6825), [anon_sym_false] = ACTIONS(6825), [anon_sym_SQUOTE] = ACTIONS(6823), + [sym_null_literal] = ACTIONS(6825), [sym__backtick_identifier] = ACTIONS(6823), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(6823), @@ -398669,7 +398669,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4144), [anon_sym_AMP_AMP] = ACTIONS(4144), [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4142), [anon_sym_if] = ACTIONS(4142), [anon_sym_else] = ACTIONS(4142), [anon_sym_when] = ACTIONS(4142), @@ -398715,6 +398714,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4142), [anon_sym_false] = ACTIONS(4142), [anon_sym_SQUOTE] = ACTIONS(4144), + [sym_null_literal] = ACTIONS(4142), [sym__backtick_identifier] = ACTIONS(4144), [sym__automatic_semicolon] = ACTIONS(4144), [sym_safe_nav] = ACTIONS(4144), @@ -398830,7 +398830,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4217), [anon_sym_AMP_AMP] = ACTIONS(4217), [anon_sym_PIPE_PIPE] = ACTIONS(4217), - [anon_sym_null] = ACTIONS(4214), [anon_sym_if] = ACTIONS(4214), [anon_sym_else] = ACTIONS(4214), [anon_sym_when] = ACTIONS(4214), @@ -398881,6 +398880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4214), [anon_sym_false] = ACTIONS(4214), [anon_sym_SQUOTE] = ACTIONS(4217), + [sym_null_literal] = ACTIONS(4214), [sym__backtick_identifier] = ACTIONS(4217), [sym__automatic_semicolon] = ACTIONS(4217), [sym_safe_nav] = ACTIONS(4217), @@ -398913,7 +398913,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4185), [anon_sym_AMP_AMP] = ACTIONS(4185), [anon_sym_PIPE_PIPE] = ACTIONS(4185), - [anon_sym_null] = ACTIONS(4182), [anon_sym_if] = ACTIONS(4182), [anon_sym_else] = ACTIONS(4182), [anon_sym_when] = ACTIONS(4182), @@ -398964,6 +398963,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4182), [anon_sym_false] = ACTIONS(4182), [anon_sym_SQUOTE] = ACTIONS(4185), + [sym_null_literal] = ACTIONS(4182), [sym__backtick_identifier] = ACTIONS(4185), [sym__automatic_semicolon] = ACTIONS(4185), [sym_safe_nav] = ACTIONS(4185), @@ -400329,7 +400329,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4262), [anon_sym_AMP_AMP] = ACTIONS(4262), [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_null] = ACTIONS(4260), [anon_sym_if] = ACTIONS(4260), [anon_sym_else] = ACTIONS(4260), [anon_sym_when] = ACTIONS(4260), @@ -400375,6 +400374,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4260), [anon_sym_false] = ACTIONS(4260), [anon_sym_SQUOTE] = ACTIONS(4262), + [sym_null_literal] = ACTIONS(4260), [sym__backtick_identifier] = ACTIONS(4262), [sym__automatic_semicolon] = ACTIONS(4262), [sym_safe_nav] = ACTIONS(4262), @@ -400412,7 +400412,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4252), [anon_sym_AMP_AMP] = ACTIONS(4252), [anon_sym_PIPE_PIPE] = ACTIONS(4252), - [anon_sym_null] = ACTIONS(4250), [anon_sym_if] = ACTIONS(4250), [anon_sym_else] = ACTIONS(4250), [anon_sym_when] = ACTIONS(4250), @@ -400458,6 +400457,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4250), [anon_sym_false] = ACTIONS(4250), [anon_sym_SQUOTE] = ACTIONS(4252), + [sym_null_literal] = ACTIONS(4250), [sym__backtick_identifier] = ACTIONS(4252), [sym__automatic_semicolon] = ACTIONS(4252), [sym_safe_nav] = ACTIONS(4252), @@ -400568,7 +400568,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4654), [sym_label] = ACTIONS(4652), [anon_sym_in] = ACTIONS(4652), - [anon_sym_null] = ACTIONS(4652), [anon_sym_if] = ACTIONS(4652), [anon_sym_else] = ACTIONS(4652), [anon_sym_when] = ACTIONS(4652), @@ -400625,6 +400624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4652), [anon_sym_false] = ACTIONS(4652), [anon_sym_SQUOTE] = ACTIONS(4654), + [sym_null_literal] = ACTIONS(4652), [sym__backtick_identifier] = ACTIONS(4654), [sym__automatic_semicolon] = ACTIONS(4654), [sym_multiline_comment] = ACTIONS(3), @@ -400651,7 +400651,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4659), [sym_label] = ACTIONS(4656), [anon_sym_in] = ACTIONS(4656), - [anon_sym_null] = ACTIONS(4656), [anon_sym_if] = ACTIONS(4656), [anon_sym_else] = ACTIONS(4656), [anon_sym_when] = ACTIONS(4656), @@ -400708,6 +400707,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4656), [anon_sym_false] = ACTIONS(4656), [anon_sym_SQUOTE] = ACTIONS(4659), + [sym_null_literal] = ACTIONS(4656), [sym__backtick_identifier] = ACTIONS(4659), [sym__automatic_semicolon] = ACTIONS(4659), [sym_multiline_comment] = ACTIONS(3), @@ -400827,7 +400827,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4232), [anon_sym_AMP_AMP] = ACTIONS(4232), [anon_sym_PIPE_PIPE] = ACTIONS(4232), - [anon_sym_null] = ACTIONS(4230), [anon_sym_if] = ACTIONS(4230), [anon_sym_else] = ACTIONS(4230), [anon_sym_when] = ACTIONS(4230), @@ -400873,6 +400872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4230), [anon_sym_false] = ACTIONS(4230), [anon_sym_SQUOTE] = ACTIONS(4232), + [sym_null_literal] = ACTIONS(4230), [sym__backtick_identifier] = ACTIONS(4232), [sym__automatic_semicolon] = ACTIONS(4232), [sym_safe_nav] = ACTIONS(4232), @@ -400993,7 +400993,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4144), [anon_sym_AMP_AMP] = ACTIONS(4144), [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4142), [anon_sym_if] = ACTIONS(4142), [anon_sym_else] = ACTIONS(4142), [anon_sym_when] = ACTIONS(4142), @@ -401039,6 +401038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4142), [anon_sym_false] = ACTIONS(4142), [anon_sym_SQUOTE] = ACTIONS(4144), + [sym_null_literal] = ACTIONS(4142), [sym__backtick_identifier] = ACTIONS(4144), [sym__automatic_semicolon] = ACTIONS(4144), [sym_safe_nav] = ACTIONS(4144), @@ -401315,7 +401315,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4375), [sym_label] = ACTIONS(4373), [anon_sym_in] = ACTIONS(4373), - [anon_sym_null] = ACTIONS(4373), [anon_sym_if] = ACTIONS(4373), [anon_sym_else] = ACTIONS(4373), [anon_sym_when] = ACTIONS(4373), @@ -401372,6 +401371,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4373), [anon_sym_false] = ACTIONS(4373), [anon_sym_SQUOTE] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4373), [sym__backtick_identifier] = ACTIONS(4375), [sym__automatic_semicolon] = ACTIONS(4375), [sym_multiline_comment] = ACTIONS(3), @@ -401408,7 +401408,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4240), [anon_sym_AMP_AMP] = ACTIONS(4240), [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4238), [anon_sym_if] = ACTIONS(4238), [anon_sym_else] = ACTIONS(4238), [anon_sym_when] = ACTIONS(4238), @@ -401454,6 +401453,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4238), [anon_sym_false] = ACTIONS(4238), [anon_sym_SQUOTE] = ACTIONS(4240), + [sym_null_literal] = ACTIONS(4238), [sym__backtick_identifier] = ACTIONS(4240), [sym__automatic_semicolon] = ACTIONS(4240), [sym_safe_nav] = ACTIONS(4240), @@ -401574,7 +401574,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4099), [anon_sym_AMP_AMP] = ACTIONS(4099), [anon_sym_PIPE_PIPE] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4097), [anon_sym_if] = ACTIONS(4097), [anon_sym_else] = ACTIONS(4097), [anon_sym_when] = ACTIONS(4097), @@ -401620,6 +401619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4097), [anon_sym_false] = ACTIONS(4097), [anon_sym_SQUOTE] = ACTIONS(4099), + [sym_null_literal] = ACTIONS(4097), [sym__backtick_identifier] = ACTIONS(4099), [sym__automatic_semicolon] = ACTIONS(4099), [sym_safe_nav] = ACTIONS(4099), @@ -401740,7 +401740,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4099), [anon_sym_AMP_AMP] = ACTIONS(4099), [anon_sym_PIPE_PIPE] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4097), [anon_sym_if] = ACTIONS(4097), [anon_sym_else] = ACTIONS(4097), [anon_sym_when] = ACTIONS(4097), @@ -401786,6 +401785,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4097), [anon_sym_false] = ACTIONS(4097), [anon_sym_SQUOTE] = ACTIONS(4099), + [sym_null_literal] = ACTIONS(4097), [sym__backtick_identifier] = ACTIONS(4099), [sym__automatic_semicolon] = ACTIONS(4099), [sym_safe_nav] = ACTIONS(4099), @@ -401818,7 +401818,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4220), [anon_sym_AMP_AMP] = ACTIONS(4220), [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(4222), [anon_sym_when] = ACTIONS(3938), @@ -401869,6 +401868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(4217), [sym__automatic_semicolon] = ACTIONS(4220), [sym_safe_nav] = ACTIONS(4220), @@ -401901,7 +401901,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4188), [anon_sym_AMP_AMP] = ACTIONS(4188), [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(4190), [anon_sym_when] = ACTIONS(3938), @@ -401952,6 +401951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(4185), [sym__automatic_semicolon] = ACTIONS(4188), [sym_safe_nav] = ACTIONS(4188), @@ -401989,7 +401989,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4089), [anon_sym_AMP_AMP] = ACTIONS(4089), [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_null] = ACTIONS(4087), [anon_sym_if] = ACTIONS(4087), [anon_sym_else] = ACTIONS(4087), [anon_sym_when] = ACTIONS(4087), @@ -402035,6 +402034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4087), [anon_sym_false] = ACTIONS(4087), [anon_sym_SQUOTE] = ACTIONS(4089), + [sym_null_literal] = ACTIONS(4087), [sym__backtick_identifier] = ACTIONS(4089), [sym__automatic_semicolon] = ACTIONS(4089), [sym_safe_nav] = ACTIONS(4089), @@ -402404,7 +402404,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4089), [anon_sym_AMP_AMP] = ACTIONS(4089), [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_null] = ACTIONS(4087), [anon_sym_if] = ACTIONS(4087), [anon_sym_else] = ACTIONS(4087), [anon_sym_when] = ACTIONS(4087), @@ -402450,6 +402449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4087), [anon_sym_false] = ACTIONS(4087), [anon_sym_SQUOTE] = ACTIONS(4089), + [sym_null_literal] = ACTIONS(4087), [sym__backtick_identifier] = ACTIONS(4089), [sym__automatic_semicolon] = ACTIONS(4089), [sym_safe_nav] = ACTIONS(4089), @@ -402560,7 +402560,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4138), [sym_label] = ACTIONS(4136), [anon_sym_in] = ACTIONS(4136), - [anon_sym_null] = ACTIONS(4136), [anon_sym_if] = ACTIONS(4136), [anon_sym_else] = ACTIONS(4136), [anon_sym_when] = ACTIONS(4136), @@ -402617,6 +402616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4136), [anon_sym_false] = ACTIONS(4136), [anon_sym_SQUOTE] = ACTIONS(4138), + [sym_null_literal] = ACTIONS(4136), [sym__backtick_identifier] = ACTIONS(4138), [sym__automatic_semicolon] = ACTIONS(4138), [sym_multiline_comment] = ACTIONS(3), @@ -403151,7 +403151,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4079), [anon_sym_AMP_AMP] = ACTIONS(4079), [anon_sym_PIPE_PIPE] = ACTIONS(4079), - [anon_sym_null] = ACTIONS(4077), [anon_sym_if] = ACTIONS(4077), [anon_sym_else] = ACTIONS(4077), [anon_sym_when] = ACTIONS(4077), @@ -403197,6 +403196,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4077), [anon_sym_false] = ACTIONS(4077), [anon_sym_SQUOTE] = ACTIONS(4079), + [sym_null_literal] = ACTIONS(4077), [sym__backtick_identifier] = ACTIONS(4079), [sym__automatic_semicolon] = ACTIONS(4079), [sym_safe_nav] = ACTIONS(4079), @@ -403224,7 +403224,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4601), [sym_label] = ACTIONS(4599), [anon_sym_in] = ACTIONS(4599), - [anon_sym_null] = ACTIONS(4599), [anon_sym_if] = ACTIONS(4599), [anon_sym_else] = ACTIONS(4599), [anon_sym_when] = ACTIONS(4599), @@ -403281,6 +403280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4599), [anon_sym_false] = ACTIONS(4599), [anon_sym_SQUOTE] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4599), [sym__backtick_identifier] = ACTIONS(4601), [sym__automatic_semicolon] = ACTIONS(4601), [sym_multiline_comment] = ACTIONS(3), @@ -403307,7 +403307,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4673), [sym_label] = ACTIONS(4670), [anon_sym_in] = ACTIONS(4670), - [anon_sym_null] = ACTIONS(4670), [anon_sym_if] = ACTIONS(4670), [anon_sym_else] = ACTIONS(4670), [anon_sym_when] = ACTIONS(4670), @@ -403364,6 +403363,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4670), [anon_sym_false] = ACTIONS(4670), [anon_sym_SQUOTE] = ACTIONS(4673), + [sym_null_literal] = ACTIONS(4670), [sym__backtick_identifier] = ACTIONS(4673), [sym__automatic_semicolon] = ACTIONS(4673), [sym_multiline_comment] = ACTIONS(3), @@ -403483,7 +403483,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4125), [anon_sym_AMP_AMP] = ACTIONS(4125), [anon_sym_PIPE_PIPE] = ACTIONS(4125), - [anon_sym_null] = ACTIONS(4123), [anon_sym_if] = ACTIONS(4123), [anon_sym_else] = ACTIONS(4123), [anon_sym_when] = ACTIONS(4123), @@ -403529,6 +403528,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4123), [anon_sym_false] = ACTIONS(4123), [anon_sym_SQUOTE] = ACTIONS(4125), + [sym_null_literal] = ACTIONS(4123), [sym__backtick_identifier] = ACTIONS(4125), [sym__automatic_semicolon] = ACTIONS(4125), [sym_safe_nav] = ACTIONS(4125), @@ -403893,7 +403893,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4188), [anon_sym_AMP_AMP] = ACTIONS(4188), [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_null] = ACTIONS(4190), [anon_sym_if] = ACTIONS(4190), [anon_sym_else] = ACTIONS(4190), [anon_sym_when] = ACTIONS(4190), @@ -403944,6 +403943,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4190), [anon_sym_false] = ACTIONS(4190), [anon_sym_SQUOTE] = ACTIONS(4188), + [sym_null_literal] = ACTIONS(4190), [sym__backtick_identifier] = ACTIONS(4188), [sym__automatic_semicolon] = ACTIONS(4188), [sym_safe_nav] = ACTIONS(4188), @@ -404059,7 +404059,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4220), [anon_sym_AMP_AMP] = ACTIONS(4220), [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(4222), [anon_sym_if] = ACTIONS(4222), [anon_sym_else] = ACTIONS(4222), [anon_sym_when] = ACTIONS(4222), @@ -404110,6 +404109,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4222), [anon_sym_false] = ACTIONS(4222), [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_null_literal] = ACTIONS(4222), [sym__backtick_identifier] = ACTIONS(4220), [sym__automatic_semicolon] = ACTIONS(4220), [sym_safe_nav] = ACTIONS(4220), @@ -405133,7 +405133,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4678), [sym_label] = ACTIONS(4676), [anon_sym_in] = ACTIONS(4676), - [anon_sym_null] = ACTIONS(4676), [anon_sym_if] = ACTIONS(4676), [anon_sym_else] = ACTIONS(4676), [anon_sym_when] = ACTIONS(4676), @@ -405190,6 +405189,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4676), [anon_sym_false] = ACTIONS(4676), [anon_sym_SQUOTE] = ACTIONS(4678), + [sym_null_literal] = ACTIONS(4676), [sym__backtick_identifier] = ACTIONS(4678), [sym__automatic_semicolon] = ACTIONS(4678), [sym_multiline_comment] = ACTIONS(3), @@ -405226,7 +405226,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4198), [anon_sym_AMP_AMP] = ACTIONS(4198), [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), [anon_sym_if] = ACTIONS(4196), [anon_sym_else] = ACTIONS(4196), [anon_sym_when] = ACTIONS(4196), @@ -405272,6 +405271,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4196), [anon_sym_false] = ACTIONS(4196), [anon_sym_SQUOTE] = ACTIONS(4198), + [sym_null_literal] = ACTIONS(4196), [sym__backtick_identifier] = ACTIONS(4198), [sym__automatic_semicolon] = ACTIONS(4198), [sym_safe_nav] = ACTIONS(4198), @@ -409944,7 +409944,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4890), [anon_sym_AMP_AMP] = ACTIONS(4890), [anon_sym_PIPE_PIPE] = ACTIONS(4890), - [anon_sym_null] = ACTIONS(4331), [anon_sym_if] = ACTIONS(4331), [anon_sym_else] = ACTIONS(4331), [anon_sym_when] = ACTIONS(4331), @@ -409995,6 +409994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4331), [anon_sym_false] = ACTIONS(4331), [anon_sym_SQUOTE] = ACTIONS(4333), + [sym_null_literal] = ACTIONS(4331), [sym__backtick_identifier] = ACTIONS(4333), [sym__automatic_semicolon] = ACTIONS(4333), [sym_safe_nav] = ACTIONS(4890), @@ -410272,7 +410272,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3943), [anon_sym_AMP_AMP] = ACTIONS(3943), [anon_sym_PIPE_PIPE] = ACTIONS(3943), - [anon_sym_null] = ACTIONS(4214), [anon_sym_if] = ACTIONS(4214), [anon_sym_else] = ACTIONS(4214), [anon_sym_when] = ACTIONS(4214), @@ -410323,6 +410322,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4214), [anon_sym_false] = ACTIONS(4214), [anon_sym_SQUOTE] = ACTIONS(4217), + [sym_null_literal] = ACTIONS(4214), [sym__backtick_identifier] = ACTIONS(4217), [sym__automatic_semicolon] = ACTIONS(4217), [sym_safe_nav] = ACTIONS(3943), @@ -410436,7 +410436,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3943), [anon_sym_AMP_AMP] = ACTIONS(3943), [anon_sym_PIPE_PIPE] = ACTIONS(3943), - [anon_sym_null] = ACTIONS(4182), [anon_sym_if] = ACTIONS(4182), [anon_sym_else] = ACTIONS(4182), [anon_sym_when] = ACTIONS(4182), @@ -410487,6 +410486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4182), [anon_sym_false] = ACTIONS(4182), [anon_sym_SQUOTE] = ACTIONS(4185), + [sym_null_literal] = ACTIONS(4182), [sym__backtick_identifier] = ACTIONS(4185), [sym__automatic_semicolon] = ACTIONS(4185), [sym_safe_nav] = ACTIONS(3943), @@ -411010,7 +411010,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(4103), [anon_sym_while] = ACTIONS(4103), [anon_sym_do] = ACTIONS(4103), - [anon_sym_null] = ACTIONS(4103), [anon_sym_if] = ACTIONS(4103), [anon_sym_when] = ACTIONS(4103), [anon_sym_try] = ACTIONS(4103), @@ -411063,6 +411062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4103), [anon_sym_false] = ACTIONS(4103), [anon_sym_SQUOTE] = ACTIONS(4105), + [sym_null_literal] = ACTIONS(4103), [sym__backtick_identifier] = ACTIONS(4105), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4105), @@ -411497,7 +411497,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4664), [sym_label] = ACTIONS(4662), [anon_sym_in] = ACTIONS(4662), - [anon_sym_null] = ACTIONS(4662), [anon_sym_if] = ACTIONS(4662), [anon_sym_else] = ACTIONS(4662), [anon_sym_when] = ACTIONS(4662), @@ -411554,6 +411553,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4662), [anon_sym_false] = ACTIONS(4662), [anon_sym_SQUOTE] = ACTIONS(4664), + [sym_null_literal] = ACTIONS(4662), [sym__backtick_identifier] = ACTIONS(4664), [sym__automatic_semicolon] = ACTIONS(4664), [sym_multiline_comment] = ACTIONS(3), @@ -411661,7 +411661,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4708), [sym_label] = ACTIONS(4706), [anon_sym_in] = ACTIONS(4706), - [anon_sym_null] = ACTIONS(4706), [anon_sym_if] = ACTIONS(4706), [anon_sym_else] = ACTIONS(4706), [anon_sym_when] = ACTIONS(4706), @@ -411718,6 +411717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4706), [anon_sym_false] = ACTIONS(4706), [anon_sym_SQUOTE] = ACTIONS(4708), + [sym_null_literal] = ACTIONS(4706), [sym__backtick_identifier] = ACTIONS(4708), [sym__automatic_semicolon] = ACTIONS(4708), [sym_multiline_comment] = ACTIONS(3), @@ -411917,7 +411917,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4453), [anon_sym_AMP_AMP] = ACTIONS(4453), [anon_sym_PIPE_PIPE] = ACTIONS(4453), - [anon_sym_null] = ACTIONS(4451), [anon_sym_if] = ACTIONS(4451), [anon_sym_else] = ACTIONS(4451), [anon_sym_when] = ACTIONS(4451), @@ -411963,6 +411962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4451), [anon_sym_false] = ACTIONS(4451), [anon_sym_SQUOTE] = ACTIONS(4453), + [sym_null_literal] = ACTIONS(4451), [sym__backtick_identifier] = ACTIONS(4453), [sym__automatic_semicolon] = ACTIONS(4453), [sym_safe_nav] = ACTIONS(4453), @@ -412245,7 +412245,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4418), [anon_sym_AMP_AMP] = ACTIONS(4418), [anon_sym_PIPE_PIPE] = ACTIONS(4418), - [anon_sym_null] = ACTIONS(4416), [anon_sym_if] = ACTIONS(4416), [anon_sym_else] = ACTIONS(4416), [anon_sym_when] = ACTIONS(4416), @@ -412291,6 +412290,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4416), [anon_sym_false] = ACTIONS(4416), [anon_sym_SQUOTE] = ACTIONS(4418), + [sym_null_literal] = ACTIONS(4416), [sym__backtick_identifier] = ACTIONS(4418), [sym__automatic_semicolon] = ACTIONS(4418), [sym_safe_nav] = ACTIONS(4418), @@ -412317,7 +412317,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4668), [sym_label] = ACTIONS(4666), [anon_sym_in] = ACTIONS(4666), - [anon_sym_null] = ACTIONS(4666), [anon_sym_if] = ACTIONS(4666), [anon_sym_else] = ACTIONS(4666), [anon_sym_when] = ACTIONS(4666), @@ -412374,6 +412373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4666), [anon_sym_false] = ACTIONS(4666), [anon_sym_SQUOTE] = ACTIONS(4668), + [sym_null_literal] = ACTIONS(4666), [sym__backtick_identifier] = ACTIONS(4668), [sym__automatic_semicolon] = ACTIONS(4668), [sym_multiline_comment] = ACTIONS(3), @@ -412491,7 +412491,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4198), [anon_sym_AMP_AMP] = ACTIONS(4198), [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), [anon_sym_if] = ACTIONS(4196), [anon_sym_else] = ACTIONS(4196), [anon_sym_when] = ACTIONS(4196), @@ -412537,6 +412536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4196), [anon_sym_false] = ACTIONS(4196), [anon_sym_SQUOTE] = ACTIONS(4198), + [sym_null_literal] = ACTIONS(4196), [sym__backtick_identifier] = ACTIONS(4198), [sym__automatic_semicolon] = ACTIONS(4198), [sym_safe_nav] = ACTIONS(4198), @@ -413060,7 +413060,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4886), [anon_sym_AMP_AMP] = ACTIONS(4886), [anon_sym_PIPE_PIPE] = ACTIONS(4886), - [anon_sym_null] = ACTIONS(4343), [anon_sym_if] = ACTIONS(4343), [anon_sym_else] = ACTIONS(4343), [anon_sym_when] = ACTIONS(4343), @@ -413111,6 +413110,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4343), [anon_sym_false] = ACTIONS(4343), [anon_sym_SQUOTE] = ACTIONS(4345), + [sym_null_literal] = ACTIONS(4343), [sym__backtick_identifier] = ACTIONS(4345), [sym__automatic_semicolon] = ACTIONS(4345), [sym_safe_nav] = ACTIONS(4886), @@ -413219,7 +413219,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4095), [sym_label] = ACTIONS(4093), [anon_sym_in] = ACTIONS(4093), - [anon_sym_null] = ACTIONS(4093), [anon_sym_if] = ACTIONS(4093), [anon_sym_else] = ACTIONS(4093), [anon_sym_when] = ACTIONS(4093), @@ -413276,6 +413275,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4093), [anon_sym_false] = ACTIONS(4093), [anon_sym_SQUOTE] = ACTIONS(4095), + [sym_null_literal] = ACTIONS(4093), [sym__backtick_identifier] = ACTIONS(4095), [sym__automatic_semicolon] = ACTIONS(4095), [sym_multiline_comment] = ACTIONS(3), @@ -413312,7 +413312,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4220), [anon_sym_AMP_AMP] = ACTIONS(4220), [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(4222), [anon_sym_when] = ACTIONS(3938), @@ -413358,6 +413357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(4217), [sym_safe_nav] = ACTIONS(4220), [sym_multiline_comment] = ACTIONS(3), @@ -413394,7 +413394,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4188), [anon_sym_AMP_AMP] = ACTIONS(4188), [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(4190), [anon_sym_when] = ACTIONS(3938), @@ -413440,6 +413439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(4185), [sym_safe_nav] = ACTIONS(4188), [sym_multiline_comment] = ACTIONS(3), @@ -413634,7 +413634,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(6941), [anon_sym_while] = ACTIONS(6941), [anon_sym_do] = ACTIONS(6941), - [anon_sym_null] = ACTIONS(6941), [anon_sym_if] = ACTIONS(6941), [anon_sym_when] = ACTIONS(6941), [anon_sym_try] = ACTIONS(6941), @@ -413687,6 +413686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(6941), [anon_sym_false] = ACTIONS(6941), [anon_sym_SQUOTE] = ACTIONS(6939), + [sym_null_literal] = ACTIONS(6941), [sym__backtick_identifier] = ACTIONS(6939), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(6939), @@ -413716,7 +413716,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(4070), [anon_sym_while] = ACTIONS(4070), [anon_sym_do] = ACTIONS(4070), - [anon_sym_null] = ACTIONS(4070), [anon_sym_if] = ACTIONS(4070), [anon_sym_when] = ACTIONS(4070), [anon_sym_try] = ACTIONS(4070), @@ -413769,6 +413768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4070), [anon_sym_false] = ACTIONS(4070), [anon_sym_SQUOTE] = ACTIONS(4072), + [sym_null_literal] = ACTIONS(4070), [sym__backtick_identifier] = ACTIONS(4072), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4072), @@ -414039,7 +414039,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4682), [sym_label] = ACTIONS(4680), [anon_sym_in] = ACTIONS(4680), - [anon_sym_null] = ACTIONS(4680), [anon_sym_if] = ACTIONS(4680), [anon_sym_else] = ACTIONS(4680), [anon_sym_when] = ACTIONS(4680), @@ -414096,6 +414095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4680), [anon_sym_false] = ACTIONS(4680), [anon_sym_SQUOTE] = ACTIONS(4682), + [sym_null_literal] = ACTIONS(4680), [sym__backtick_identifier] = ACTIONS(4682), [sym__automatic_semicolon] = ACTIONS(4682), [sym_multiline_comment] = ACTIONS(3), @@ -414290,7 +414290,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(6945), [anon_sym_while] = ACTIONS(6945), [anon_sym_do] = ACTIONS(6945), - [anon_sym_null] = ACTIONS(6945), [anon_sym_if] = ACTIONS(6945), [anon_sym_when] = ACTIONS(6945), [anon_sym_try] = ACTIONS(6945), @@ -414343,6 +414342,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(6945), [anon_sym_false] = ACTIONS(6945), [anon_sym_SQUOTE] = ACTIONS(6943), + [sym_null_literal] = ACTIONS(6945), [sym__backtick_identifier] = ACTIONS(6943), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(6943), @@ -414536,7 +414536,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(4093), [anon_sym_while] = ACTIONS(4093), [anon_sym_do] = ACTIONS(4093), - [anon_sym_null] = ACTIONS(4093), [anon_sym_if] = ACTIONS(4093), [anon_sym_when] = ACTIONS(4093), [anon_sym_try] = ACTIONS(4093), @@ -414589,6 +414588,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4093), [anon_sym_false] = ACTIONS(4093), [anon_sym_SQUOTE] = ACTIONS(4095), + [sym_null_literal] = ACTIONS(4093), [sym__backtick_identifier] = ACTIONS(4095), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4095), @@ -414623,7 +414623,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3230), [anon_sym_AMP_AMP] = ACTIONS(3230), [anon_sym_PIPE_PIPE] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3226), [anon_sym_if] = ACTIONS(3226), [anon_sym_else] = ACTIONS(3226), [anon_sym_when] = ACTIONS(3226), @@ -414669,6 +414668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3226), [anon_sym_false] = ACTIONS(3226), [anon_sym_SQUOTE] = ACTIONS(3230), + [sym_null_literal] = ACTIONS(3226), [sym__backtick_identifier] = ACTIONS(3230), [sym__automatic_semicolon] = ACTIONS(3230), [sym_safe_nav] = ACTIONS(3230), @@ -414787,7 +414787,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4276), [anon_sym_AMP_AMP] = ACTIONS(4276), [anon_sym_PIPE_PIPE] = ACTIONS(4276), - [anon_sym_null] = ACTIONS(4274), [anon_sym_if] = ACTIONS(4274), [anon_sym_else] = ACTIONS(4274), [anon_sym_when] = ACTIONS(4274), @@ -414833,6 +414832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4274), [anon_sym_false] = ACTIONS(4274), [anon_sym_SQUOTE] = ACTIONS(4276), + [sym_null_literal] = ACTIONS(4274), [sym__backtick_identifier] = ACTIONS(4276), [sym__automatic_semicolon] = ACTIONS(4276), [sym_safe_nav] = ACTIONS(4276), @@ -415115,7 +415115,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -415161,6 +415160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -415361,7 +415361,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -415407,6 +415406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -415525,7 +415525,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4262), [anon_sym_AMP_AMP] = ACTIONS(4262), [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_null] = ACTIONS(4260), [anon_sym_if] = ACTIONS(4260), [anon_sym_else] = ACTIONS(4260), [anon_sym_when] = ACTIONS(4260), @@ -415571,6 +415570,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4260), [anon_sym_false] = ACTIONS(4260), [anon_sym_SQUOTE] = ACTIONS(4262), + [sym_null_literal] = ACTIONS(4260), [sym__backtick_identifier] = ACTIONS(4262), [sym__automatic_semicolon] = ACTIONS(4262), [sym_safe_nav] = ACTIONS(4262), @@ -415853,7 +415853,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4232), [anon_sym_AMP_AMP] = ACTIONS(4232), [anon_sym_PIPE_PIPE] = ACTIONS(4232), - [anon_sym_null] = ACTIONS(4230), [anon_sym_if] = ACTIONS(4230), [anon_sym_else] = ACTIONS(4230), [anon_sym_when] = ACTIONS(4230), @@ -415899,6 +415898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4230), [anon_sym_false] = ACTIONS(4230), [anon_sym_SQUOTE] = ACTIONS(4232), + [sym_null_literal] = ACTIONS(4230), [sym__backtick_identifier] = ACTIONS(4232), [sym__automatic_semicolon] = ACTIONS(4232), [sym_safe_nav] = ACTIONS(4232), @@ -415935,7 +415935,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4204), [anon_sym_AMP_AMP] = ACTIONS(4204), [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_null] = ACTIONS(4202), [anon_sym_if] = ACTIONS(4202), [anon_sym_else] = ACTIONS(4202), [anon_sym_when] = ACTIONS(4202), @@ -415981,6 +415980,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4202), [anon_sym_false] = ACTIONS(4202), [anon_sym_SQUOTE] = ACTIONS(4204), + [sym_null_literal] = ACTIONS(4202), [sym__backtick_identifier] = ACTIONS(4204), [sym__automatic_semicolon] = ACTIONS(4204), [sym_safe_nav] = ACTIONS(4204), @@ -416099,7 +416099,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4079), [anon_sym_AMP_AMP] = ACTIONS(4079), [anon_sym_PIPE_PIPE] = ACTIONS(4079), - [anon_sym_null] = ACTIONS(4077), [anon_sym_if] = ACTIONS(4077), [anon_sym_else] = ACTIONS(4077), [anon_sym_when] = ACTIONS(4077), @@ -416145,6 +416144,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4077), [anon_sym_false] = ACTIONS(4077), [anon_sym_SQUOTE] = ACTIONS(4079), + [sym_null_literal] = ACTIONS(4077), [sym__backtick_identifier] = ACTIONS(4079), [sym__automatic_semicolon] = ACTIONS(4079), [sym_safe_nav] = ACTIONS(4079), @@ -416345,7 +416345,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4089), [anon_sym_AMP_AMP] = ACTIONS(4089), [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_null] = ACTIONS(4087), [anon_sym_if] = ACTIONS(4087), [anon_sym_else] = ACTIONS(4087), [anon_sym_when] = ACTIONS(4087), @@ -416391,6 +416390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4087), [anon_sym_false] = ACTIONS(4087), [anon_sym_SQUOTE] = ACTIONS(4089), + [sym_null_literal] = ACTIONS(4087), [sym__backtick_identifier] = ACTIONS(4089), [sym__automatic_semicolon] = ACTIONS(4089), [sym_safe_nav] = ACTIONS(4089), @@ -416427,7 +416427,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4089), [anon_sym_AMP_AMP] = ACTIONS(4089), [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_null] = ACTIONS(4087), [anon_sym_if] = ACTIONS(4087), [anon_sym_else] = ACTIONS(4087), [anon_sym_when] = ACTIONS(4087), @@ -416473,6 +416472,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4087), [anon_sym_false] = ACTIONS(4087), [anon_sym_SQUOTE] = ACTIONS(4089), + [sym_null_literal] = ACTIONS(4087), [sym__backtick_identifier] = ACTIONS(4089), [sym__automatic_semicolon] = ACTIONS(4089), [sym_safe_nav] = ACTIONS(4089), @@ -416509,7 +416509,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4204), [anon_sym_AMP_AMP] = ACTIONS(4204), [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_null] = ACTIONS(4202), [anon_sym_if] = ACTIONS(4202), [anon_sym_else] = ACTIONS(4202), [anon_sym_when] = ACTIONS(4202), @@ -416555,6 +416554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4202), [anon_sym_false] = ACTIONS(4202), [anon_sym_SQUOTE] = ACTIONS(4204), + [sym_null_literal] = ACTIONS(4202), [sym__backtick_identifier] = ACTIONS(4204), [sym__automatic_semicolon] = ACTIONS(4204), [sym_safe_nav] = ACTIONS(4204), @@ -416591,7 +416591,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4099), [anon_sym_AMP_AMP] = ACTIONS(4099), [anon_sym_PIPE_PIPE] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4097), [anon_sym_if] = ACTIONS(4097), [anon_sym_else] = ACTIONS(4097), [anon_sym_when] = ACTIONS(4097), @@ -416637,6 +416636,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4097), [anon_sym_false] = ACTIONS(4097), [anon_sym_SQUOTE] = ACTIONS(4099), + [sym_null_literal] = ACTIONS(4097), [sym__backtick_identifier] = ACTIONS(4099), [sym__automatic_semicolon] = ACTIONS(4099), [sym_safe_nav] = ACTIONS(4099), @@ -416827,7 +416827,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(3943), [sym_label] = ACTIONS(3938), [anon_sym_in] = ACTIONS(3938), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(3938), [anon_sym_when] = ACTIONS(3938), @@ -416884,6 +416883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(3943), [sym__automatic_semicolon] = ACTIONS(3943), [sym_multiline_comment] = ACTIONS(3), @@ -416919,7 +416919,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3240), [anon_sym_AMP_AMP] = ACTIONS(3240), [anon_sym_PIPE_PIPE] = ACTIONS(3240), - [anon_sym_null] = ACTIONS(3236), [anon_sym_if] = ACTIONS(3236), [anon_sym_else] = ACTIONS(3236), [anon_sym_when] = ACTIONS(3236), @@ -416965,6 +416964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3236), [anon_sym_false] = ACTIONS(3236), [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), [sym__backtick_identifier] = ACTIONS(3240), [sym__automatic_semicolon] = ACTIONS(3240), [sym_safe_nav] = ACTIONS(3240), @@ -417001,7 +417001,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4154), [anon_sym_AMP_AMP] = ACTIONS(4154), [anon_sym_PIPE_PIPE] = ACTIONS(4154), - [anon_sym_null] = ACTIONS(4152), [anon_sym_if] = ACTIONS(4152), [anon_sym_else] = ACTIONS(4152), [anon_sym_when] = ACTIONS(4152), @@ -417047,6 +417046,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4152), [anon_sym_false] = ACTIONS(4152), [anon_sym_SQUOTE] = ACTIONS(4154), + [sym_null_literal] = ACTIONS(4152), [sym__backtick_identifier] = ACTIONS(4154), [sym__automatic_semicolon] = ACTIONS(4154), [sym_safe_nav] = ACTIONS(4154), @@ -417073,7 +417073,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4648), [sym_label] = ACTIONS(4646), [anon_sym_in] = ACTIONS(4646), - [anon_sym_null] = ACTIONS(4646), [anon_sym_if] = ACTIONS(4646), [anon_sym_else] = ACTIONS(4646), [anon_sym_when] = ACTIONS(4646), @@ -417130,6 +417129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4646), [anon_sym_false] = ACTIONS(4646), [anon_sym_SQUOTE] = ACTIONS(4648), + [sym_null_literal] = ACTIONS(4646), [sym__backtick_identifier] = ACTIONS(4648), [sym__automatic_semicolon] = ACTIONS(4648), [sym_multiline_comment] = ACTIONS(3), @@ -417155,7 +417155,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4375), [sym_label] = ACTIONS(4373), [anon_sym_in] = ACTIONS(4373), - [anon_sym_null] = ACTIONS(4373), [anon_sym_if] = ACTIONS(4373), [anon_sym_else] = ACTIONS(4373), [anon_sym_when] = ACTIONS(4373), @@ -417212,6 +417211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4373), [anon_sym_false] = ACTIONS(4373), [anon_sym_SQUOTE] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4373), [sym__backtick_identifier] = ACTIONS(4375), [sym__automatic_semicolon] = ACTIONS(4375), [sym_multiline_comment] = ACTIONS(3), @@ -417406,7 +417406,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(4129), [anon_sym_while] = ACTIONS(4129), [anon_sym_do] = ACTIONS(4129), - [anon_sym_null] = ACTIONS(4129), [anon_sym_if] = ACTIONS(4129), [anon_sym_when] = ACTIONS(4129), [anon_sym_try] = ACTIONS(4129), @@ -417459,6 +417458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4129), [anon_sym_false] = ACTIONS(4129), [anon_sym_SQUOTE] = ACTIONS(4131), + [sym_null_literal] = ACTIONS(4129), [sym__backtick_identifier] = ACTIONS(4131), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4131), @@ -417493,7 +417493,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4099), [anon_sym_AMP_AMP] = ACTIONS(4099), [anon_sym_PIPE_PIPE] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4097), [anon_sym_if] = ACTIONS(4097), [anon_sym_else] = ACTIONS(4097), [anon_sym_when] = ACTIONS(4097), @@ -417539,6 +417538,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4097), [anon_sym_false] = ACTIONS(4097), [anon_sym_SQUOTE] = ACTIONS(4099), + [sym_null_literal] = ACTIONS(4097), [sym__backtick_identifier] = ACTIONS(4099), [sym__automatic_semicolon] = ACTIONS(4099), [sym_safe_nav] = ACTIONS(4099), @@ -417575,7 +417575,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4262), [anon_sym_AMP_AMP] = ACTIONS(4262), [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_null] = ACTIONS(4260), [anon_sym_if] = ACTIONS(4260), [anon_sym_else] = ACTIONS(4260), [anon_sym_when] = ACTIONS(4260), @@ -417621,6 +417620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4260), [anon_sym_false] = ACTIONS(4260), [anon_sym_SQUOTE] = ACTIONS(4262), + [sym_null_literal] = ACTIONS(4260), [sym__backtick_identifier] = ACTIONS(4262), [sym__automatic_semicolon] = ACTIONS(4262), [sym_safe_nav] = ACTIONS(4262), @@ -417657,7 +417657,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4144), [anon_sym_AMP_AMP] = ACTIONS(4144), [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4142), [anon_sym_if] = ACTIONS(4142), [anon_sym_else] = ACTIONS(4142), [anon_sym_when] = ACTIONS(4142), @@ -417703,6 +417702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4142), [anon_sym_false] = ACTIONS(4142), [anon_sym_SQUOTE] = ACTIONS(4144), + [sym_null_literal] = ACTIONS(4142), [sym__backtick_identifier] = ACTIONS(4144), [sym__automatic_semicolon] = ACTIONS(4144), [sym_safe_nav] = ACTIONS(4144), @@ -417734,7 +417734,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3938), [anon_sym_while] = ACTIONS(3938), [anon_sym_do] = ACTIONS(3938), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_when] = ACTIONS(3938), [anon_sym_try] = ACTIONS(3938), @@ -417787,6 +417786,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(3943), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3943), @@ -417821,7 +417821,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4144), [anon_sym_AMP_AMP] = ACTIONS(4144), [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4142), [anon_sym_if] = ACTIONS(4142), [anon_sym_else] = ACTIONS(4142), [anon_sym_when] = ACTIONS(4142), @@ -417867,6 +417866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4142), [anon_sym_false] = ACTIONS(4142), [anon_sym_SQUOTE] = ACTIONS(4144), + [sym_null_literal] = ACTIONS(4142), [sym__backtick_identifier] = ACTIONS(4144), [sym__automatic_semicolon] = ACTIONS(4144), [sym_safe_nav] = ACTIONS(4144), @@ -417903,7 +417903,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4445), [anon_sym_AMP_AMP] = ACTIONS(4445), [anon_sym_PIPE_PIPE] = ACTIONS(4445), - [anon_sym_null] = ACTIONS(4443), [anon_sym_if] = ACTIONS(4443), [anon_sym_else] = ACTIONS(4443), [anon_sym_when] = ACTIONS(4443), @@ -417949,6 +417948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4443), [anon_sym_false] = ACTIONS(4443), [anon_sym_SQUOTE] = ACTIONS(4445), + [sym_null_literal] = ACTIONS(4443), [sym__backtick_identifier] = ACTIONS(4445), [sym__automatic_semicolon] = ACTIONS(4445), [sym_safe_nav] = ACTIONS(4445), @@ -417985,7 +417985,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4232), [anon_sym_AMP_AMP] = ACTIONS(4232), [anon_sym_PIPE_PIPE] = ACTIONS(4232), - [anon_sym_null] = ACTIONS(4230), [anon_sym_if] = ACTIONS(4230), [anon_sym_else] = ACTIONS(4230), [anon_sym_when] = ACTIONS(4230), @@ -418031,6 +418030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4230), [anon_sym_false] = ACTIONS(4230), [anon_sym_SQUOTE] = ACTIONS(4232), + [sym_null_literal] = ACTIONS(4230), [sym__backtick_identifier] = ACTIONS(4232), [sym__automatic_semicolon] = ACTIONS(4232), [sym_safe_nav] = ACTIONS(4232), @@ -418709,7 +418709,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(4129), [anon_sym_while] = ACTIONS(4129), [anon_sym_do] = ACTIONS(4129), - [anon_sym_null] = ACTIONS(4129), [anon_sym_if] = ACTIONS(4129), [anon_sym_when] = ACTIONS(4129), [anon_sym_try] = ACTIONS(4129), @@ -418762,6 +418761,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4129), [anon_sym_false] = ACTIONS(4129), [anon_sym_SQUOTE] = ACTIONS(4131), + [sym_null_literal] = ACTIONS(4129), [sym__backtick_identifier] = ACTIONS(4131), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4131), @@ -420334,7 +420334,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4327), [anon_sym_AMP_AMP] = ACTIONS(4327), [anon_sym_PIPE_PIPE] = ACTIONS(4327), - [anon_sym_null] = ACTIONS(4325), [anon_sym_if] = ACTIONS(4325), [anon_sym_else] = ACTIONS(4325), [anon_sym_when] = ACTIONS(4325), @@ -420380,6 +420379,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4325), [anon_sym_false] = ACTIONS(4325), [anon_sym_SQUOTE] = ACTIONS(4327), + [sym_null_literal] = ACTIONS(4325), [sym__backtick_identifier] = ACTIONS(4327), [sym__automatic_semicolon] = ACTIONS(4327), [sym_safe_nav] = ACTIONS(4327), @@ -420658,7 +420658,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4355), [anon_sym_AMP_AMP] = ACTIONS(4355), [anon_sym_PIPE_PIPE] = ACTIONS(4355), - [anon_sym_null] = ACTIONS(4353), [anon_sym_if] = ACTIONS(4353), [anon_sym_else] = ACTIONS(4353), [anon_sym_when] = ACTIONS(4353), @@ -420704,6 +420703,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4353), [anon_sym_false] = ACTIONS(4353), [anon_sym_SQUOTE] = ACTIONS(4355), + [sym_null_literal] = ACTIONS(4353), [sym__backtick_identifier] = ACTIONS(4355), [sym__automatic_semicolon] = ACTIONS(4355), [sym_safe_nav] = ACTIONS(4355), @@ -420815,7 +420815,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(4234), [anon_sym_while] = ACTIONS(4234), [anon_sym_do] = ACTIONS(4234), - [anon_sym_null] = ACTIONS(4234), [anon_sym_if] = ACTIONS(4234), [anon_sym_when] = ACTIONS(4234), [anon_sym_try] = ACTIONS(4234), @@ -420868,6 +420867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4234), [anon_sym_false] = ACTIONS(4234), [anon_sym_SQUOTE] = ACTIONS(4236), + [sym_null_literal] = ACTIONS(4234), [sym__backtick_identifier] = ACTIONS(4236), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4236), @@ -422111,7 +422111,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(7031), [anon_sym_while] = ACTIONS(7031), [anon_sym_do] = ACTIONS(7031), - [anon_sym_null] = ACTIONS(7031), [anon_sym_if] = ACTIONS(7031), [anon_sym_when] = ACTIONS(7031), [anon_sym_try] = ACTIONS(7031), @@ -422164,6 +422163,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(7031), [anon_sym_false] = ACTIONS(7031), [anon_sym_SQUOTE] = ACTIONS(1361), + [sym_null_literal] = ACTIONS(7031), [sym__backtick_identifier] = ACTIONS(1361), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(1361), @@ -423078,7 +423078,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4323), [sym_label] = ACTIONS(4321), [anon_sym_in] = ACTIONS(4321), - [anon_sym_null] = ACTIONS(4321), [anon_sym_if] = ACTIONS(4321), [anon_sym_else] = ACTIONS(4321), [anon_sym_when] = ACTIONS(4321), @@ -423135,6 +423134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4321), [anon_sym_false] = ACTIONS(4321), [anon_sym_SQUOTE] = ACTIONS(4323), + [sym_null_literal] = ACTIONS(4321), [sym__backtick_identifier] = ACTIONS(4323), [sym__automatic_semicolon] = ACTIONS(4323), [sym_multiline_comment] = ACTIONS(3), @@ -424141,7 +424141,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4349), [anon_sym_AMP_AMP] = ACTIONS(4349), [anon_sym_PIPE_PIPE] = ACTIONS(4349), - [anon_sym_null] = ACTIONS(4347), [anon_sym_if] = ACTIONS(4347), [anon_sym_else] = ACTIONS(4347), [anon_sym_when] = ACTIONS(4347), @@ -424187,6 +424186,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4347), [anon_sym_false] = ACTIONS(4347), [anon_sym_SQUOTE] = ACTIONS(4349), + [sym_null_literal] = ACTIONS(4347), [sym__backtick_identifier] = ACTIONS(4349), [sym__automatic_semicolon] = ACTIONS(4349), [sym_safe_nav] = ACTIONS(4349), @@ -425108,7 +425108,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(7046), [anon_sym_while] = ACTIONS(7046), [anon_sym_do] = ACTIONS(7046), - [anon_sym_null] = ACTIONS(7046), [anon_sym_if] = ACTIONS(7046), [anon_sym_when] = ACTIONS(7046), [anon_sym_try] = ACTIONS(7046), @@ -425161,6 +425160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(7046), [anon_sym_false] = ACTIONS(7046), [anon_sym_SQUOTE] = ACTIONS(7048), + [sym_null_literal] = ACTIONS(7046), [sym__backtick_identifier] = ACTIONS(7048), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(7048), @@ -425194,7 +425194,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3230), [anon_sym_AMP_AMP] = ACTIONS(3230), [anon_sym_PIPE_PIPE] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3226), [anon_sym_if] = ACTIONS(3226), [anon_sym_else] = ACTIONS(3226), [anon_sym_when] = ACTIONS(3226), @@ -425240,6 +425239,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3226), [anon_sym_false] = ACTIONS(3226), [anon_sym_SQUOTE] = ACTIONS(3230), + [sym_null_literal] = ACTIONS(3226), [sym__backtick_identifier] = ACTIONS(3230), [sym__automatic_semicolon] = ACTIONS(3230), [sym_safe_nav] = ACTIONS(3230), @@ -425275,7 +425275,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4240), [anon_sym_AMP_AMP] = ACTIONS(4240), [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4238), [anon_sym_if] = ACTIONS(4238), [anon_sym_else] = ACTIONS(4238), [anon_sym_when] = ACTIONS(4238), @@ -425321,6 +425320,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4238), [anon_sym_false] = ACTIONS(4238), [anon_sym_SQUOTE] = ACTIONS(4240), + [sym_null_literal] = ACTIONS(4238), [sym__backtick_identifier] = ACTIONS(4240), [sym__automatic_semicolon] = ACTIONS(4240), [sym_safe_nav] = ACTIONS(4240), @@ -425356,7 +425356,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4198), [anon_sym_AMP_AMP] = ACTIONS(4198), [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), [anon_sym_if] = ACTIONS(4196), [anon_sym_else] = ACTIONS(4196), [anon_sym_when] = ACTIONS(4196), @@ -425402,6 +425401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4196), [anon_sym_false] = ACTIONS(4196), [anon_sym_SQUOTE] = ACTIONS(4198), + [sym_null_literal] = ACTIONS(4196), [sym__backtick_identifier] = ACTIONS(4198), [sym__automatic_semicolon] = ACTIONS(4198), [sym_safe_nav] = ACTIONS(4198), @@ -425518,7 +425518,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4252), [anon_sym_AMP_AMP] = ACTIONS(4252), [anon_sym_PIPE_PIPE] = ACTIONS(4252), - [anon_sym_null] = ACTIONS(4250), [anon_sym_if] = ACTIONS(4250), [anon_sym_else] = ACTIONS(4250), [anon_sym_when] = ACTIONS(4250), @@ -425564,6 +425563,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4250), [anon_sym_false] = ACTIONS(4250), [anon_sym_SQUOTE] = ACTIONS(4252), + [sym_null_literal] = ACTIONS(4250), [sym__backtick_identifier] = ACTIONS(4252), [sym__automatic_semicolon] = ACTIONS(4252), [sym_safe_nav] = ACTIONS(4252), @@ -425599,7 +425599,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4276), [anon_sym_AMP_AMP] = ACTIONS(4276), [anon_sym_PIPE_PIPE] = ACTIONS(4276), - [anon_sym_null] = ACTIONS(4274), [anon_sym_if] = ACTIONS(4274), [anon_sym_else] = ACTIONS(4274), [anon_sym_when] = ACTIONS(4274), @@ -425645,6 +425644,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4274), [anon_sym_false] = ACTIONS(4274), [anon_sym_SQUOTE] = ACTIONS(4276), + [sym_null_literal] = ACTIONS(4274), [sym__backtick_identifier] = ACTIONS(4276), [sym__automatic_semicolon] = ACTIONS(4276), [sym_safe_nav] = ACTIONS(4276), @@ -425761,7 +425761,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -425807,6 +425806,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -425923,7 +425923,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3222), [anon_sym_AMP_AMP] = ACTIONS(3222), [anon_sym_PIPE_PIPE] = ACTIONS(3222), - [anon_sym_null] = ACTIONS(3218), [anon_sym_if] = ACTIONS(3218), [anon_sym_else] = ACTIONS(3218), [anon_sym_when] = ACTIONS(3218), @@ -425969,6 +425968,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3218), [anon_sym_false] = ACTIONS(3218), [anon_sym_SQUOTE] = ACTIONS(3222), + [sym_null_literal] = ACTIONS(3218), [sym__backtick_identifier] = ACTIONS(3222), [sym__automatic_semicolon] = ACTIONS(3222), [sym_safe_nav] = ACTIONS(3222), @@ -426004,7 +426004,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4204), [anon_sym_AMP_AMP] = ACTIONS(4204), [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_null] = ACTIONS(4202), [anon_sym_if] = ACTIONS(4202), [anon_sym_else] = ACTIONS(4202), [anon_sym_when] = ACTIONS(4202), @@ -426050,6 +426049,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4202), [anon_sym_false] = ACTIONS(4202), [anon_sym_SQUOTE] = ACTIONS(4204), + [sym_null_literal] = ACTIONS(4202), [sym__backtick_identifier] = ACTIONS(4204), [sym__automatic_semicolon] = ACTIONS(4204), [sym_safe_nav] = ACTIONS(4204), @@ -426242,7 +426242,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(4244), [anon_sym_while] = ACTIONS(4244), [anon_sym_do] = ACTIONS(4244), - [anon_sym_null] = ACTIONS(4244), [anon_sym_if] = ACTIONS(4244), [anon_sym_when] = ACTIONS(4244), [anon_sym_try] = ACTIONS(4244), @@ -426295,6 +426294,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4244), [anon_sym_false] = ACTIONS(4244), [anon_sym_SQUOTE] = ACTIONS(4246), + [sym_null_literal] = ACTIONS(4244), [sym__backtick_identifier] = ACTIONS(4246), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4246), @@ -426328,7 +426328,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4204), [anon_sym_AMP_AMP] = ACTIONS(4204), [anon_sym_PIPE_PIPE] = ACTIONS(4204), - [anon_sym_null] = ACTIONS(4202), [anon_sym_if] = ACTIONS(4202), [anon_sym_else] = ACTIONS(4202), [anon_sym_when] = ACTIONS(4202), @@ -426374,6 +426373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4202), [anon_sym_false] = ACTIONS(4202), [anon_sym_SQUOTE] = ACTIONS(4204), + [sym_null_literal] = ACTIONS(4202), [sym__backtick_identifier] = ACTIONS(4204), [sym__automatic_semicolon] = ACTIONS(4204), [sym_safe_nav] = ACTIONS(4204), @@ -426571,7 +426571,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(3240), [anon_sym_AMP_AMP] = ACTIONS(3240), [anon_sym_PIPE_PIPE] = ACTIONS(3240), - [anon_sym_null] = ACTIONS(3236), [anon_sym_if] = ACTIONS(3236), [anon_sym_else] = ACTIONS(3236), [anon_sym_when] = ACTIONS(3236), @@ -426617,6 +426616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3236), [anon_sym_false] = ACTIONS(3236), [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_null_literal] = ACTIONS(3236), [sym__backtick_identifier] = ACTIONS(3240), [sym__automatic_semicolon] = ACTIONS(3240), [sym_safe_nav] = ACTIONS(3240), @@ -426647,7 +426647,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(4148), [anon_sym_while] = ACTIONS(4148), [anon_sym_do] = ACTIONS(4148), - [anon_sym_null] = ACTIONS(4148), [anon_sym_if] = ACTIONS(4148), [anon_sym_when] = ACTIONS(4148), [anon_sym_try] = ACTIONS(4148), @@ -426700,6 +426699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4148), [anon_sym_false] = ACTIONS(4148), [anon_sym_SQUOTE] = ACTIONS(4150), + [sym_null_literal] = ACTIONS(4148), [sym__backtick_identifier] = ACTIONS(4150), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4150), @@ -426733,7 +426733,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4154), [anon_sym_AMP_AMP] = ACTIONS(4154), [anon_sym_PIPE_PIPE] = ACTIONS(4154), - [anon_sym_null] = ACTIONS(4152), [anon_sym_if] = ACTIONS(4152), [anon_sym_else] = ACTIONS(4152), [anon_sym_when] = ACTIONS(4152), @@ -426779,6 +426778,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4152), [anon_sym_false] = ACTIONS(4152), [anon_sym_SQUOTE] = ACTIONS(4154), + [sym_null_literal] = ACTIONS(4152), [sym__backtick_identifier] = ACTIONS(4154), [sym__automatic_semicolon] = ACTIONS(4154), [sym_safe_nav] = ACTIONS(4154), @@ -427290,7 +427290,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(4384), [sym_label] = ACTIONS(4382), [anon_sym_in] = ACTIONS(4382), - [anon_sym_null] = ACTIONS(4382), [anon_sym_if] = ACTIONS(4382), [anon_sym_else] = ACTIONS(4382), [anon_sym_when] = ACTIONS(4382), @@ -427347,6 +427346,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4382), [anon_sym_false] = ACTIONS(4382), [anon_sym_SQUOTE] = ACTIONS(4384), + [sym_null_literal] = ACTIONS(4382), [sym__backtick_identifier] = ACTIONS(4384), [sym__automatic_semicolon] = ACTIONS(4384), [sym_multiline_comment] = ACTIONS(3), @@ -427622,7 +427622,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4613), [anon_sym_AMP_AMP] = ACTIONS(4613), [anon_sym_PIPE_PIPE] = ACTIONS(4613), - [anon_sym_null] = ACTIONS(4611), [anon_sym_if] = ACTIONS(4611), [anon_sym_else] = ACTIONS(4611), [anon_sym_when] = ACTIONS(4611), @@ -427668,6 +427667,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4611), [anon_sym_false] = ACTIONS(4611), [anon_sym_SQUOTE] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4611), [sym__backtick_identifier] = ACTIONS(4613), [sym__automatic_semicolon] = ACTIONS(4613), [sym_safe_nav] = ACTIONS(4613), @@ -428657,7 +428657,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(4868), [anon_sym_while] = ACTIONS(4868), [anon_sym_do] = ACTIONS(4868), - [anon_sym_null] = ACTIONS(4868), [anon_sym_if] = ACTIONS(4868), [anon_sym_when] = ACTIONS(4868), [anon_sym_try] = ACTIONS(4868), @@ -428710,6 +428709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4868), [anon_sym_false] = ACTIONS(4868), [anon_sym_SQUOTE] = ACTIONS(4870), + [sym_null_literal] = ACTIONS(4868), [sym__backtick_identifier] = ACTIONS(4870), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4870), @@ -429937,7 +429937,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(4872), [anon_sym_while] = ACTIONS(4872), [anon_sym_do] = ACTIONS(4872), - [anon_sym_null] = ACTIONS(4872), [anon_sym_if] = ACTIONS(4872), [anon_sym_when] = ACTIONS(4872), [anon_sym_try] = ACTIONS(4872), @@ -429990,6 +429989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4872), [anon_sym_false] = ACTIONS(4872), [anon_sym_SQUOTE] = ACTIONS(4874), + [sym_null_literal] = ACTIONS(4872), [sym__backtick_identifier] = ACTIONS(4874), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4874), @@ -432342,7 +432342,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4515), [anon_sym_AMP_AMP] = ACTIONS(4515), [anon_sym_PIPE_PIPE] = ACTIONS(4515), - [anon_sym_null] = ACTIONS(4513), [anon_sym_if] = ACTIONS(4513), [anon_sym_else] = ACTIONS(4513), [anon_sym_when] = ACTIONS(4513), @@ -432388,6 +432387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4513), [anon_sym_false] = ACTIONS(4513), [anon_sym_SQUOTE] = ACTIONS(4515), + [sym_null_literal] = ACTIONS(4513), [sym__backtick_identifier] = ACTIONS(4515), [sym__automatic_semicolon] = ACTIONS(4515), [sym_safe_nav] = ACTIONS(4515), @@ -434822,7 +434822,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4515), [anon_sym_AMP_AMP] = ACTIONS(4515), [anon_sym_PIPE_PIPE] = ACTIONS(4515), - [anon_sym_null] = ACTIONS(4513), [anon_sym_if] = ACTIONS(4513), [anon_sym_else] = ACTIONS(4513), [anon_sym_when] = ACTIONS(4513), @@ -434868,6 +434867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4513), [anon_sym_false] = ACTIONS(4513), [anon_sym_SQUOTE] = ACTIONS(4515), + [sym_null_literal] = ACTIONS(4513), [sym__backtick_identifier] = ACTIONS(4515), [sym__automatic_semicolon] = ACTIONS(4515), [sym_safe_nav] = ACTIONS(4515), @@ -434982,7 +434982,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4589), [anon_sym_AMP_AMP] = ACTIONS(4589), [anon_sym_PIPE_PIPE] = ACTIONS(4589), - [anon_sym_null] = ACTIONS(4587), [anon_sym_if] = ACTIONS(4587), [anon_sym_else] = ACTIONS(4587), [anon_sym_when] = ACTIONS(4587), @@ -435028,6 +435027,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4587), [anon_sym_false] = ACTIONS(4587), [anon_sym_SQUOTE] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4587), [sym__backtick_identifier] = ACTIONS(4589), [sym__automatic_semicolon] = ACTIONS(4589), [sym_safe_nav] = ACTIONS(4589), @@ -435137,7 +435137,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(4880), [anon_sym_while] = ACTIONS(4880), [anon_sym_do] = ACTIONS(4880), - [anon_sym_null] = ACTIONS(4880), [anon_sym_if] = ACTIONS(4880), [anon_sym_when] = ACTIONS(4880), [anon_sym_try] = ACTIONS(4880), @@ -435190,6 +435189,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4880), [anon_sym_false] = ACTIONS(4880), [anon_sym_SQUOTE] = ACTIONS(4882), + [sym_null_literal] = ACTIONS(4880), [sym__backtick_identifier] = ACTIONS(4882), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4882), @@ -435297,7 +435297,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(7091), [anon_sym_while] = ACTIONS(7091), [anon_sym_do] = ACTIONS(7091), - [anon_sym_null] = ACTIONS(7091), [anon_sym_if] = ACTIONS(7091), [anon_sym_when] = ACTIONS(7091), [anon_sym_try] = ACTIONS(7091), @@ -435350,6 +435349,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(7091), [anon_sym_false] = ACTIONS(7091), [anon_sym_SQUOTE] = ACTIONS(7093), + [sym_null_literal] = ACTIONS(7091), [sym__backtick_identifier] = ACTIONS(7093), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(7093), @@ -436977,7 +436977,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(7103), [anon_sym_while] = ACTIONS(7103), [anon_sym_do] = ACTIONS(7103), - [anon_sym_null] = ACTIONS(7103), [anon_sym_if] = ACTIONS(7103), [anon_sym_when] = ACTIONS(7103), [anon_sym_try] = ACTIONS(7103), @@ -437030,6 +437029,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(7103), [anon_sym_false] = ACTIONS(7103), [anon_sym_SQUOTE] = ACTIONS(7105), + [sym_null_literal] = ACTIONS(7103), [sym__backtick_identifier] = ACTIONS(7105), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(7105), @@ -437782,7 +437782,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4198), [anon_sym_AMP_AMP] = ACTIONS(4198), [anon_sym_PIPE_PIPE] = ACTIONS(4198), - [anon_sym_null] = ACTIONS(4196), [anon_sym_if] = ACTIONS(4196), [anon_sym_else] = ACTIONS(4196), [anon_sym_when] = ACTIONS(4196), @@ -437828,6 +437827,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4196), [anon_sym_false] = ACTIONS(4196), [anon_sym_SQUOTE] = ACTIONS(4198), + [sym_null_literal] = ACTIONS(4196), [sym__backtick_identifier] = ACTIONS(4198), [sym__automatic_semicolon] = ACTIONS(4198), [sym_safe_nav] = ACTIONS(4198), @@ -438337,7 +438337,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(7109), [anon_sym_while] = ACTIONS(7109), [anon_sym_do] = ACTIONS(7109), - [anon_sym_null] = ACTIONS(7109), [anon_sym_if] = ACTIONS(7109), [anon_sym_when] = ACTIONS(7109), [anon_sym_try] = ACTIONS(7109), @@ -438390,6 +438389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(7109), [anon_sym_false] = ACTIONS(7109), [anon_sym_SQUOTE] = ACTIONS(7111), + [sym_null_literal] = ACTIONS(7109), [sym__backtick_identifier] = ACTIONS(7111), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(7111), @@ -438422,7 +438422,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4445), [anon_sym_AMP_AMP] = ACTIONS(4445), [anon_sym_PIPE_PIPE] = ACTIONS(4445), - [anon_sym_null] = ACTIONS(4443), [anon_sym_if] = ACTIONS(4443), [anon_sym_else] = ACTIONS(4443), [anon_sym_when] = ACTIONS(4443), @@ -438468,6 +438467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4443), [anon_sym_false] = ACTIONS(4443), [anon_sym_SQUOTE] = ACTIONS(4445), + [sym_null_literal] = ACTIONS(4443), [sym__backtick_identifier] = ACTIONS(4445), [sym__automatic_semicolon] = ACTIONS(4445), [sym_safe_nav] = ACTIONS(4445), @@ -438502,7 +438502,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4262), [anon_sym_AMP_AMP] = ACTIONS(4262), [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_null] = ACTIONS(4260), [anon_sym_if] = ACTIONS(4260), [anon_sym_else] = ACTIONS(4260), [anon_sym_when] = ACTIONS(4260), @@ -438548,6 +438547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4260), [anon_sym_false] = ACTIONS(4260), [anon_sym_SQUOTE] = ACTIONS(4262), + [sym_null_literal] = ACTIONS(4260), [sym__backtick_identifier] = ACTIONS(4262), [sym__automatic_semicolon] = ACTIONS(4262), [sym_safe_nav] = ACTIONS(4262), @@ -438662,7 +438662,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4232), [anon_sym_AMP_AMP] = ACTIONS(4232), [anon_sym_PIPE_PIPE] = ACTIONS(4232), - [anon_sym_null] = ACTIONS(4230), [anon_sym_if] = ACTIONS(4230), [anon_sym_else] = ACTIONS(4230), [anon_sym_when] = ACTIONS(4230), @@ -438708,6 +438707,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4230), [anon_sym_false] = ACTIONS(4230), [anon_sym_SQUOTE] = ACTIONS(4232), + [sym_null_literal] = ACTIONS(4230), [sym__backtick_identifier] = ACTIONS(4232), [sym__automatic_semicolon] = ACTIONS(4232), [sym_safe_nav] = ACTIONS(4232), @@ -439382,7 +439382,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4453), [anon_sym_AMP_AMP] = ACTIONS(4453), [anon_sym_PIPE_PIPE] = ACTIONS(4453), - [anon_sym_null] = ACTIONS(4451), [anon_sym_if] = ACTIONS(4451), [anon_sym_else] = ACTIONS(4451), [anon_sym_when] = ACTIONS(4451), @@ -439428,6 +439427,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4451), [anon_sym_false] = ACTIONS(4451), [anon_sym_SQUOTE] = ACTIONS(4453), + [sym_null_literal] = ACTIONS(4451), [sym__backtick_identifier] = ACTIONS(4453), [sym__automatic_semicolon] = ACTIONS(4453), [sym_safe_nav] = ACTIONS(4453), @@ -439942,7 +439942,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4418), [anon_sym_AMP_AMP] = ACTIONS(4418), [anon_sym_PIPE_PIPE] = ACTIONS(4418), - [anon_sym_null] = ACTIONS(4416), [anon_sym_if] = ACTIONS(4416), [anon_sym_else] = ACTIONS(4416), [anon_sym_when] = ACTIONS(4416), @@ -439988,6 +439987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4416), [anon_sym_false] = ACTIONS(4416), [anon_sym_SQUOTE] = ACTIONS(4418), + [sym_null_literal] = ACTIONS(4416), [sym__backtick_identifier] = ACTIONS(4418), [sym__automatic_semicolon] = ACTIONS(4418), [sym_safe_nav] = ACTIONS(4418), @@ -441462,7 +441462,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4144), [anon_sym_AMP_AMP] = ACTIONS(4144), [anon_sym_PIPE_PIPE] = ACTIONS(4144), - [anon_sym_null] = ACTIONS(4142), [anon_sym_if] = ACTIONS(4142), [anon_sym_else] = ACTIONS(4142), [anon_sym_when] = ACTIONS(4142), @@ -441508,6 +441507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4142), [anon_sym_false] = ACTIONS(4142), [anon_sym_SQUOTE] = ACTIONS(4144), + [sym_null_literal] = ACTIONS(4142), [sym__backtick_identifier] = ACTIONS(4144), [sym__automatic_semicolon] = ACTIONS(4144), [sym_safe_nav] = ACTIONS(4144), @@ -441542,7 +441542,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4349), [anon_sym_AMP_AMP] = ACTIONS(4349), [anon_sym_PIPE_PIPE] = ACTIONS(4349), - [anon_sym_null] = ACTIONS(4347), [anon_sym_if] = ACTIONS(4347), [anon_sym_else] = ACTIONS(4347), [anon_sym_when] = ACTIONS(4347), @@ -441588,6 +441587,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4347), [anon_sym_false] = ACTIONS(4347), [anon_sym_SQUOTE] = ACTIONS(4349), + [sym_null_literal] = ACTIONS(4347), [sym__backtick_identifier] = ACTIONS(4349), [sym__automatic_semicolon] = ACTIONS(4349), [sym_safe_nav] = ACTIONS(4349), @@ -441777,7 +441777,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(7133), [anon_sym_while] = ACTIONS(7133), [anon_sym_do] = ACTIONS(7133), - [anon_sym_null] = ACTIONS(7133), [anon_sym_if] = ACTIONS(7133), [anon_sym_when] = ACTIONS(7133), [anon_sym_try] = ACTIONS(7133), @@ -441830,6 +441829,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(7133), [anon_sym_false] = ACTIONS(7133), [anon_sym_SQUOTE] = ACTIONS(7135), + [sym_null_literal] = ACTIONS(7133), [sym__backtick_identifier] = ACTIONS(7135), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(7135), @@ -442502,7 +442502,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4099), [anon_sym_AMP_AMP] = ACTIONS(4099), [anon_sym_PIPE_PIPE] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4097), [anon_sym_if] = ACTIONS(4097), [anon_sym_else] = ACTIONS(4097), [anon_sym_when] = ACTIONS(4097), @@ -442548,6 +442547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4097), [anon_sym_false] = ACTIONS(4097), [anon_sym_SQUOTE] = ACTIONS(4099), + [sym_null_literal] = ACTIONS(4097), [sym__backtick_identifier] = ACTIONS(4099), [sym__automatic_semicolon] = ACTIONS(4099), [sym_safe_nav] = ACTIONS(4099), @@ -442662,7 +442662,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4089), [anon_sym_AMP_AMP] = ACTIONS(4089), [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_null] = ACTIONS(4087), [anon_sym_if] = ACTIONS(4087), [anon_sym_else] = ACTIONS(4087), [anon_sym_when] = ACTIONS(4087), @@ -442708,6 +442707,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4087), [anon_sym_false] = ACTIONS(4087), [anon_sym_SQUOTE] = ACTIONS(4089), + [sym_null_literal] = ACTIONS(4087), [sym__backtick_identifier] = ACTIONS(4089), [sym__automatic_semicolon] = ACTIONS(4089), [sym_safe_nav] = ACTIONS(4089), @@ -443782,7 +443782,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4079), [anon_sym_AMP_AMP] = ACTIONS(4079), [anon_sym_PIPE_PIPE] = ACTIONS(4079), - [anon_sym_null] = ACTIONS(4077), [anon_sym_if] = ACTIONS(4077), [anon_sym_else] = ACTIONS(4077), [anon_sym_when] = ACTIONS(4077), @@ -443828,6 +443827,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4077), [anon_sym_false] = ACTIONS(4077), [anon_sym_SQUOTE] = ACTIONS(4079), + [sym_null_literal] = ACTIONS(4077), [sym__backtick_identifier] = ACTIONS(4079), [sym__automatic_semicolon] = ACTIONS(4079), [sym_safe_nav] = ACTIONS(4079), @@ -444337,7 +444337,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(7145), [anon_sym_while] = ACTIONS(7145), [anon_sym_do] = ACTIONS(7145), - [anon_sym_null] = ACTIONS(7145), [anon_sym_if] = ACTIONS(7145), [anon_sym_when] = ACTIONS(7145), [anon_sym_try] = ACTIONS(7145), @@ -444390,6 +444389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(7145), [anon_sym_false] = ACTIONS(7145), [anon_sym_SQUOTE] = ACTIONS(7147), + [sym_null_literal] = ACTIONS(7145), [sym__backtick_identifier] = ACTIONS(7147), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(7147), @@ -444497,7 +444497,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(4876), [anon_sym_while] = ACTIONS(4876), [anon_sym_do] = ACTIONS(4876), - [anon_sym_null] = ACTIONS(4876), [anon_sym_if] = ACTIONS(4876), [anon_sym_when] = ACTIONS(4876), [anon_sym_try] = ACTIONS(4876), @@ -444550,6 +444549,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4876), [anon_sym_false] = ACTIONS(4876), [anon_sym_SQUOTE] = ACTIONS(4878), + [sym_null_literal] = ACTIONS(4876), [sym__backtick_identifier] = ACTIONS(4878), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4878), @@ -444657,7 +444657,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(4864), [anon_sym_while] = ACTIONS(4864), [anon_sym_do] = ACTIONS(4864), - [anon_sym_null] = ACTIONS(4864), [anon_sym_if] = ACTIONS(4864), [anon_sym_when] = ACTIONS(4864), [anon_sym_try] = ACTIONS(4864), @@ -444710,6 +444709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4864), [anon_sym_false] = ACTIONS(4864), [anon_sym_SQUOTE] = ACTIONS(4866), + [sym_null_literal] = ACTIONS(4864), [sym__backtick_identifier] = ACTIONS(4866), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4866), @@ -444901,7 +444901,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4858), [anon_sym_AMP_AMP] = ACTIONS(4858), [anon_sym_PIPE_PIPE] = ACTIONS(4858), - [anon_sym_null] = ACTIONS(4856), [anon_sym_if] = ACTIONS(4856), [anon_sym_else] = ACTIONS(7149), [anon_sym_when] = ACTIONS(4856), @@ -444947,6 +444946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4856), [anon_sym_false] = ACTIONS(4856), [anon_sym_SQUOTE] = ACTIONS(4858), + [sym_null_literal] = ACTIONS(4856), [sym__backtick_identifier] = ACTIONS(4858), [sym__automatic_semicolon] = ACTIONS(4858), [sym_safe_nav] = ACTIONS(4858), @@ -445138,7 +445138,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4355), [anon_sym_AMP_AMP] = ACTIONS(4355), [anon_sym_PIPE_PIPE] = ACTIONS(4355), - [anon_sym_null] = ACTIONS(4353), [anon_sym_if] = ACTIONS(4353), [anon_sym_else] = ACTIONS(4353), [anon_sym_when] = ACTIONS(4353), @@ -445184,6 +445183,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4353), [anon_sym_false] = ACTIONS(4353), [anon_sym_SQUOTE] = ACTIONS(4355), + [sym_null_literal] = ACTIONS(4353), [sym__backtick_identifier] = ACTIONS(4355), [sym__automatic_semicolon] = ACTIONS(4355), [sym_safe_nav] = ACTIONS(4355), @@ -445217,7 +445217,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4188), [anon_sym_AMP_AMP] = ACTIONS(4188), [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_null] = ACTIONS(4182), [anon_sym_if] = ACTIONS(4182), [anon_sym_else] = ACTIONS(4190), [anon_sym_when] = ACTIONS(4182), @@ -445263,6 +445262,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4182), [anon_sym_false] = ACTIONS(4182), [anon_sym_SQUOTE] = ACTIONS(4185), + [sym_null_literal] = ACTIONS(4182), [sym__backtick_identifier] = ACTIONS(4185), [sym__automatic_semicolon] = ACTIONS(4188), [sym_safe_nav] = ACTIONS(4188), @@ -445296,7 +445296,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4220), [anon_sym_AMP_AMP] = ACTIONS(4220), [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(4214), [anon_sym_if] = ACTIONS(4214), [anon_sym_else] = ACTIONS(4222), [anon_sym_when] = ACTIONS(4214), @@ -445342,6 +445341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4214), [anon_sym_false] = ACTIONS(4214), [anon_sym_SQUOTE] = ACTIONS(4217), + [sym_null_literal] = ACTIONS(4214), [sym__backtick_identifier] = ACTIONS(4217), [sym__automatic_semicolon] = ACTIONS(4220), [sym_safe_nav] = ACTIONS(4220), @@ -445533,7 +445533,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4852), [anon_sym_AMP_AMP] = ACTIONS(4852), [anon_sym_PIPE_PIPE] = ACTIONS(4852), - [anon_sym_null] = ACTIONS(4850), [anon_sym_if] = ACTIONS(4850), [anon_sym_else] = ACTIONS(4850), [anon_sym_when] = ACTIONS(4850), @@ -445579,6 +445578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4850), [anon_sym_false] = ACTIONS(4850), [anon_sym_SQUOTE] = ACTIONS(4852), + [sym_null_literal] = ACTIONS(4850), [sym__backtick_identifier] = ACTIONS(4852), [sym__automatic_semicolon] = ACTIONS(4852), [sym_safe_nav] = ACTIONS(4852), @@ -445612,7 +445612,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4842), [anon_sym_AMP_AMP] = ACTIONS(4842), [anon_sym_PIPE_PIPE] = ACTIONS(4842), - [anon_sym_null] = ACTIONS(4840), [anon_sym_if] = ACTIONS(4840), [anon_sym_else] = ACTIONS(4840), [anon_sym_when] = ACTIONS(4840), @@ -445658,6 +445657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4840), [anon_sym_false] = ACTIONS(4840), [anon_sym_SQUOTE] = ACTIONS(4842), + [sym_null_literal] = ACTIONS(4840), [sym__backtick_identifier] = ACTIONS(4842), [sym__automatic_semicolon] = ACTIONS(4842), [sym_safe_nav] = ACTIONS(4842), @@ -445928,7 +445928,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4188), [anon_sym_AMP_AMP] = ACTIONS(4188), [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_null] = ACTIONS(4190), [anon_sym_if] = ACTIONS(4190), [anon_sym_else] = ACTIONS(4190), [anon_sym_when] = ACTIONS(4190), @@ -445974,6 +445973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4190), [anon_sym_false] = ACTIONS(4190), [anon_sym_SQUOTE] = ACTIONS(4188), + [sym_null_literal] = ACTIONS(4190), [sym__backtick_identifier] = ACTIONS(4188), [sym__automatic_semicolon] = ACTIONS(4188), [sym_safe_nav] = ACTIONS(4188), @@ -446007,7 +446007,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4220), [anon_sym_AMP_AMP] = ACTIONS(4220), [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(4222), [anon_sym_if] = ACTIONS(4222), [anon_sym_else] = ACTIONS(4222), [anon_sym_when] = ACTIONS(4222), @@ -446053,6 +446052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4222), [anon_sym_false] = ACTIONS(4222), [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_null_literal] = ACTIONS(4222), [sym__backtick_identifier] = ACTIONS(4220), [sym__automatic_semicolon] = ACTIONS(4220), [sym_safe_nav] = ACTIONS(4220), @@ -446244,7 +446244,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4327), [anon_sym_AMP_AMP] = ACTIONS(4327), [anon_sym_PIPE_PIPE] = ACTIONS(4327), - [anon_sym_null] = ACTIONS(4325), [anon_sym_if] = ACTIONS(4325), [anon_sym_else] = ACTIONS(4325), [anon_sym_when] = ACTIONS(4325), @@ -446290,6 +446289,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4325), [anon_sym_false] = ACTIONS(4325), [anon_sym_SQUOTE] = ACTIONS(4327), + [sym_null_literal] = ACTIONS(4325), [sym__backtick_identifier] = ACTIONS(4327), [sym__automatic_semicolon] = ACTIONS(4327), [sym_safe_nav] = ACTIONS(4327), @@ -447034,7 +447034,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4188), [anon_sym_AMP_AMP] = ACTIONS(4188), [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(4190), [anon_sym_when] = ACTIONS(3938), @@ -447080,6 +447079,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(4185), [sym__automatic_semicolon] = ACTIONS(4188), [sym_safe_nav] = ACTIONS(4188), @@ -447192,7 +447192,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4220), [anon_sym_AMP_AMP] = ACTIONS(4220), [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(4222), [anon_sym_when] = ACTIONS(3938), @@ -447238,6 +447237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(4217), [sym__automatic_semicolon] = ACTIONS(4220), [sym_safe_nav] = ACTIONS(4220), @@ -448298,7 +448298,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4858), [anon_sym_AMP_AMP] = ACTIONS(4858), [anon_sym_PIPE_PIPE] = ACTIONS(4858), - [anon_sym_null] = ACTIONS(4856), [anon_sym_if] = ACTIONS(4856), [anon_sym_else] = ACTIONS(7149), [anon_sym_when] = ACTIONS(4856), @@ -448344,6 +448343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4856), [anon_sym_false] = ACTIONS(4856), [anon_sym_SQUOTE] = ACTIONS(4858), + [sym_null_literal] = ACTIONS(4856), [sym__backtick_identifier] = ACTIONS(4858), [sym__automatic_semicolon] = ACTIONS(4858), [sym_safe_nav] = ACTIONS(4858), @@ -449789,7 +449789,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4220), [anon_sym_AMP_AMP] = ACTIONS(4220), [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(4222), [anon_sym_when] = ACTIONS(3938), @@ -449835,6 +449834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(4217), [sym_safe_nav] = ACTIONS(4220), [sym_multiline_comment] = ACTIONS(3), @@ -450881,7 +450881,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4188), [anon_sym_AMP_AMP] = ACTIONS(4188), [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(4190), [anon_sym_when] = ACTIONS(3938), @@ -450927,6 +450926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(4185), [sym_safe_nav] = ACTIONS(4188), [sym_multiline_comment] = ACTIONS(3), @@ -452985,7 +452985,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4188), [anon_sym_AMP_AMP] = ACTIONS(4188), [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_null] = ACTIONS(4182), [anon_sym_if] = ACTIONS(4182), [anon_sym_else] = ACTIONS(4190), [anon_sym_when] = ACTIONS(4182), @@ -453031,6 +453030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4182), [anon_sym_false] = ACTIONS(4182), [anon_sym_SQUOTE] = ACTIONS(4185), + [sym_null_literal] = ACTIONS(4182), [sym__backtick_identifier] = ACTIONS(4185), [sym__automatic_semicolon] = ACTIONS(4188), [sym_safe_nav] = ACTIONS(4188), @@ -453524,7 +453524,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4188), [anon_sym_AMP_AMP] = ACTIONS(4188), [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(4190), [anon_sym_when] = ACTIONS(3938), @@ -453570,6 +453569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(4185), [sym__automatic_semicolon] = ACTIONS(4188), [sym_safe_nav] = ACTIONS(4188), @@ -453832,7 +453832,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4188), [anon_sym_AMP_AMP] = ACTIONS(4188), [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_null] = ACTIONS(4190), [anon_sym_if] = ACTIONS(4190), [anon_sym_else] = ACTIONS(4190), [anon_sym_when] = ACTIONS(4190), @@ -453878,6 +453877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4190), [anon_sym_false] = ACTIONS(4190), [anon_sym_SQUOTE] = ACTIONS(4188), + [sym_null_literal] = ACTIONS(4190), [sym__backtick_identifier] = ACTIONS(4188), [sym__automatic_semicolon] = ACTIONS(4188), [sym_safe_nav] = ACTIONS(4188), @@ -453909,7 +453909,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4220), [anon_sym_AMP_AMP] = ACTIONS(4220), [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(4222), [anon_sym_if] = ACTIONS(4222), [anon_sym_else] = ACTIONS(4222), [anon_sym_when] = ACTIONS(4222), @@ -453955,6 +453954,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4222), [anon_sym_false] = ACTIONS(4222), [anon_sym_SQUOTE] = ACTIONS(4220), + [sym_null_literal] = ACTIONS(4222), [sym__backtick_identifier] = ACTIONS(4220), [sym__automatic_semicolon] = ACTIONS(4220), [sym_safe_nav] = ACTIONS(4220), @@ -454217,7 +454217,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4220), [anon_sym_AMP_AMP] = ACTIONS(4220), [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(4214), [anon_sym_if] = ACTIONS(4214), [anon_sym_else] = ACTIONS(4222), [anon_sym_when] = ACTIONS(4214), @@ -454263,6 +454262,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4214), [anon_sym_false] = ACTIONS(4214), [anon_sym_SQUOTE] = ACTIONS(4217), + [sym_null_literal] = ACTIONS(4214), [sym__backtick_identifier] = ACTIONS(4217), [sym__automatic_semicolon] = ACTIONS(4220), [sym_safe_nav] = ACTIONS(4220), @@ -454371,7 +454371,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4842), [anon_sym_AMP_AMP] = ACTIONS(4842), [anon_sym_PIPE_PIPE] = ACTIONS(4842), - [anon_sym_null] = ACTIONS(4840), [anon_sym_if] = ACTIONS(4840), [anon_sym_else] = ACTIONS(4840), [anon_sym_when] = ACTIONS(4840), @@ -454417,6 +454416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4840), [anon_sym_false] = ACTIONS(4840), [anon_sym_SQUOTE] = ACTIONS(4842), + [sym_null_literal] = ACTIONS(4840), [sym__backtick_identifier] = ACTIONS(4842), [sym__automatic_semicolon] = ACTIONS(4842), [sym_safe_nav] = ACTIONS(4842), @@ -454448,7 +454448,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4852), [anon_sym_AMP_AMP] = ACTIONS(4852), [anon_sym_PIPE_PIPE] = ACTIONS(4852), - [anon_sym_null] = ACTIONS(4850), [anon_sym_if] = ACTIONS(4850), [anon_sym_else] = ACTIONS(4850), [anon_sym_when] = ACTIONS(4850), @@ -454494,6 +454493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4850), [anon_sym_false] = ACTIONS(4850), [anon_sym_SQUOTE] = ACTIONS(4852), + [sym_null_literal] = ACTIONS(4850), [sym__backtick_identifier] = ACTIONS(4852), [sym__automatic_semicolon] = ACTIONS(4852), [sym_safe_nav] = ACTIONS(4852), @@ -455680,7 +455680,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4858), [anon_sym_AMP_AMP] = ACTIONS(4858), [anon_sym_PIPE_PIPE] = ACTIONS(4858), - [anon_sym_null] = ACTIONS(4856), [anon_sym_if] = ACTIONS(4856), [anon_sym_else] = ACTIONS(7352), [anon_sym_when] = ACTIONS(4856), @@ -455726,6 +455725,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4856), [anon_sym_false] = ACTIONS(4856), [anon_sym_SQUOTE] = ACTIONS(4858), + [sym_null_literal] = ACTIONS(4856), [sym__backtick_identifier] = ACTIONS(4858), [sym__automatic_semicolon] = ACTIONS(4858), [sym_safe_nav] = ACTIONS(4858), @@ -455911,7 +455911,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4858), [anon_sym_AMP_AMP] = ACTIONS(4858), [anon_sym_PIPE_PIPE] = ACTIONS(4858), - [anon_sym_null] = ACTIONS(4856), [anon_sym_if] = ACTIONS(4856), [anon_sym_else] = ACTIONS(7352), [anon_sym_when] = ACTIONS(4856), @@ -455957,6 +455956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(4856), [anon_sym_false] = ACTIONS(4856), [anon_sym_SQUOTE] = ACTIONS(4858), + [sym_null_literal] = ACTIONS(4856), [sym__backtick_identifier] = ACTIONS(4858), [sym__automatic_semicolon] = ACTIONS(4858), [sym_safe_nav] = ACTIONS(4858), @@ -456310,7 +456310,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(7372), [sym_label] = ACTIONS(7365), [anon_sym_in] = ACTIONS(7375), - [anon_sym_null] = ACTIONS(7365), [anon_sym_if] = ACTIONS(7365), [anon_sym_when] = ACTIONS(7365), [anon_sym_try] = ACTIONS(7365), @@ -456344,6 +456343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(7365), [anon_sym_false] = ACTIONS(7365), [anon_sym_SQUOTE] = ACTIONS(7360), + [sym_null_literal] = ACTIONS(7365), [sym__backtick_identifier] = ACTIONS(7379), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(7360), @@ -456758,7 +456758,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_COLON] = ACTIONS(4220), [anon_sym_AMP_AMP] = ACTIONS(4220), [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_else] = ACTIONS(4222), [anon_sym_when] = ACTIONS(3938), @@ -456804,6 +456803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(4217), [sym__automatic_semicolon] = ACTIONS(4220), [sym_safe_nav] = ACTIONS(4220), @@ -470571,7 +470571,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(3938), [anon_sym_STAR] = ACTIONS(3943), [sym_label] = ACTIONS(3938), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_when] = ACTIONS(3938), [anon_sym_try] = ACTIONS(3938), @@ -470624,6 +470623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(3943), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3943), @@ -470642,7 +470642,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_super] = ACTIONS(3938), [anon_sym_STAR] = ACTIONS(3943), [sym_label] = ACTIONS(3938), - [anon_sym_null] = ACTIONS(3938), [anon_sym_if] = ACTIONS(3938), [anon_sym_when] = ACTIONS(3938), [anon_sym_try] = ACTIONS(3938), @@ -470695,6 +470694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3938), [anon_sym_false] = ACTIONS(3938), [anon_sym_SQUOTE] = ACTIONS(3943), + [sym_null_literal] = ACTIONS(3938), [sym__backtick_identifier] = ACTIONS(3943), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3943), @@ -481046,7 +481046,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -481067,6 +481066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [160] = 5, ACTIONS(8044), 1, @@ -481184,7 +481184,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -481205,6 +481204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [306] = 10, ACTIONS(5416), 1, @@ -481395,7 +481395,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -481416,6 +481415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [533] = 3, ACTIONS(3), 2, @@ -482175,7 +482175,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -482196,6 +482195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [1381] = 8, ACTIONS(8038), 1, @@ -482527,7 +482527,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -482548,6 +482547,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [1765] = 4, ACTIONS(8075), 1, @@ -484159,7 +484159,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -484180,6 +484179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [3557] = 9, ACTIONS(5416), 1, @@ -485342,7 +485342,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -485363,6 +485362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [4850] = 7, ACTIONS(5416), 1, @@ -486712,7 +486712,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -486733,6 +486732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [6330] = 3, ACTIONS(3), 2, @@ -486778,7 +486778,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -486799,6 +486798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [6399] = 3, ACTIONS(3), 2, @@ -486844,7 +486844,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -486865,6 +486864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [6468] = 7, ACTIONS(8109), 1, @@ -487314,7 +487314,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -487335,6 +487334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [6972] = 3, ACTIONS(3), 2, @@ -487446,7 +487446,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -487467,6 +487466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [7112] = 5, ACTIONS(8120), 1, @@ -487513,7 +487513,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -487534,6 +487533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [7184] = 5, ACTIONS(8122), 1, @@ -487580,7 +487580,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -487601,6 +487600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [7256] = 4, ACTIONS(4162), 1, @@ -487646,7 +487646,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -487667,6 +487666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [7326] = 4, ACTIONS(8124), 1, @@ -487712,7 +487712,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -487733,6 +487732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [7396] = 4, ACTIONS(8126), 1, @@ -487778,7 +487778,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -487799,6 +487798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [7466] = 5, ACTIONS(8120), 1, @@ -487845,7 +487845,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -487866,6 +487865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [7538] = 3, ACTIONS(3), 2, @@ -488443,7 +488443,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -488464,6 +488463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [8176] = 5, ACTIONS(8131), 1, @@ -489069,7 +489069,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -489090,6 +489089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [8870] = 10, ACTIONS(5416), 1, @@ -489213,7 +489213,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -489234,6 +489233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [9034] = 10, ACTIONS(5720), 1, @@ -489285,7 +489285,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -489306,6 +489305,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [9116] = 10, ACTIONS(5720), 1, @@ -489357,7 +489357,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -489378,6 +489377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [9198] = 3, ACTIONS(3), 2, @@ -502563,7 +502563,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -502584,6 +502583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [23246] = 9, ACTIONS(5720), 1, @@ -502633,7 +502633,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -502654,6 +502653,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [23325] = 3, ACTIONS(3), 2, @@ -502838,7 +502838,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -502859,6 +502858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [23552] = 9, ACTIONS(5720), 1, @@ -502908,7 +502908,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -502929,6 +502928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [23631] = 3, ACTIONS(3), 2, @@ -503106,7 +503106,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -503127,6 +503126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [23844] = 3, ACTIONS(3), 2, @@ -505371,7 +505371,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -505392,6 +505391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [26306] = 7, ACTIONS(5760), 1, @@ -505766,7 +505766,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -505787,6 +505786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [26736] = 8, ACTIONS(5720), 1, @@ -505834,7 +505834,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -505855,6 +505854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [26812] = 3, ACTIONS(3), 2, @@ -505897,7 +505897,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -505918,6 +505917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [26878] = 3, ACTIONS(3), 2, @@ -505960,7 +505960,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -505981,6 +505980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [26944] = 3, ACTIONS(3), 2, @@ -506023,7 +506023,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -506044,6 +506043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [27010] = 3, ACTIONS(3), 2, @@ -506086,7 +506086,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -506107,6 +506106,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [27076] = 9, ACTIONS(5760), 1, @@ -506223,7 +506223,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -506244,6 +506243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [27230] = 3, ACTIONS(3), 2, @@ -506286,7 +506286,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -506307,6 +506306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [27296] = 7, ACTIONS(8169), 1, @@ -506416,7 +506416,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -506437,6 +506436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [27436] = 7, ACTIONS(5756), 1, @@ -506551,7 +506551,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -506572,6 +506571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [27586] = 8, ACTIONS(5756), 1, @@ -506755,7 +506755,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -506776,6 +506775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [27814] = 3, ACTIONS(3), 2, @@ -506818,7 +506818,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -506839,6 +506838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [27880] = 8, ACTIONS(5756), 1, @@ -506949,7 +506949,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -506970,6 +506969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [28022] = 8, ACTIONS(5760), 1, @@ -507150,7 +507150,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -507171,6 +507170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [28244] = 8, ACTIONS(5714), 1, @@ -507218,7 +507218,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -507239,6 +507238,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [28320] = 8, ACTIONS(5756), 1, @@ -507418,7 +507418,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -507439,6 +507438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [28540] = 8, ACTIONS(5714), 1, @@ -507486,7 +507486,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -507507,6 +507506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [28616] = 10, ACTIONS(5416), 1, @@ -510035,7 +510035,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -510056,6 +510055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [31438] = 3, ACTIONS(3), 2, @@ -510805,7 +510805,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -510826,6 +510825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [32270] = 5, ACTIONS(5766), 1, @@ -511704,7 +511704,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -511725,6 +511724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [33242] = 5, ACTIONS(5766), 1, @@ -512589,7 +512589,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -512610,6 +512609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [34186] = 6, ACTIONS(5432), 1, @@ -512785,7 +512785,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -512806,6 +512805,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [34401] = 6, ACTIONS(5432), 1, @@ -512980,7 +512980,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -513001,6 +513000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [34614] = 3, ACTIONS(3), 2, @@ -513363,7 +513363,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -513384,6 +513383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [35026] = 5, ACTIONS(8318), 1, @@ -513427,7 +513427,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -513448,6 +513447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [35095] = 7, ACTIONS(8040), 1, @@ -513559,7 +513559,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -513580,6 +513579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [35241] = 7, ACTIONS(8040), 1, @@ -514076,7 +514076,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -514097,6 +514096,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [35803] = 7, ACTIONS(8040), 1, @@ -514396,7 +514396,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -514417,6 +514416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [36148] = 7, ACTIONS(8040), 1, @@ -514592,7 +514592,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -514613,6 +514612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [36363] = 7, ACTIONS(8135), 1, @@ -514658,7 +514658,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -514679,6 +514678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [36436] = 5, ACTIONS(8331), 1, @@ -514852,7 +514852,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -514873,6 +514872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [36647] = 7, ACTIONS(5720), 1, @@ -514918,7 +514918,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -514939,6 +514938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [36720] = 7, ACTIONS(5714), 1, @@ -514984,7 +514984,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -515005,6 +515004,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [36793] = 7, ACTIONS(5714), 1, @@ -515050,7 +515050,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -515071,6 +515070,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [36866] = 7, ACTIONS(5720), 1, @@ -515116,7 +515116,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -515137,6 +515136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [36939] = 5, ACTIONS(5766), 1, @@ -515244,7 +515244,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -515265,6 +515264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [37077] = 3, ACTIONS(3), 2, @@ -515372,7 +515372,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -515393,6 +515392,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [37215] = 5, ACTIONS(5756), 1, @@ -515502,7 +515502,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -515523,6 +515522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [37357] = 3, ACTIONS(3), 2, @@ -515564,7 +515564,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -515585,6 +515584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [37422] = 3, ACTIONS(3), 2, @@ -515626,7 +515626,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -515647,6 +515646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [37487] = 7, ACTIONS(5714), 1, @@ -515692,7 +515692,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -515713,6 +515712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [37560] = 5, ACTIONS(8336), 1, @@ -515822,7 +515822,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -515843,6 +515842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [37702] = 7, ACTIONS(5714), 1, @@ -515888,7 +515888,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -515909,6 +515908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [37775] = 7, ACTIONS(5720), 1, @@ -515954,7 +515954,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -515975,6 +515974,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [37848] = 5, ACTIONS(5766), 1, @@ -516084,7 +516084,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -516105,6 +516104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [37990] = 7, ACTIONS(5720), 1, @@ -516150,7 +516150,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -516171,6 +516170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [38063] = 7, ACTIONS(8135), 1, @@ -516216,7 +516216,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -516237,6 +516236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [38136] = 7, ACTIONS(8040), 1, @@ -516966,7 +516966,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -516987,6 +516986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [38936] = 3, ACTIONS(3), 2, @@ -517027,7 +517027,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -517048,6 +517047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [39000] = 3, ACTIONS(3), 2, @@ -517088,7 +517088,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -517109,6 +517108,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [39064] = 3, ACTIONS(3), 2, @@ -517149,7 +517149,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -517170,6 +517169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [39128] = 3, ACTIONS(3), 2, @@ -517210,7 +517210,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -517231,6 +517230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [39192] = 3, ACTIONS(3), 2, @@ -517271,7 +517271,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -517292,6 +517291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [39256] = 3, ACTIONS(3), 2, @@ -517393,7 +517393,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -517414,6 +517413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [39384] = 3, ACTIONS(3), 2, @@ -517515,7 +517515,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -517536,6 +517535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [39512] = 3, ACTIONS(3), 2, @@ -518003,7 +518003,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -518024,6 +518023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [40024] = 3, ACTIONS(3), 2, @@ -519050,7 +519050,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -519071,6 +519070,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [41132] = 3, ACTIONS(3), 2, @@ -519172,7 +519172,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -519193,6 +519192,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [41260] = 6, ACTIONS(5714), 1, @@ -519236,7 +519236,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -519257,6 +519256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [41330] = 3, ACTIONS(3), 2, @@ -519671,7 +519671,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -519692,6 +519691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [41794] = 7, ACTIONS(8040), 1, @@ -519858,7 +519858,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -519879,6 +519878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [41994] = 3, ACTIONS(3), 2, @@ -520048,7 +520048,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -520069,6 +520068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [42200] = 3, ACTIONS(3), 2, @@ -523903,7 +523903,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -523924,6 +523923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [46314] = 3, ACTIONS(3), 2, @@ -524025,7 +524025,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -524046,6 +524045,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [46442] = 3, ACTIONS(3), 2, @@ -524147,7 +524147,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -524168,6 +524167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [46570] = 3, ACTIONS(3), 2, @@ -525315,7 +525315,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -525336,6 +525335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [47804] = 3, ACTIONS(3), 2, @@ -528587,7 +528587,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -528608,6 +528607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [51275] = 5, ACTIONS(5728), 1, @@ -528649,7 +528649,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -528670,6 +528669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [51342] = 10, ACTIONS(5416), 1, @@ -529095,7 +529095,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -529116,6 +529115,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [51835] = 5, ACTIONS(8392), 1, @@ -529219,7 +529219,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -529240,6 +529239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [51969] = 10, ACTIONS(5416), 1, @@ -529786,7 +529786,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -529807,6 +529806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [52590] = 6, ACTIONS(5432), 1, @@ -529972,7 +529972,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -529993,6 +529992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [52791] = 5, ACTIONS(5728), 1, @@ -530034,7 +530034,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -530055,6 +530054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [52858] = 10, ACTIONS(5416), 1, @@ -530224,7 +530224,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -530245,6 +530244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [53067] = 5, ACTIONS(5728), 1, @@ -530286,7 +530286,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -530307,6 +530306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [53134] = 5, ACTIONS(5714), 1, @@ -530348,7 +530348,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -530369,6 +530368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [53201] = 5, ACTIONS(5714), 1, @@ -530410,7 +530410,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -530431,6 +530430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [53268] = 5, ACTIONS(5728), 1, @@ -530472,7 +530472,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -530493,6 +530492,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [53335] = 5, ACTIONS(5728), 1, @@ -530534,7 +530534,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -530555,6 +530554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [53402] = 5, ACTIONS(5714), 1, @@ -530596,7 +530596,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -530617,6 +530616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [53469] = 5, ACTIONS(5714), 1, @@ -530658,7 +530658,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -530679,6 +530678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [53536] = 5, ACTIONS(5714), 1, @@ -530720,7 +530720,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -530741,6 +530740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [53603] = 10, ACTIONS(5760), 1, @@ -530983,7 +530983,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -531004,6 +531003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [53901] = 5, ACTIONS(5714), 1, @@ -531045,7 +531045,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -531066,6 +531065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [53968] = 5, ACTIONS(5728), 1, @@ -531107,7 +531107,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -531128,6 +531127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [54035] = 5, ACTIONS(5714), 1, @@ -531169,7 +531169,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -531190,6 +531189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [54102] = 5, ACTIONS(5728), 1, @@ -531231,7 +531231,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -531252,6 +531251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [54169] = 10, ACTIONS(5760), 1, @@ -531360,7 +531360,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -531381,6 +531380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [54313] = 5, ACTIONS(5728), 1, @@ -531422,7 +531422,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -531443,6 +531442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [54380] = 5, ACTIONS(8427), 1, @@ -531546,7 +531546,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -531567,6 +531566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [54514] = 10, ACTIONS(5760), 1, @@ -531734,7 +531734,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -531755,6 +531754,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [54720] = 4, ACTIONS(6801), 1, @@ -531797,7 +531797,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_do, - anon_sym_null, anon_sym_if, anon_sym_when, anon_sym_try, @@ -531815,6 +531814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [54784] = 3, ACTIONS(3), 2, @@ -531853,7 +531853,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -531874,6 +531873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [54846] = 9, ACTIONS(5416), 1, @@ -531977,7 +531977,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -531998,6 +531997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [54982] = 3, ACTIONS(3), 2, @@ -532036,7 +532036,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -532057,6 +532056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [55044] = 9, ACTIONS(5416), 1, @@ -532160,7 +532160,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -532181,6 +532180,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [55180] = 3, ACTIONS(3), 2, @@ -532219,7 +532219,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -532240,6 +532239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [55242] = 3, ACTIONS(3), 2, @@ -532278,7 +532278,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -532299,6 +532298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [55304] = 3, ACTIONS(3), 2, @@ -532337,7 +532337,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -532358,6 +532357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [55366] = 3, ACTIONS(3), 2, @@ -532396,7 +532396,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -532417,6 +532416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [55428] = 3, ACTIONS(3), 2, @@ -532455,7 +532455,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -532476,6 +532475,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [55490] = 3, ACTIONS(3), 2, @@ -532514,7 +532514,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -532535,6 +532534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [55552] = 3, ACTIONS(3), 2, @@ -532573,7 +532573,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -532594,6 +532593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [55614] = 25, ACTIONS(3150), 1, @@ -532778,7 +532778,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -532799,6 +532798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [55856] = 3, ACTIONS(3), 2, @@ -532837,7 +532837,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -532858,6 +532857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [55918] = 3, ACTIONS(3), 2, @@ -532896,7 +532896,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -532917,6 +532916,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [55980] = 9, ACTIONS(5416), 1, @@ -533020,7 +533020,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -533041,6 +533040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [56116] = 3, ACTIONS(3), 2, @@ -533079,7 +533079,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -533100,6 +533099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [56178] = 3, ACTIONS(3), 2, @@ -533138,7 +533138,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -533159,6 +533158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [56240] = 3, ACTIONS(3), 2, @@ -533197,7 +533197,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -533218,6 +533217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [56302] = 3, ACTIONS(3), 2, @@ -533256,7 +533256,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -533277,6 +533276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [56364] = 9, ACTIONS(5760), 1, @@ -533445,7 +533445,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -533466,6 +533465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [56574] = 9, ACTIONS(5760), 1, @@ -533764,7 +533764,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -533785,6 +533784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [56932] = 3, ACTIONS(3), 2, @@ -533823,7 +533823,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -533844,6 +533843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [56994] = 3, ACTIONS(3), 2, @@ -533882,7 +533882,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -533903,6 +533902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [57056] = 3, ACTIONS(3), 2, @@ -533941,7 +533941,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -533962,6 +533961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [57118] = 3, ACTIONS(3), 2, @@ -534000,7 +534000,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -534021,6 +534020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [57180] = 3, ACTIONS(3), 2, @@ -534059,7 +534059,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -534080,6 +534079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [57242] = 3, ACTIONS(3), 2, @@ -534118,7 +534118,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -534139,6 +534138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [57304] = 3, ACTIONS(3), 2, @@ -534177,7 +534177,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -534198,6 +534197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [57366] = 3, ACTIONS(3), 2, @@ -534236,7 +534236,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -534257,6 +534256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [57428] = 3, ACTIONS(3), 2, @@ -534295,7 +534295,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -534316,6 +534315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [57490] = 3, ACTIONS(3), 2, @@ -534354,7 +534354,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -534375,6 +534374,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [57552] = 3, ACTIONS(3), 2, @@ -534413,7 +534413,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -534434,6 +534433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [57614] = 6, ACTIONS(3938), 1, @@ -534534,7 +534534,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -534555,6 +534554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [57744] = 3, ACTIONS(3), 2, @@ -534593,7 +534593,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -534614,6 +534613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [57806] = 6, ACTIONS(3938), 1, @@ -534714,7 +534714,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -534735,6 +534734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [57936] = 3, ACTIONS(3), 2, @@ -534773,7 +534773,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -534794,6 +534793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [57998] = 3, ACTIONS(3), 2, @@ -534832,7 +534832,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -534853,6 +534852,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [58060] = 3, ACTIONS(3), 2, @@ -534891,7 +534891,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -534912,6 +534911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [58122] = 3, ACTIONS(3), 2, @@ -534950,7 +534950,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -534971,6 +534970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [58184] = 3, ACTIONS(3), 2, @@ -535009,7 +535009,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -535030,6 +535029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [58246] = 3, ACTIONS(3), 2, @@ -535068,7 +535068,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -535089,6 +535088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [58308] = 3, ACTIONS(3), 2, @@ -535127,7 +535127,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -535148,6 +535147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [58370] = 3, ACTIONS(3), 2, @@ -535186,7 +535186,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -535207,6 +535206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [58432] = 3, ACTIONS(3), 2, @@ -535245,7 +535245,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -535266,6 +535265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [58494] = 3, ACTIONS(3), 2, @@ -535304,7 +535304,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -535325,6 +535324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [58556] = 3, ACTIONS(3), 2, @@ -535363,7 +535363,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -535384,6 +535383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [58618] = 25, ACTIONS(3150), 1, @@ -535503,7 +535503,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -535524,6 +535523,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [58786] = 3, ACTIONS(3), 2, @@ -535562,7 +535562,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -535583,6 +535582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [58848] = 3, ACTIONS(3), 2, @@ -535621,7 +535621,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -535642,6 +535641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [58910] = 3, ACTIONS(3), 2, @@ -535680,7 +535680,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -535701,6 +535700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [58972] = 3, ACTIONS(3), 2, @@ -535739,7 +535739,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -535760,6 +535759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [59034] = 3, ACTIONS(3), 2, @@ -535798,7 +535798,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -535819,6 +535818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [59096] = 8, ACTIONS(8171), 1, @@ -536051,7 +536051,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -536072,6 +536071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [59378] = 3, ACTIONS(3), 2, @@ -536110,7 +536110,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -536131,6 +536130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [59440] = 3, ACTIONS(3), 2, @@ -536169,7 +536169,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -536190,6 +536189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [59502] = 3, ACTIONS(3), 2, @@ -536228,7 +536228,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -536249,6 +536248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [59564] = 25, ACTIONS(3150), 1, @@ -536368,7 +536368,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -536389,6 +536388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [59732] = 10, ACTIONS(5760), 1, @@ -536493,7 +536493,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -536514,6 +536513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [59870] = 4, ACTIONS(8462), 1, @@ -536612,7 +536612,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -536633,6 +536632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [59996] = 4, ACTIONS(8464), 1, @@ -536731,7 +536731,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -536752,6 +536751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [60122] = 3, ACTIONS(3), 2, @@ -536790,7 +536790,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -536811,6 +536810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [60184] = 4, ACTIONS(8466), 1, @@ -536850,7 +536850,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -536871,6 +536870,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [60248] = 10, ACTIONS(5760), 1, @@ -536976,7 +536976,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -536997,6 +536996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [60388] = 3, ACTIONS(3), 2, @@ -537035,7 +537035,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -537056,6 +537055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [60450] = 3, ACTIONS(3), 2, @@ -537094,7 +537094,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -537115,6 +537114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [60512] = 3, ACTIONS(3), 2, @@ -537153,7 +537153,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -537174,6 +537173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [60574] = 4, ACTIONS(8472), 1, @@ -537213,7 +537213,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -537234,6 +537233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [60638] = 4, ACTIONS(8474), 1, @@ -537273,7 +537273,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -537294,6 +537293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [60702] = 10, ACTIONS(5760), 1, @@ -537458,7 +537458,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -537479,6 +537478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [60904] = 8, ACTIONS(8171), 1, @@ -537646,7 +537646,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_do, - anon_sym_null, anon_sym_if, anon_sym_when, anon_sym_try, @@ -537664,6 +537663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [61106] = 4, ACTIONS(8486), 1, @@ -538136,7 +538136,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_do, - anon_sym_null, anon_sym_if, anon_sym_when, anon_sym_try, @@ -538154,6 +538153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [61638] = 25, ACTIONS(3150), 1, @@ -538278,7 +538278,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_this, anon_sym_super, sym_label, - anon_sym_null, anon_sym_if, anon_sym_when, anon_sym_try, @@ -538297,6 +538296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [61812] = 6, ACTIONS(6896), 1, @@ -538340,7 +538340,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_this, anon_sym_super, sym_label, - anon_sym_null, anon_sym_if, anon_sym_when, anon_sym_try, @@ -538359,6 +538358,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [61880] = 5, ACTIONS(8504), 1, @@ -538928,7 +538928,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_do, - anon_sym_null, anon_sym_if, anon_sym_when, anon_sym_try, @@ -538946,6 +538945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [62558] = 3, ACTIONS(3), 2, @@ -538986,7 +538986,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_do, - anon_sym_null, anon_sym_if, anon_sym_when, anon_sym_try, @@ -539004,6 +539003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [62619] = 24, ACTIONS(8527), 1, @@ -540210,7 +540210,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -540231,6 +540230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [64083] = 7, ACTIONS(8171), 1, @@ -540988,7 +540988,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_do, - anon_sym_null, anon_sym_if, anon_sym_when, anon_sym_try, @@ -541006,6 +541005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [64973] = 8, ACTIONS(5760), 1, @@ -541420,7 +541420,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_super, sym_label, anon_sym_in, - anon_sym_null, anon_sym_if, anon_sym_else, anon_sym_when, @@ -541441,6 +541440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [65458] = 24, ACTIONS(8527), 1, @@ -541562,7 +541562,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_do, - anon_sym_null, anon_sym_if, anon_sym_when, anon_sym_try, @@ -541580,6 +541579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [65626] = 8, ACTIONS(5416), 1, @@ -542508,7 +542508,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_do, - anon_sym_null, anon_sym_if, anon_sym_when, anon_sym_try, @@ -542526,6 +542525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [66748] = 23, ACTIONS(3266), 1, @@ -542845,7 +542845,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_do, - anon_sym_null, anon_sym_if, anon_sym_when, anon_sym_try, @@ -542863,6 +542862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [67149] = 8, ACTIONS(5760), 1, @@ -543178,7 +543178,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_do, - anon_sym_null, anon_sym_if, anon_sym_when, anon_sym_try, @@ -543196,6 +543195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [67545] = 8, ACTIONS(8171), 1, @@ -544754,7 +544754,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_do, - anon_sym_null, anon_sym_if, anon_sym_when, anon_sym_try, @@ -544772,6 +544771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [69455] = 5, ACTIONS(8720), 1, @@ -546399,7 +546399,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_do, - anon_sym_null, anon_sym_if, anon_sym_when, anon_sym_try, @@ -546417,6 +546416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [71449] = 23, ACTIONS(8527), 1, @@ -546533,7 +546533,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_do, - anon_sym_null, anon_sym_if, anon_sym_when, anon_sym_try, @@ -546551,6 +546550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [71609] = 5, ACTIONS(8759), 1, @@ -547110,7 +547110,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_do, - anon_sym_null, anon_sym_if, anon_sym_when, anon_sym_try, @@ -547128,6 +547127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [72280] = 23, ACTIONS(8527), 1, @@ -547394,7 +547394,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_do, - anon_sym_null, anon_sym_if, anon_sym_when, anon_sym_try, @@ -547412,6 +547411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [72636] = 6, ACTIONS(5432), 1, @@ -547836,7 +547836,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_do, - anon_sym_null, anon_sym_if, anon_sym_when, anon_sym_try, @@ -547854,6 +547853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [73149] = 7, ACTIONS(8171), 1, @@ -548351,7 +548351,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_do, - anon_sym_null, anon_sym_if, anon_sym_when, anon_sym_try, @@ -548369,6 +548368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [73755] = 3, ACTIONS(3), 2, @@ -548407,7 +548407,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_do, - anon_sym_null, anon_sym_if, anon_sym_when, anon_sym_try, @@ -548425,6 +548424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [73814] = 22, ACTIONS(8527), 1, @@ -548925,7 +548925,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_do, - anon_sym_null, anon_sym_if, anon_sym_when, anon_sym_try, @@ -548943,6 +548942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [74426] = 5, ACTIONS(4182), 1, @@ -549099,7 +549099,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_do, - anon_sym_null, anon_sym_if, anon_sym_when, anon_sym_try, @@ -549117,6 +549116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [74615] = 21, ACTIONS(3266), 1, @@ -549381,7 +549381,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_do, - anon_sym_null, anon_sym_if, anon_sym_when, anon_sym_try, @@ -549399,6 +549398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [74967] = 3, ACTIONS(3), 2, @@ -549437,7 +549437,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_do, - anon_sym_null, anon_sym_if, anon_sym_when, anon_sym_try, @@ -549455,6 +549454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [75026] = 3, ACTIONS(3), 2, @@ -549493,7 +549493,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_do, - anon_sym_null, anon_sym_if, anon_sym_when, anon_sym_try, @@ -549511,6 +549510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [75085] = 7, ACTIONS(8171), 1, @@ -551648,7 +551648,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_this, anon_sym_super, sym_label, - anon_sym_null, anon_sym_if, anon_sym_when, anon_sym_try, @@ -551666,6 +551665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [77621] = 5, ACTIONS(8392), 1, @@ -551704,7 +551704,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_this, anon_sym_super, sym_label, - anon_sym_null, anon_sym_if, anon_sym_when, anon_sym_try, @@ -551722,6 +551721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [77682] = 4, ACTIONS(8917), 1, @@ -552455,7 +552455,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_this, anon_sym_super, sym_label, - anon_sym_null, anon_sym_if, anon_sym_when, anon_sym_try, @@ -552473,6 +552472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [78529] = 5, ACTIONS(4190), 1, @@ -552510,7 +552510,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_this, anon_sym_super, sym_label, - anon_sym_null, anon_sym_if, anon_sym_when, anon_sym_try, @@ -552528,6 +552527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer_literal, anon_sym_true, anon_sym_false, + sym_null_literal, sym__alpha_identifier, [78589] = 20, ACTIONS(8527), 1, @@ -672116,35 +672116,35 @@ static const TSParseActionEntry ts_parse_actions[] = { [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10083), [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10082), [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10080), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9055), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9146), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5078), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7961), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5794), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5795), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5796), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9047), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9046), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9045), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9043), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9041), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4898), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8518), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10080), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9055), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9146), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5078), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7961), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5794), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5795), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5796), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9047), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9046), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9045), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9043), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9041), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4898), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8518), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8412), [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), @@ -672168,28 +672168,28 @@ static const TSParseActionEntry ts_parse_actions[] = { [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9958), [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9731), [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9613), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8880), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9235), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7918), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9069), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9071), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9078), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9080), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9084), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8539), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9613), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8880), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9235), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7918), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9069), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9071), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9078), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9080), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9084), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8539), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8439), [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), @@ -672210,28 +672210,28 @@ static const TSParseActionEntry ts_parse_actions[] = { [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9948), [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9571), [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9533), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8972), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9172), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7882), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8891), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8890), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8887), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8885), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8881), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8607), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9533), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8972), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9172), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7882), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8891), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8890), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8887), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8885), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8881), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8607), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8445), [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), @@ -672252,13 +672252,13 @@ static const TSParseActionEntry ts_parse_actions[] = { [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9997), [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9648), [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9466), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9466), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8123), @@ -672277,28 +672277,28 @@ static const TSParseActionEntry ts_parse_actions[] = { [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9963), [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9775), [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9728), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8792), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9316), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7888), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8901), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9056), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9079), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9082), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9085), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8492), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9728), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8792), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9316), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7888), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8901), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9056), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9079), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9082), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9085), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8492), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8435), [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8033), @@ -672314,13 +672314,13 @@ static const TSParseActionEntry ts_parse_actions[] = { [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9955), [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9704), [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9995), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9995), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8231), @@ -672339,27 +672339,27 @@ static const TSParseActionEntry ts_parse_actions[] = { [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9961), [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9758), [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9705), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8899), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9205), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7906), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8902), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8953), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8903), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8904), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8577), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9705), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8899), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9205), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7906), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8902), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8953), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8903), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8904), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8577), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8443), [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), @@ -672380,27 +672380,27 @@ static const TSParseActionEntry ts_parse_actions[] = { [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9960), [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9751), [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9681), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8849), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9294), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7981), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9020), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9008), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9003), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8998), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8505), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9681), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8849), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9294), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7981), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9020), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9008), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9003), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8998), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8505), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8427), [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8306), @@ -672498,10 +672498,10 @@ static const TSParseActionEntry ts_parse_actions[] = { [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9953), [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9621), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8158), [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9795), [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), @@ -672526,10 +672526,10 @@ static const TSParseActionEntry ts_parse_actions[] = { [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9956), [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9715), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8234), [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9644), [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), @@ -672554,10 +672554,10 @@ static const TSParseActionEntry ts_parse_actions[] = { [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9962), [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9639), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8162), [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9655), [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), @@ -672569,10 +672569,10 @@ static const TSParseActionEntry ts_parse_actions[] = { [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9959), [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9740), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8099), [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9697), [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7634), @@ -672791,35 +672791,35 @@ static const TSParseActionEntry ts_parse_actions[] = { [1414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(10083), [1417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(10082), [1420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(219), - [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4553), - [1426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(10080), - [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9055), - [1432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9146), - [1435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1484), - [1438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(299), - [1441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5078), - [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(7961), - [1447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1491), - [1450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1491), - [1453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5791), - [1456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5792), - [1459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(2755), - [1462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5794), - [1465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5795), - [1468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5609), - [1471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5796), - [1474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5797), - [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(2756), - [1480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9047), - [1483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9046), - [1486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9045), - [1489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9043), - [1492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9041), - [1495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4553), - [1498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4898), - [1501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4898), - [1504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5085), - [1507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(8518), + [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(10080), + [1426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9055), + [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9146), + [1432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1484), + [1435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(299), + [1438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5078), + [1441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(7961), + [1444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1491), + [1447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1491), + [1450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5791), + [1453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5792), + [1456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(2755), + [1459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5794), + [1462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5795), + [1465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5609), + [1468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5796), + [1471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5797), + [1474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(2756), + [1477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9047), + [1480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9046), + [1483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9045), + [1486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9043), + [1489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9041), + [1492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4553), + [1495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4898), + [1498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4898), + [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5085), + [1504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(8518), + [1507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4553), [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4602), [1513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(8412), [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), @@ -672859,20 +672859,20 @@ static const TSParseActionEntry ts_parse_actions[] = { [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9090), [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7810), [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8907), [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7831), [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9030), [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7802), [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7688), [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7716), [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7729), @@ -672960,8 +672960,8 @@ static const TSParseActionEntry ts_parse_actions[] = { [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9023), [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7776), [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), + [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), @@ -672994,13 +672994,13 @@ static const TSParseActionEntry ts_parse_actions[] = { [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8966), [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7766), [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8878), [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7717), [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), - [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5086), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5086), [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7736), [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7670), [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), @@ -673088,25 +673088,25 @@ static const TSParseActionEntry ts_parse_actions[] = { [2056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2096), [2059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2092), [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), - [2064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3948), - [2067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9622), - [2070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8899), - [2073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9205), - [2076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2094), - [2079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(267), - [2082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3868), - [2085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7906), - [2088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2092), - [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8901), - [2094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8902), - [2097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8953), - [2100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8903), - [2103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8904), - [2106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3948), - [2109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3652), - [2112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3652), - [2115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3900), - [2118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8577), + [2064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9622), + [2067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8899), + [2070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9205), + [2073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2094), + [2076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(267), + [2079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3868), + [2082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7906), + [2085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2092), + [2088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8901), + [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8902), + [2094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8953), + [2097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8903), + [2100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8904), + [2103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3948), + [2106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3652), + [2109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3652), + [2112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3900), + [2115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8577), + [2118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3948), [2121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3321), [2124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8443), [2127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4602), @@ -673120,25 +673120,25 @@ static const TSParseActionEntry ts_parse_actions[] = { [2154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5071), [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1443), [2160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1491), - [2163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5086), - [2166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9782), - [2169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9055), - [2172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9146), - [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1865), - [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(359), - [2181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5078), - [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7961), - [2187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1491), - [2190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9047), - [2193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9046), - [2196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9045), - [2199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9043), - [2202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9041), - [2205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5086), - [2208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4898), - [2211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4898), - [2214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5085), - [2217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8518), + [2163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9782), + [2166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9055), + [2169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9146), + [2172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1865), + [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(359), + [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5078), + [2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7961), + [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1491), + [2187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9047), + [2190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9046), + [2193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9045), + [2196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9043), + [2199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9041), + [2202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5086), + [2205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4898), + [2208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4898), + [2211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5085), + [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8518), + [2217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5086), [2220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4602), [2223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8412), [2226] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7716), @@ -673173,24 +673173,24 @@ static const TSParseActionEntry ts_parse_actions[] = { [2319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3058), [2322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2157), [2325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2169), - [2328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3182), - [2331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9541), - [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8849), - [2337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9294), - [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1514), - [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(369), - [2346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3187), - [2349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7981), - [2352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2169), - [2355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9020), - [2358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9008), - [2361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9003), - [2364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8998), - [2367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3182), - [2370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2942), - [2373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2942), - [2376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3184), - [2379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8505), + [2328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9541), + [2331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8849), + [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9294), + [2337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1514), + [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(369), + [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3187), + [2346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7981), + [2349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2169), + [2352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9020), + [2355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9008), + [2358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9003), + [2361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8998), + [2364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3182), + [2367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2942), + [2370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2942), + [2373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3184), + [2376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8505), + [2379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3182), [2382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2786), [2385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8427), [2388] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7766), @@ -673211,25 +673211,25 @@ static const TSParseActionEntry ts_parse_actions[] = { [2437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4731), [2440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2137), [2443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2132), - [2446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4735), - [2449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9466), - [2452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8972), - [2455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9172), - [2458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2134), - [2461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(298), - [2464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4732), - [2467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7882), - [2470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2132), - [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8891), - [2476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8890), - [2479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8887), - [2482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8885), - [2485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8881), - [2488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4735), - [2491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4601), - [2494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4601), - [2497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4734), - [2500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8607), + [2446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9466), + [2449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8972), + [2452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9172), + [2455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2134), + [2458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(298), + [2461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4732), + [2464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7882), + [2467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2132), + [2470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8891), + [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8890), + [2476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8887), + [2479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8885), + [2482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8881), + [2485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4735), + [2488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4601), + [2491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4601), + [2494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4734), + [2497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8607), + [2500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4735), [2503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4536), [2506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8445), [2509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(815), @@ -673243,24 +673243,24 @@ static const TSParseActionEntry ts_parse_actions[] = { [2536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1112), [2539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1939), [2542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1931), - [2545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1106), - [2548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9721), - [2551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8792), - [2554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9316), - [2557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1934), - [2560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(266), - [2563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1110), - [2566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7888), - [2569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1931), - [2572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9056), - [2575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9079), - [2578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9082), - [2581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9085), - [2584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1106), - [2587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(895), - [2590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(895), - [2593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1108), - [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8492), + [2545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9721), + [2548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8792), + [2551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9316), + [2554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1934), + [2557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(266), + [2560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1110), + [2563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7888), + [2566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1931), + [2569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9056), + [2572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9079), + [2575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9082), + [2578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9085), + [2581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1106), + [2584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(895), + [2587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(895), + [2590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1108), + [2593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8492), + [2596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1106), [2599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(815), [2602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8435), [2605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2924), @@ -673274,25 +673274,25 @@ static const TSParseActionEntry ts_parse_actions[] = { [2632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3567), [2635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1481), [2638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1475), - [2641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3570), - [2644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9613), - [2647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8880), - [2650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9235), - [2653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1479), - [2656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(258), - [2659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3568), - [2662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7918), - [2665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1475), - [2668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9069), - [2671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9071), - [2674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9078), - [2677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9080), - [2680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9084), - [2683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3570), - [2686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3249), - [2689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3249), - [2692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3569), - [2695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8539), + [2641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9613), + [2644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8880), + [2647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9235), + [2650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1479), + [2653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(258), + [2656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3568), + [2659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7918), + [2662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1475), + [2665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9069), + [2668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9071), + [2671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9078), + [2674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9080), + [2677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9084), + [2680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3570), + [2683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3249), + [2686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3249), + [2689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3569), + [2692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8539), + [2695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3570), [2698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2924), [2701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8439), [2704] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7800), @@ -673755,29 +673755,29 @@ static const TSParseActionEntry ts_parse_actions[] = { [3746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1523), [3749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1476), [3752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1825), - [3755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4735), - [3758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9647), - [3761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9754), - [3764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8972), - [3767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9172), - [3770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1522), - [3773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(313), - [3776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4732), - [3779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7882), - [3782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1825), - [3785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5953), - [3788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5953), - [3791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1476), - [3794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8891), - [3797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8890), - [3800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8887), - [3803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8885), - [3806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8881), - [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4735), - [3812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4601), - [3815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4601), - [3818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4734), - [3821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8607), + [3755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9647), + [3758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9754), + [3761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8972), + [3764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9172), + [3767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1522), + [3770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(313), + [3773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4732), + [3776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7882), + [3779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1825), + [3782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5953), + [3785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5953), + [3788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1476), + [3791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8891), + [3794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8890), + [3797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8887), + [3800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8885), + [3803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8881), + [3806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4735), + [3809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4601), + [3812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4601), + [3815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4734), + [3818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8607), + [3821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4735), [3824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4536), [3827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8445), [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), diff --git a/test/corpus/assignment.txt b/test/corpus/assignment.txt index 09c199ac..b1836e4d 100644 --- a/test/corpus/assignment.txt +++ b/test/corpus/assignment.txt @@ -19,7 +19,8 @@ class Foo(){ (property_declaration (binding_pattern_kind) (variable_declaration - (simple_identifier))) + (simple_identifier)) + (null_literal)) (secondary_constructor (function_value_parameters (parameter diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index cee09687..9a780e7b 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -144,7 +144,8 @@ when (this) { (type_arguments (type_projection))))) (control_structure_body - (jump_expression))))) + (jump_expression + (null_literal)))))) ================================================================================ Value declaration with receiver type diff --git a/test/corpus/functions.txt b/test/corpus/functions.txt index 0d0190bc..23b18a51 100644 --- a/test/corpus/functions.txt +++ b/test/corpus/functions.txt @@ -309,3 +309,17 @@ fun `this is a test function`() = true (simple_identifier) (function_value_parameters) (function_body (boolean_literal)))) + +================== +Function with null literal as expression body +================== + +fun f() = null + +--- + +(source_file + (function_declaration + (simple_identifier) + (function_value_parameters) + (function_body (null_literal)))) diff --git a/test/corpus/literals.txt b/test/corpus/literals.txt index 72f81ddf..0fd6747b 100644 --- a/test/corpus/literals.txt +++ b/test/corpus/literals.txt @@ -219,3 +219,14 @@ Unsigned Long literal (source_file (unsigned_literal (hex_literal))) + +================================================================================ +Null +================================================================================ + +null + +-------------------------------------------------------------------------------- + +(source_file + (null_literal))