From d86c4c7c851bf92fdde9347ff3ebc496d1c88814 Mon Sep 17 00:00:00 2001 From: Margret Riegert Date: Sun, 8 Dec 2024 11:31:51 -0500 Subject: [PATCH] =?UTF-8?q?Fix=20pound=20sign=20in=20char=20being=20parsed?= =?UTF-8?q?=20as=20a=20comment=206=20more=20stdlib=20files=20can=20now=20b?= =?UTF-8?q?e=20parsed=20=F0=9F=98=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- grammar.js | 8 +- src/grammar.json | 8 + src/parser.c | 17210 ++++++++++---------- src/scanner.c | 9 + test/corpus/literals.txt | 10 +- test/corpus/todo.txt | 53 +- test/stdlib_coverage_expected_to_fail.txt | 8 - 7 files changed, 8654 insertions(+), 8652 deletions(-) diff --git a/grammar.js b/grammar.js index 97174c6..743a498 100644 --- a/grammar.js +++ b/grammar.js @@ -102,6 +102,8 @@ module.exports = grammar({ $._delimited_string_contents, $._string_literal_end, + $._char_comment, + $._string_percent_literal_start, $._command_percent_literal_start, $._string_array_percent_literal_start, @@ -558,7 +560,11 @@ module.exports = grammar({ char: $ => seq( '\'', - choice(token.immediate(/[^\\]/), $.char_escape_sequence), + choice( + token.immediate(/[^\\]/), + $.char_escape_sequence, + $._char_comment + ), token.immediate('\''), ), diff --git a/src/grammar.json b/src/grammar.json index c4ee88e..41ad008 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1886,6 +1886,10 @@ { "type": "SYMBOL", "name": "char_escape_sequence" + }, + { + "type": "SYMBOL", + "name": "_char_comment" } ] }, @@ -11218,6 +11222,10 @@ "type": "SYMBOL", "name": "_string_literal_end" }, + { + "type": "SYMBOL", + "name": "_char_comment" + }, { "type": "SYMBOL", "name": "_string_percent_literal_start" diff --git a/src/parser.c b/src/parser.c index 1fe6d39..18cfd21 100644 --- a/src/parser.c +++ b/src/parser.c @@ -15,10 +15,10 @@ #define LANGUAGE_VERSION 14 #define STATE_COUNT 11983 #define LARGE_STATE_COUNT 2300 -#define SYMBOL_COUNT 391 +#define SYMBOL_COUNT 392 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 208 -#define EXTERNAL_TOKEN_COUNT 55 +#define TOKEN_COUNT 209 +#define EXTERNAL_TOKEN_COUNT 56 #define FIELD_COUNT 32 #define MAX_ALIAS_SEQUENCE_LENGTH 11 #define PRODUCTION_ID_COUNT 185 @@ -215,205 +215,206 @@ enum ts_symbol_identifiers { sym__string_literal_start = 189, sym__delimited_string_contents = 190, sym__string_literal_end = 191, - sym__string_percent_literal_start = 192, - sym__command_percent_literal_start = 193, - sym__string_array_percent_literal_start = 194, - sym__symbol_array_percent_literal_start = 195, - sym__regex_percent_literal_start = 196, - sym__percent_literal_end = 197, - sym__delimited_array_element_start = 198, - sym__delimited_array_element_end = 199, - sym_heredoc_start = 200, - sym__heredoc_body_start = 201, - sym_heredoc_content = 202, - sym_heredoc_end = 203, - sym_regex_modifier = 204, - sym__start_of_parenless_args = 205, - sym__end_of_range = 206, - sym__error_recovery = 207, - sym_source_file = 208, - sym__terminator = 209, - sym__statements = 210, - sym__parenthesized_statement = 211, - sym__statement = 212, - sym_expressions = 213, - sym__expression = 214, - sym_empty_parens = 215, - sym_integer = 216, - sym_float = 217, - sym_char = 218, - sym_string = 219, - sym_chained_string = 220, - sym_interpolation = 221, - sym_string_percent_literal = 222, - sym_string_array_percent_literal = 223, - sym_symbol_array_percent_literal = 224, - sym_percent_literal_array_word = 225, - sym_heredoc_body = 226, - sym_quoted_symbol = 227, - sym_command = 228, - sym_command_percent_literal = 229, - sym_regex = 230, - sym_regex_percent_literal = 231, - sym_array = 232, - sym_hash = 233, - sym_hash_entry = 234, - sym_tuple = 235, - sym_named_tuple = 236, - sym_range = 237, - sym_beginless_range = 238, - sym_proc = 239, - sym_proc_param_list = 240, - sym_annotation_def = 241, - sym_annotation = 242, - sym_annotation_argument_list = 243, - sym_module_def = 244, - sym_class_def = 245, - sym_struct_def = 246, - sym_enum_def = 247, - sym__operator_token = 248, - sym__base_method_def = 249, - sym_method_def = 250, - sym_abstract_method_def = 251, - sym_include = 252, - sym_extend = 253, - sym_forall = 254, - sym_param_list = 255, - sym_param = 256, - sym_splat_param = 257, - sym_double_splat_param = 258, - sym_block_param = 259, - sym_return = 260, - sym_next = 261, - sym_break = 262, - sym_yield = 263, - sym_typeof = 264, - sym_sizeof = 265, - sym_instance_sizeof = 266, - sym_offsetof = 267, - sym_constant = 268, - sym_pseudo_constant = 269, - sym__bare_type = 270, - sym__splattable_type = 271, - sym__type = 272, - sym__numeric_type = 273, - sym_class_type = 274, - sym_union_type = 275, - sym__parenthesized_type = 276, - sym_proc_type = 277, - sym_no_args_proc_type = 278, - sym_parenthesized_proc_type = 279, - sym_splat_type = 280, - sym_tuple_type = 281, - sym_named_type = 282, - sym_named_tuple_type = 283, - sym_generic_type = 284, - sym_type_param_splat = 285, - sym_type_param_list = 286, - sym_generic_instance_type = 287, - sym_type_instance_param_list = 288, - sym_nilable_type = 289, - sym_pointer_type = 290, - sym_static_array_type = 291, - sym__dot_call = 292, - sym_bracket_argument_list = 293, - sym_call = 294, - sym_implicit_object_index_operator = 295, - sym_implicit_object_call = 296, - sym_implicit_object_tuple = 297, - sym_assign_call = 298, - sym_index_operator = 299, - sym_not = 300, - sym_and = 301, - sym_or = 302, - sym_additive_operator = 303, - sym_unary_additive_operator = 304, - sym_multiplicative_operator = 305, - sym_exponential_operator = 306, - sym_shift_operator = 307, - sym_complement_operator = 308, - sym_binary_and_operator = 309, - sym_binary_or_operator = 310, - sym_equality_operator = 311, - sym_comparison_operator = 312, - sym_splat = 313, - sym_double_splat = 314, - sym_named_expr = 315, - sym_argument_list_no_parens = 316, - sym_argument_list_no_parens_with_block = 317, - sym_argument_list_with_parens = 318, - sym_argument_list_with_parens_and_block = 319, - sym_assign = 320, - sym_const_assign = 321, - sym_operator_assign = 322, - sym_lhs_splat = 323, - sym_multi_assign = 324, - sym_type_declaration = 325, - sym_alias = 326, - sym_block_body_param = 327, - sym_block_body_splat_param = 328, - sym__block_body_nested_param = 329, - sym_block_param_list = 330, - sym_do_end_block = 331, - sym_brace_block = 332, - sym_block_argument = 333, - sym_begin_block = 334, - sym_rescue_block = 335, - sym_ensure = 336, - sym_modifier_rescue = 337, - sym_modifier_ensure = 338, - sym_while = 339, - sym_until = 340, - sym_if = 341, - sym_unless = 342, - sym_then = 343, - sym_elsif = 344, - sym_else = 345, - sym_conditional = 346, - sym_modifier_if = 347, - sym_modifier_unless = 348, - sym_require = 349, - sym_when = 350, - sym_case = 351, - sym_in = 352, - sym_exhaustive_case = 353, - aux_sym__statements_repeat1 = 354, - aux_sym_string_repeat1 = 355, - aux_sym_chained_string_repeat1 = 356, - aux_sym_string_percent_literal_repeat1 = 357, - aux_sym_string_array_percent_literal_repeat1 = 358, - aux_sym_symbol_array_percent_literal_repeat1 = 359, - aux_sym_percent_literal_array_word_repeat1 = 360, - aux_sym_heredoc_body_repeat1 = 361, - aux_sym_quoted_symbol_repeat1 = 362, - aux_sym_command_repeat1 = 363, - aux_sym_regex_repeat1 = 364, - aux_sym_regex_percent_literal_repeat1 = 365, - aux_sym_array_repeat1 = 366, - aux_sym_hash_repeat1 = 367, - aux_sym_named_tuple_repeat1 = 368, - aux_sym_proc_param_list_repeat1 = 369, - aux_sym_annotation_def_repeat1 = 370, - aux_sym_annotation_argument_list_repeat1 = 371, - aux_sym_method_def_repeat1 = 372, - aux_sym_forall_repeat1 = 373, - aux_sym_param_list_repeat1 = 374, - aux_sym_param_repeat1 = 375, - aux_sym_constant_repeat1 = 376, - aux_sym_union_type_repeat1 = 377, - aux_sym_proc_type_repeat1 = 378, - aux_sym_named_tuple_type_repeat1 = 379, - aux_sym_type_param_list_repeat1 = 380, - aux_sym_implicit_object_tuple_repeat1 = 381, - aux_sym_argument_list_no_parens_repeat1 = 382, - aux_sym_multi_assign_repeat1 = 383, - aux_sym_multi_assign_repeat2 = 384, - aux_sym__block_body_nested_param_repeat1 = 385, - aux_sym_block_param_list_repeat1 = 386, - aux_sym_when_repeat1 = 387, - aux_sym_case_repeat1 = 388, - aux_sym_in_repeat1 = 389, - aux_sym_exhaustive_case_repeat1 = 390, + sym__char_comment = 192, + sym__string_percent_literal_start = 193, + sym__command_percent_literal_start = 194, + sym__string_array_percent_literal_start = 195, + sym__symbol_array_percent_literal_start = 196, + sym__regex_percent_literal_start = 197, + sym__percent_literal_end = 198, + sym__delimited_array_element_start = 199, + sym__delimited_array_element_end = 200, + sym_heredoc_start = 201, + sym__heredoc_body_start = 202, + sym_heredoc_content = 203, + sym_heredoc_end = 204, + sym_regex_modifier = 205, + sym__start_of_parenless_args = 206, + sym__end_of_range = 207, + sym__error_recovery = 208, + sym_source_file = 209, + sym__terminator = 210, + sym__statements = 211, + sym__parenthesized_statement = 212, + sym__statement = 213, + sym_expressions = 214, + sym__expression = 215, + sym_empty_parens = 216, + sym_integer = 217, + sym_float = 218, + sym_char = 219, + sym_string = 220, + sym_chained_string = 221, + sym_interpolation = 222, + sym_string_percent_literal = 223, + sym_string_array_percent_literal = 224, + sym_symbol_array_percent_literal = 225, + sym_percent_literal_array_word = 226, + sym_heredoc_body = 227, + sym_quoted_symbol = 228, + sym_command = 229, + sym_command_percent_literal = 230, + sym_regex = 231, + sym_regex_percent_literal = 232, + sym_array = 233, + sym_hash = 234, + sym_hash_entry = 235, + sym_tuple = 236, + sym_named_tuple = 237, + sym_range = 238, + sym_beginless_range = 239, + sym_proc = 240, + sym_proc_param_list = 241, + sym_annotation_def = 242, + sym_annotation = 243, + sym_annotation_argument_list = 244, + sym_module_def = 245, + sym_class_def = 246, + sym_struct_def = 247, + sym_enum_def = 248, + sym__operator_token = 249, + sym__base_method_def = 250, + sym_method_def = 251, + sym_abstract_method_def = 252, + sym_include = 253, + sym_extend = 254, + sym_forall = 255, + sym_param_list = 256, + sym_param = 257, + sym_splat_param = 258, + sym_double_splat_param = 259, + sym_block_param = 260, + sym_return = 261, + sym_next = 262, + sym_break = 263, + sym_yield = 264, + sym_typeof = 265, + sym_sizeof = 266, + sym_instance_sizeof = 267, + sym_offsetof = 268, + sym_constant = 269, + sym_pseudo_constant = 270, + sym__bare_type = 271, + sym__splattable_type = 272, + sym__type = 273, + sym__numeric_type = 274, + sym_class_type = 275, + sym_union_type = 276, + sym__parenthesized_type = 277, + sym_proc_type = 278, + sym_no_args_proc_type = 279, + sym_parenthesized_proc_type = 280, + sym_splat_type = 281, + sym_tuple_type = 282, + sym_named_type = 283, + sym_named_tuple_type = 284, + sym_generic_type = 285, + sym_type_param_splat = 286, + sym_type_param_list = 287, + sym_generic_instance_type = 288, + sym_type_instance_param_list = 289, + sym_nilable_type = 290, + sym_pointer_type = 291, + sym_static_array_type = 292, + sym__dot_call = 293, + sym_bracket_argument_list = 294, + sym_call = 295, + sym_implicit_object_index_operator = 296, + sym_implicit_object_call = 297, + sym_implicit_object_tuple = 298, + sym_assign_call = 299, + sym_index_operator = 300, + sym_not = 301, + sym_and = 302, + sym_or = 303, + sym_additive_operator = 304, + sym_unary_additive_operator = 305, + sym_multiplicative_operator = 306, + sym_exponential_operator = 307, + sym_shift_operator = 308, + sym_complement_operator = 309, + sym_binary_and_operator = 310, + sym_binary_or_operator = 311, + sym_equality_operator = 312, + sym_comparison_operator = 313, + sym_splat = 314, + sym_double_splat = 315, + sym_named_expr = 316, + sym_argument_list_no_parens = 317, + sym_argument_list_no_parens_with_block = 318, + sym_argument_list_with_parens = 319, + sym_argument_list_with_parens_and_block = 320, + sym_assign = 321, + sym_const_assign = 322, + sym_operator_assign = 323, + sym_lhs_splat = 324, + sym_multi_assign = 325, + sym_type_declaration = 326, + sym_alias = 327, + sym_block_body_param = 328, + sym_block_body_splat_param = 329, + sym__block_body_nested_param = 330, + sym_block_param_list = 331, + sym_do_end_block = 332, + sym_brace_block = 333, + sym_block_argument = 334, + sym_begin_block = 335, + sym_rescue_block = 336, + sym_ensure = 337, + sym_modifier_rescue = 338, + sym_modifier_ensure = 339, + sym_while = 340, + sym_until = 341, + sym_if = 342, + sym_unless = 343, + sym_then = 344, + sym_elsif = 345, + sym_else = 346, + sym_conditional = 347, + sym_modifier_if = 348, + sym_modifier_unless = 349, + sym_require = 350, + sym_when = 351, + sym_case = 352, + sym_in = 353, + sym_exhaustive_case = 354, + aux_sym__statements_repeat1 = 355, + aux_sym_string_repeat1 = 356, + aux_sym_chained_string_repeat1 = 357, + aux_sym_string_percent_literal_repeat1 = 358, + aux_sym_string_array_percent_literal_repeat1 = 359, + aux_sym_symbol_array_percent_literal_repeat1 = 360, + aux_sym_percent_literal_array_word_repeat1 = 361, + aux_sym_heredoc_body_repeat1 = 362, + aux_sym_quoted_symbol_repeat1 = 363, + aux_sym_command_repeat1 = 364, + aux_sym_regex_repeat1 = 365, + aux_sym_regex_percent_literal_repeat1 = 366, + aux_sym_array_repeat1 = 367, + aux_sym_hash_repeat1 = 368, + aux_sym_named_tuple_repeat1 = 369, + aux_sym_proc_param_list_repeat1 = 370, + aux_sym_annotation_def_repeat1 = 371, + aux_sym_annotation_argument_list_repeat1 = 372, + aux_sym_method_def_repeat1 = 373, + aux_sym_forall_repeat1 = 374, + aux_sym_param_list_repeat1 = 375, + aux_sym_param_repeat1 = 376, + aux_sym_constant_repeat1 = 377, + aux_sym_union_type_repeat1 = 378, + aux_sym_proc_type_repeat1 = 379, + aux_sym_named_tuple_type_repeat1 = 380, + aux_sym_type_param_list_repeat1 = 381, + aux_sym_implicit_object_tuple_repeat1 = 382, + aux_sym_argument_list_no_parens_repeat1 = 383, + aux_sym_multi_assign_repeat1 = 384, + aux_sym_multi_assign_repeat2 = 385, + aux_sym__block_body_nested_param_repeat1 = 386, + aux_sym_block_param_list_repeat1 = 387, + aux_sym_when_repeat1 = 388, + aux_sym_case_repeat1 = 389, + aux_sym_in_repeat1 = 390, + aux_sym_exhaustive_case_repeat1 = 391, }; static const char * const ts_symbol_names[] = { @@ -609,6 +610,7 @@ static const char * const ts_symbol_names[] = { [sym__string_literal_start] = "_string_literal_start", [sym__delimited_string_contents] = "_delimited_string_contents", [sym__string_literal_end] = "_string_literal_end", + [sym__char_comment] = "_char_comment", [sym__string_percent_literal_start] = "_string_percent_literal_start", [sym__command_percent_literal_start] = "_command_percent_literal_start", [sym__string_array_percent_literal_start] = "_string_array_percent_literal_start", @@ -1003,6 +1005,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__string_literal_start] = sym__string_literal_start, [sym__delimited_string_contents] = sym__delimited_string_contents, [sym__string_literal_end] = sym__string_literal_end, + [sym__char_comment] = sym__char_comment, [sym__string_percent_literal_start] = sym__string_percent_literal_start, [sym__command_percent_literal_start] = sym__command_percent_literal_start, [sym__string_array_percent_literal_start] = sym__string_array_percent_literal_start, @@ -1973,6 +1976,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__char_comment] = { + .visible = false, + .named = true, + }, [sym__string_percent_literal_start] = { .visible = false, .named = true, @@ -13720,602 +13727,602 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [9908] = 9675, [9909] = 9909, [9910] = 9910, - [9911] = 9676, - [9912] = 9680, - [9913] = 9913, + [9911] = 9911, + [9912] = 9676, + [9913] = 9680, [9914] = 9914, - [9915] = 9668, - [9916] = 9689, - [9917] = 9708, - [9918] = 9918, - [9919] = 9710, - [9920] = 9727, - [9921] = 9699, - [9922] = 9691, - [9923] = 9732, - [9924] = 9681, - [9925] = 9682, - [9926] = 9730, - [9927] = 9688, - [9928] = 9692, - [9929] = 9929, - [9930] = 9700, - [9931] = 9931, - [9932] = 9711, - [9933] = 9933, - [9934] = 9910, - [9935] = 2644, - [9936] = 9936, - [9937] = 9674, - [9938] = 9678, - [9939] = 9680, - [9940] = 2645, - [9941] = 2646, - [9942] = 9678, - [9943] = 2650, - [9944] = 9701, - [9945] = 2666, - [9946] = 9689, - [9947] = 9947, - [9948] = 2737, - [9949] = 2673, - [9950] = 9691, - [9951] = 9951, - [9952] = 9952, - [9953] = 2685, - [9954] = 9693, - [9955] = 9914, - [9956] = 9694, - [9957] = 9957, - [9958] = 9681, - [9959] = 9702, - [9960] = 9732, - [9961] = 9689, - [9962] = 9679, - [9963] = 9681, - [9964] = 9682, - [9965] = 9688, - [9966] = 9692, - [9967] = 9727, - [9968] = 9700, - [9969] = 9701, - [9970] = 9702, - [9971] = 9704, - [9972] = 9687, - [9973] = 9699, - [9974] = 9730, - [9975] = 9727, - [9976] = 9670, + [9915] = 9915, + [9916] = 9668, + [9917] = 9689, + [9918] = 9708, + [9919] = 9919, + [9920] = 9710, + [9921] = 9727, + [9922] = 9699, + [9923] = 9691, + [9924] = 9732, + [9925] = 9681, + [9926] = 9682, + [9927] = 9730, + [9928] = 9688, + [9929] = 9692, + [9930] = 9930, + [9931] = 9700, + [9932] = 9932, + [9933] = 9711, + [9934] = 9934, + [9935] = 9909, + [9936] = 9911, + [9937] = 2644, + [9938] = 9938, + [9939] = 9674, + [9940] = 9678, + [9941] = 9680, + [9942] = 2645, + [9943] = 2646, + [9944] = 9678, + [9945] = 2650, + [9946] = 9701, + [9947] = 2666, + [9948] = 9689, + [9949] = 9949, + [9950] = 2737, + [9951] = 2673, + [9952] = 9691, + [9953] = 9909, + [9954] = 9954, + [9955] = 9955, + [9956] = 2685, + [9957] = 9693, + [9958] = 9915, + [9959] = 9694, + [9960] = 9960, + [9961] = 9681, + [9962] = 9702, + [9963] = 9732, + [9964] = 9689, + [9965] = 9679, + [9966] = 9909, + [9967] = 9681, + [9968] = 9682, + [9969] = 9688, + [9970] = 9692, + [9971] = 9727, + [9972] = 9700, + [9973] = 9701, + [9974] = 9702, + [9975] = 9704, + [9976] = 9687, [9977] = 9699, [9978] = 9730, - [9979] = 9914, - [9980] = 9732, - [9981] = 9682, - [9982] = 9982, - [9983] = 9670, - [9984] = 9696, - [9985] = 9671, - [9986] = 9675, - [9987] = 9676, - [9988] = 9988, - [9989] = 9670, - [9990] = 9671, + [9979] = 9909, + [9980] = 9727, + [9981] = 9670, + [9982] = 9699, + [9983] = 9730, + [9984] = 9915, + [9985] = 9732, + [9986] = 9682, + [9987] = 9987, + [9988] = 9670, + [9989] = 9696, + [9990] = 9909, [9991] = 9671, [9992] = 9675, - [9993] = 9674, - [9994] = 9675, - [9995] = 9676, - [9996] = 9727, - [9997] = 9997, - [9998] = 9708, - [9999] = 2633, - [10000] = 9710, - [10001] = 9699, - [10002] = 9452, - [10003] = 9732, - [10004] = 9676, - [10005] = 9670, - [10006] = 2595, - [10007] = 9730, - [10008] = 9678, - [10009] = 9711, - [10010] = 9711, - [10011] = 9801, - [10012] = 9708, - [10013] = 9674, - [10014] = 10014, - [10015] = 9678, - [10016] = 9710, - [10017] = 9681, - [10018] = 9680, - [10019] = 10019, - [10020] = 9682, - [10021] = 9936, - [10022] = 9668, - [10023] = 9688, - [10024] = 9689, - [10025] = 9691, - [10026] = 9693, - [10027] = 2616, - [10028] = 9694, - [10029] = 9671, - [10030] = 2620, - [10031] = 2639, - [10032] = 2655, - [10033] = 9702, - [10034] = 9947, - [10035] = 2658, - [10036] = 2661, - [10037] = 9679, - [10038] = 9681, - [10039] = 9682, - [10040] = 2662, - [10041] = 9688, - [10042] = 9727, - [10043] = 9692, - [10044] = 9700, - [10045] = 2731, - [10046] = 9701, - [10047] = 9678, - [10048] = 9702, - [10049] = 9704, - [10050] = 9687, - [10051] = 9699, - [10052] = 9675, + [9993] = 9676, + [9994] = 9994, + [9995] = 9670, + [9996] = 9671, + [9997] = 9671, + [9998] = 9909, + [9999] = 9675, + [10000] = 9674, + [10001] = 9675, + [10002] = 9676, + [10003] = 9727, + [10004] = 10004, + [10005] = 9708, + [10006] = 2633, + [10007] = 9710, + [10008] = 9699, + [10009] = 9452, + [10010] = 9732, + [10011] = 9676, + [10012] = 9670, + [10013] = 9909, + [10014] = 2595, + [10015] = 9730, + [10016] = 9678, + [10017] = 9711, + [10018] = 9711, + [10019] = 9801, + [10020] = 9708, + [10021] = 9674, + [10022] = 10022, + [10023] = 9678, + [10024] = 9710, + [10025] = 9681, + [10026] = 9680, + [10027] = 10027, + [10028] = 9682, + [10029] = 9909, + [10030] = 9938, + [10031] = 9668, + [10032] = 9688, + [10033] = 9689, + [10034] = 9691, + [10035] = 9909, + [10036] = 9693, + [10037] = 2616, + [10038] = 9694, + [10039] = 9671, + [10040] = 2620, + [10041] = 9909, + [10042] = 2639, + [10043] = 2655, + [10044] = 9702, + [10045] = 9949, + [10046] = 2658, + [10047] = 2661, + [10048] = 9679, + [10049] = 9681, + [10050] = 9682, + [10051] = 2662, + [10052] = 9688, [10053] = 9727, - [10054] = 10054, - [10055] = 9699, - [10056] = 9732, - [10057] = 9730, - [10058] = 9694, - [10059] = 9676, - [10060] = 10060, - [10061] = 9670, - [10062] = 10062, - [10063] = 9671, - [10064] = 2699, - [10065] = 9809, - [10066] = 9675, - [10067] = 9676, - [10068] = 9681, - [10069] = 9708, - [10070] = 10070, - [10071] = 9682, - [10072] = 9710, + [10054] = 9692, + [10055] = 9909, + [10056] = 9700, + [10057] = 2731, + [10058] = 9701, + [10059] = 9678, + [10060] = 9702, + [10061] = 9704, + [10062] = 9687, + [10063] = 9699, + [10064] = 9675, + [10065] = 9727, + [10066] = 10066, + [10067] = 9699, + [10068] = 9732, + [10069] = 9909, + [10070] = 9730, + [10071] = 9694, + [10072] = 9676, [10073] = 10073, - [10074] = 9688, - [10075] = 9670, - [10076] = 2711, - [10077] = 9702, - [10078] = 10078, - [10079] = 9711, - [10080] = 9727, - [10081] = 2714, - [10082] = 2717, - [10083] = 9698, - [10084] = 9680, - [10085] = 9699, - [10086] = 9708, - [10087] = 9710, - [10088] = 9688, - [10089] = 2718, - [10090] = 2732, - [10091] = 9711, - [10092] = 9674, - [10093] = 9698, - [10094] = 2569, - [10095] = 2582, - [10096] = 9674, - [10097] = 9678, - [10098] = 10098, - [10099] = 9711, - [10100] = 10100, - [10101] = 9680, - [10102] = 2638, - [10103] = 9674, - [10104] = 9674, - [10105] = 9678, - [10106] = 9668, - [10107] = 9680, - [10108] = 10108, - [10109] = 9678, - [10110] = 9671, - [10111] = 9668, - [10112] = 9691, - [10113] = 9689, - [10114] = 9689, - [10115] = 9679, - [10116] = 9681, - [10117] = 9691, - [10118] = 9682, - [10119] = 2742, - [10120] = 9693, - [10121] = 9694, - [10122] = 9675, - [10123] = 9688, - [10124] = 9691, - [10125] = 10125, - [10126] = 9680, - [10127] = 9702, - [10128] = 9680, - [10129] = 9727, - [10130] = 9699, - [10131] = 9675, - [10132] = 9809, - [10133] = 9668, - [10134] = 9668, - [10135] = 9681, - [10136] = 9689, - [10137] = 9679, - [10138] = 9681, - [10139] = 9682, - [10140] = 9693, - [10141] = 9688, - [10142] = 9681, - [10143] = 9689, - [10144] = 9682, - [10145] = 10145, - [10146] = 9702, - [10147] = 9688, - [10148] = 9727, - [10149] = 9699, - [10150] = 9692, - [10151] = 9691, - [10152] = 9693, + [10074] = 9670, + [10075] = 10075, + [10076] = 9671, + [10077] = 2699, + [10078] = 9809, + [10079] = 9675, + [10080] = 9676, + [10081] = 9681, + [10082] = 9708, + [10083] = 10083, + [10084] = 9682, + [10085] = 9710, + [10086] = 10086, + [10087] = 9688, + [10088] = 9670, + [10089] = 2711, + [10090] = 9702, + [10091] = 10091, + [10092] = 9711, + [10093] = 9727, + [10094] = 2714, + [10095] = 2717, + [10096] = 9698, + [10097] = 9680, + [10098] = 9699, + [10099] = 9708, + [10100] = 9710, + [10101] = 9688, + [10102] = 2718, + [10103] = 2732, + [10104] = 9711, + [10105] = 9674, + [10106] = 9698, + [10107] = 2569, + [10108] = 2582, + [10109] = 9674, + [10110] = 9678, + [10111] = 10111, + [10112] = 9711, + [10113] = 10113, + [10114] = 9680, + [10115] = 2638, + [10116] = 9674, + [10117] = 9674, + [10118] = 9678, + [10119] = 9668, + [10120] = 9680, + [10121] = 10121, + [10122] = 9678, + [10123] = 9671, + [10124] = 9668, + [10125] = 9691, + [10126] = 9689, + [10127] = 9689, + [10128] = 9679, + [10129] = 9681, + [10130] = 9691, + [10131] = 9682, + [10132] = 2742, + [10133] = 9693, + [10134] = 9694, + [10135] = 9675, + [10136] = 9688, + [10137] = 9691, + [10138] = 10138, + [10139] = 9680, + [10140] = 9702, + [10141] = 9680, + [10142] = 9727, + [10143] = 9699, + [10144] = 9675, + [10145] = 9809, + [10146] = 9668, + [10147] = 9668, + [10148] = 9681, + [10149] = 9689, + [10150] = 9679, + [10151] = 9681, + [10152] = 9682, [10153] = 9693, - [10154] = 9700, - [10155] = 9701, - [10156] = 9702, - [10157] = 9704, - [10158] = 9801, - [10159] = 9694, - [10160] = 9690, - [10161] = 9687, - [10162] = 9795, - [10163] = 9668, - [10164] = 9681, - [10165] = 9692, - [10166] = 9727, - [10167] = 9699, - [10168] = 9682, - [10169] = 2759, - [10170] = 9730, - [10171] = 9688, - [10172] = 2767, - [10173] = 9732, - [10174] = 2544, - [10175] = 2545, - [10176] = 2546, - [10177] = 2547, - [10178] = 2549, - [10179] = 2550, - [10180] = 9670, - [10181] = 2551, - [10182] = 2553, - [10183] = 2554, - [10184] = 9671, - [10185] = 9675, - [10186] = 9676, - [10187] = 9676, - [10188] = 9679, - [10189] = 9682, - [10190] = 9681, - [10191] = 9682, - [10192] = 9688, - [10193] = 9692, - [10194] = 9936, - [10195] = 9702, - [10196] = 9700, - [10197] = 9727, - [10198] = 9699, - [10199] = 9701, - [10200] = 9702, - [10201] = 10201, - [10202] = 9704, - [10203] = 9708, - [10204] = 10204, - [10205] = 9710, - [10206] = 9687, - [10207] = 9694, - [10208] = 10208, - [10209] = 10209, - [10210] = 9691, - [10211] = 10211, - [10212] = 9711, - [10213] = 10213, - [10214] = 9711, - [10215] = 9727, - [10216] = 10216, - [10217] = 9699, - [10218] = 10218, - [10219] = 9674, - [10220] = 9700, - [10221] = 9678, - [10222] = 9730, - [10223] = 9680, - [10224] = 9676, - [10225] = 9668, - [10226] = 9681, - [10227] = 9689, - [10228] = 9691, - [10229] = 9693, - [10230] = 9694, - [10231] = 9732, - [10232] = 9689, - [10233] = 9682, - [10234] = 9688, - [10235] = 10235, - [10236] = 9702, - [10237] = 9679, - [10238] = 9708, - [10239] = 9678, - [10240] = 9681, - [10241] = 9682, - [10242] = 9688, - [10243] = 9708, - [10244] = 9678, - [10245] = 9692, - [10246] = 9700, - [10247] = 9670, - [10248] = 9701, - [10249] = 9670, - [10250] = 9708, - [10251] = 9702, + [10154] = 9688, + [10155] = 9681, + [10156] = 9689, + [10157] = 9682, + [10158] = 10158, + [10159] = 9702, + [10160] = 9688, + [10161] = 9727, + [10162] = 9699, + [10163] = 9692, + [10164] = 9691, + [10165] = 9693, + [10166] = 9693, + [10167] = 9700, + [10168] = 9701, + [10169] = 9702, + [10170] = 9704, + [10171] = 9801, + [10172] = 9694, + [10173] = 9690, + [10174] = 9687, + [10175] = 9795, + [10176] = 9668, + [10177] = 9681, + [10178] = 9692, + [10179] = 9727, + [10180] = 9699, + [10181] = 9682, + [10182] = 2759, + [10183] = 9730, + [10184] = 9688, + [10185] = 2767, + [10186] = 9732, + [10187] = 2544, + [10188] = 2545, + [10189] = 2546, + [10190] = 2547, + [10191] = 2549, + [10192] = 2550, + [10193] = 9670, + [10194] = 2551, + [10195] = 2553, + [10196] = 2554, + [10197] = 9671, + [10198] = 9675, + [10199] = 9676, + [10200] = 9676, + [10201] = 9679, + [10202] = 9682, + [10203] = 9681, + [10204] = 9682, + [10205] = 9688, + [10206] = 9692, + [10207] = 9938, + [10208] = 9702, + [10209] = 9700, + [10210] = 9727, + [10211] = 9699, + [10212] = 9701, + [10213] = 9702, + [10214] = 10214, + [10215] = 9704, + [10216] = 9708, + [10217] = 10217, + [10218] = 9710, + [10219] = 9687, + [10220] = 9694, + [10221] = 10221, + [10222] = 10222, + [10223] = 9691, + [10224] = 10224, + [10225] = 9711, + [10226] = 10226, + [10227] = 9711, + [10228] = 9727, + [10229] = 10229, + [10230] = 9699, + [10231] = 10231, + [10232] = 9674, + [10233] = 9700, + [10234] = 9678, + [10235] = 9730, + [10236] = 9680, + [10237] = 9676, + [10238] = 9668, + [10239] = 9681, + [10240] = 9689, + [10241] = 9691, + [10242] = 9693, + [10243] = 9694, + [10244] = 9732, + [10245] = 9689, + [10246] = 9682, + [10247] = 9688, + [10248] = 10248, + [10249] = 9702, + [10250] = 9679, + [10251] = 9708, [10252] = 9678, - [10253] = 9704, - [10254] = 9687, - [10255] = 9708, - [10256] = 9678, - [10257] = 9708, - [10258] = 9678, - [10259] = 9947, - [10260] = 9727, - [10261] = 9727, - [10262] = 9699, - [10263] = 9730, - [10264] = 9732, - [10265] = 9699, - [10266] = 9671, - [10267] = 9909, - [10268] = 9670, - [10269] = 9690, - [10270] = 9795, - [10271] = 9694, - [10272] = 9671, - [10273] = 9675, - [10274] = 9708, - [10275] = 9676, - [10276] = 9675, - [10277] = 9691, - [10278] = 9676, - [10279] = 9679, - [10280] = 9710, - [10281] = 9681, - [10282] = 9682, - [10283] = 9704, - [10284] = 9688, - [10285] = 9681, - [10286] = 9708, - [10287] = 10287, - [10288] = 9710, - [10289] = 9682, - [10290] = 9702, - [10291] = 9708, - [10292] = 9694, + [10253] = 9681, + [10254] = 9682, + [10255] = 9688, + [10256] = 9708, + [10257] = 9678, + [10258] = 9692, + [10259] = 9700, + [10260] = 9670, + [10261] = 9701, + [10262] = 9670, + [10263] = 9708, + [10264] = 9702, + [10265] = 9678, + [10266] = 9704, + [10267] = 9687, + [10268] = 9708, + [10269] = 9678, + [10270] = 9708, + [10271] = 9678, + [10272] = 9949, + [10273] = 9727, + [10274] = 9727, + [10275] = 9699, + [10276] = 9730, + [10277] = 9732, + [10278] = 9699, + [10279] = 9671, + [10280] = 9910, + [10281] = 9670, + [10282] = 9690, + [10283] = 9795, + [10284] = 9694, + [10285] = 9671, + [10286] = 9675, + [10287] = 9708, + [10288] = 9676, + [10289] = 9675, + [10290] = 9691, + [10291] = 9676, + [10292] = 9679, [10293] = 9710, - [10294] = 9687, - [10295] = 9913, - [10296] = 9673, - [10297] = 10297, - [10298] = 2631, - [10299] = 9727, - [10300] = 9688, - [10301] = 9699, - [10302] = 9693, - [10303] = 9693, - [10304] = 9692, - [10305] = 9688, - [10306] = 9668, - [10307] = 9681, - [10308] = 9682, - [10309] = 10309, - [10310] = 9688, - [10311] = 9700, - [10312] = 9702, - [10313] = 9692, - [10314] = 9711, - [10315] = 9727, - [10316] = 9701, - [10317] = 9699, - [10318] = 9399, - [10319] = 9702, - [10320] = 9710, - [10321] = 9704, + [10294] = 9681, + [10295] = 9682, + [10296] = 9704, + [10297] = 9688, + [10298] = 9681, + [10299] = 9708, + [10300] = 10300, + [10301] = 9710, + [10302] = 9682, + [10303] = 9702, + [10304] = 9708, + [10305] = 9694, + [10306] = 9710, + [10307] = 9687, + [10308] = 9914, + [10309] = 9673, + [10310] = 10310, + [10311] = 2631, + [10312] = 9727, + [10313] = 9688, + [10314] = 9699, + [10315] = 9693, + [10316] = 9693, + [10317] = 9692, + [10318] = 9688, + [10319] = 9668, + [10320] = 9681, + [10321] = 9682, [10322] = 10322, - [10323] = 9681, - [10324] = 9682, - [10325] = 9688, - [10326] = 9702, - [10327] = 9687, + [10323] = 9688, + [10324] = 9700, + [10325] = 9702, + [10326] = 9692, + [10327] = 9711, [10328] = 9727, - [10329] = 9699, - [10330] = 9909, - [10331] = 9910, - [10332] = 9700, - [10333] = 9694, - [10334] = 9701, - [10335] = 9913, - [10336] = 9702, - [10337] = 9679, - [10338] = 9382, - [10339] = 9727, - [10340] = 9699, - [10341] = 9730, - [10342] = 9704, - [10343] = 9711, - [10344] = 9674, - [10345] = 9678, - [10346] = 10346, - [10347] = 9680, - [10348] = 9708, - [10349] = 9710, - [10350] = 9668, - [10351] = 9708, - [10352] = 2063, - [10353] = 9689, - [10354] = 9698, - [10355] = 9732, - [10356] = 9691, - [10357] = 9910, - [10358] = 9708, - [10359] = 9710, - [10360] = 9732, - [10361] = 10361, - [10362] = 10362, - [10363] = 10363, - [10364] = 10364, - [10365] = 10365, - [10366] = 10366, - [10367] = 9628, - [10368] = 10363, - [10369] = 10363, - [10370] = 10363, - [10371] = 10363, - [10372] = 2063, - [10373] = 10373, - [10374] = 10363, - [10375] = 10363, - [10376] = 10363, - [10377] = 10363, - [10378] = 10378, - [10379] = 10363, - [10380] = 10363, - [10381] = 10363, - [10382] = 10363, - [10383] = 10363, - [10384] = 10363, - [10385] = 10363, - [10386] = 10363, - [10387] = 10363, - [10388] = 10363, - [10389] = 10363, + [10329] = 9701, + [10330] = 9699, + [10331] = 9399, + [10332] = 9702, + [10333] = 9710, + [10334] = 9704, + [10335] = 10335, + [10336] = 9681, + [10337] = 9682, + [10338] = 9688, + [10339] = 9702, + [10340] = 9687, + [10341] = 9727, + [10342] = 9699, + [10343] = 9909, + [10344] = 9910, + [10345] = 9911, + [10346] = 9700, + [10347] = 9694, + [10348] = 9701, + [10349] = 9914, + [10350] = 9702, + [10351] = 9679, + [10352] = 9382, + [10353] = 9727, + [10354] = 9699, + [10355] = 9730, + [10356] = 9704, + [10357] = 9711, + [10358] = 9674, + [10359] = 9678, + [10360] = 10360, + [10361] = 9680, + [10362] = 9708, + [10363] = 9710, + [10364] = 9668, + [10365] = 9708, + [10366] = 2063, + [10367] = 9689, + [10368] = 9698, + [10369] = 9732, + [10370] = 9691, + [10371] = 9911, + [10372] = 9708, + [10373] = 9710, + [10374] = 9732, + [10375] = 10375, + [10376] = 10376, + [10377] = 10376, + [10378] = 10376, + [10379] = 10376, + [10380] = 10376, + [10381] = 10376, + [10382] = 10376, + [10383] = 10376, + [10384] = 10376, + [10385] = 10376, + [10386] = 10376, + [10387] = 10376, + [10388] = 10376, + [10389] = 10376, [10390] = 10390, - [10391] = 10363, - [10392] = 10363, - [10393] = 10363, + [10391] = 10391, + [10392] = 10392, + [10393] = 10393, [10394] = 10394, [10395] = 10395, - [10396] = 10394, - [10397] = 10363, - [10398] = 10363, - [10399] = 10390, - [10400] = 10363, - [10401] = 10401, - [10402] = 10402, - [10403] = 10363, - [10404] = 10404, - [10405] = 10366, + [10396] = 10396, + [10397] = 10376, + [10398] = 10394, + [10399] = 10394, + [10400] = 10392, + [10401] = 10394, + [10402] = 10394, + [10403] = 10376, + [10404] = 2574, + [10405] = 9628, [10406] = 10406, - [10407] = 10366, - [10408] = 10408, - [10409] = 10390, - [10410] = 10410, + [10407] = 10407, + [10408] = 10376, + [10409] = 10409, + [10410] = 2063, [10411] = 10411, - [10412] = 10412, + [10412] = 2063, [10413] = 10413, - [10414] = 10414, - [10415] = 10402, - [10416] = 10394, - [10417] = 10366, - [10418] = 10418, - [10419] = 10363, + [10414] = 10376, + [10415] = 10415, + [10416] = 10392, + [10417] = 10376, + [10418] = 10396, + [10419] = 10376, [10420] = 10420, - [10421] = 10363, - [10422] = 2574, - [10423] = 10390, - [10424] = 10390, - [10425] = 10425, - [10426] = 10363, + [10421] = 10421, + [10422] = 10422, + [10423] = 10394, + [10424] = 10424, + [10425] = 10391, + [10426] = 10391, [10427] = 10427, - [10428] = 10366, - [10429] = 10429, - [10430] = 10363, - [10431] = 10366, - [10432] = 10394, - [10433] = 10394, - [10434] = 10366, + [10428] = 10376, + [10429] = 10376, + [10430] = 10376, + [10431] = 10431, + [10432] = 10376, + [10433] = 10433, + [10434] = 10434, [10435] = 10435, [10436] = 10436, - [10437] = 10394, - [10438] = 10394, + [10437] = 10376, + [10438] = 2588, [10439] = 10394, - [10440] = 10378, - [10441] = 10363, - [10442] = 10366, + [10440] = 10391, + [10441] = 10394, + [10442] = 10391, [10443] = 10443, - [10444] = 2063, - [10445] = 10390, - [10446] = 10363, - [10447] = 10363, - [10448] = 10363, - [10449] = 10449, - [10450] = 10390, - [10451] = 10363, - [10452] = 10363, - [10453] = 2588, - [10454] = 10390, - [10455] = 10366, - [10456] = 10456, - [10457] = 10366, - [10458] = 10366, - [10459] = 10459, - [10460] = 10460, - [10461] = 10378, - [10462] = 10366, - [10463] = 10463, + [10444] = 10376, + [10445] = 10445, + [10446] = 10376, + [10447] = 10376, + [10448] = 10376, + [10449] = 10376, + [10450] = 10450, + [10451] = 10451, + [10452] = 10376, + [10453] = 10391, + [10454] = 10391, + [10455] = 10391, + [10456] = 10394, + [10457] = 10394, + [10458] = 10391, + [10459] = 10376, + [10460] = 10391, + [10461] = 10461, + [10462] = 10391, + [10463] = 10376, [10464] = 10464, - [10465] = 10363, - [10466] = 10466, - [10467] = 10390, - [10468] = 10394, - [10469] = 10390, - [10470] = 10366, - [10471] = 10390, - [10472] = 10363, + [10465] = 10376, + [10466] = 10391, + [10467] = 10376, + [10468] = 10391, + [10469] = 10394, + [10470] = 10470, + [10471] = 10471, + [10472] = 10391, [10473] = 10394, - [10474] = 10394, - [10475] = 10475, - [10476] = 10363, + [10474] = 10474, + [10475] = 10376, + [10476] = 10395, [10477] = 10477, - [10478] = 10402, - [10479] = 10479, - [10480] = 10480, - [10481] = 10460, - [10482] = 10363, - [10483] = 10366, - [10484] = 10418, - [10485] = 10485, - [10486] = 10390, - [10487] = 10366, - [10488] = 10363, + [10478] = 10415, + [10479] = 10376, + [10480] = 10415, + [10481] = 10481, + [10482] = 10482, + [10483] = 10391, + [10484] = 10396, + [10485] = 10376, + [10486] = 10376, + [10487] = 10391, + [10488] = 10394, [10489] = 10394, - [10490] = 10418, - [10491] = 10390, - [10492] = 10460, - [10493] = 10363, - [10494] = 10366, - [10495] = 10363, - [10496] = 10363, - [10497] = 10394, + [10490] = 10376, + [10491] = 10376, + [10492] = 10492, + [10493] = 10394, + [10494] = 10394, + [10495] = 10376, + [10496] = 10376, + [10497] = 10497, [10498] = 10498, [10499] = 10499, - [10500] = 10394, - [10501] = 10363, - [10502] = 10390, - [10503] = 10394, - [10504] = 10363, - [10505] = 10394, - [10506] = 10363, + [10500] = 10376, + [10501] = 10376, + [10502] = 10376, + [10503] = 10376, + [10504] = 10504, + [10505] = 10395, + [10506] = 10376, [10507] = 10507, [10508] = 10508, [10509] = 10509, @@ -15477,7 +15484,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [11665] = 10558, [11666] = 10514, [11667] = 10936, - [11668] = 10365, + [11668] = 10407, [11669] = 10652, [11670] = 10954, [11671] = 10528, @@ -30222,36 +30229,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9906] = {.lex_state = 175, .external_lex_state = 98}, [9907] = {.lex_state = 175, .external_lex_state = 98}, [9908] = {.lex_state = 178, .external_lex_state = 121}, - [9909] = {.lex_state = 175, .external_lex_state = 98}, + [9909] = {.lex_state = 75, .external_lex_state = 122}, [9910] = {.lex_state = 175, .external_lex_state = 98}, - [9911] = {.lex_state = 178, .external_lex_state = 121}, - [9912] = {.lex_state = 175, .external_lex_state = 98}, - [9913] = {.lex_state = 178, .external_lex_state = 98}, - [9914] = {.lex_state = 178, .external_lex_state = 121}, - [9915] = {.lex_state = 166, .external_lex_state = 98}, - [9916] = {.lex_state = 178, .external_lex_state = 121}, - [9917] = {.lex_state = 175, .external_lex_state = 98}, - [9918] = {.lex_state = 178, .external_lex_state = 98}, - [9919] = {.lex_state = 175, .external_lex_state = 98}, + [9911] = {.lex_state = 175, .external_lex_state = 98}, + [9912] = {.lex_state = 178, .external_lex_state = 121}, + [9913] = {.lex_state = 175, .external_lex_state = 98}, + [9914] = {.lex_state = 178, .external_lex_state = 98}, + [9915] = {.lex_state = 178, .external_lex_state = 121}, + [9916] = {.lex_state = 166, .external_lex_state = 98}, + [9917] = {.lex_state = 178, .external_lex_state = 121}, + [9918] = {.lex_state = 175, .external_lex_state = 98}, + [9919] = {.lex_state = 178, .external_lex_state = 98}, [9920] = {.lex_state = 175, .external_lex_state = 98}, [9921] = {.lex_state = 175, .external_lex_state = 98}, [9922] = {.lex_state = 175, .external_lex_state = 98}, - [9923] = {.lex_state = 178, .external_lex_state = 121}, - [9924] = {.lex_state = 175, .external_lex_state = 98}, + [9923] = {.lex_state = 175, .external_lex_state = 98}, + [9924] = {.lex_state = 178, .external_lex_state = 121}, [9925] = {.lex_state = 175, .external_lex_state = 98}, - [9926] = {.lex_state = 178, .external_lex_state = 121}, - [9927] = {.lex_state = 175, .external_lex_state = 98}, - [9928] = {.lex_state = 178, .external_lex_state = 121}, - [9929] = {.lex_state = 175, .external_lex_state = 98}, - [9930] = {.lex_state = 178, .external_lex_state = 121}, - [9931] = {.lex_state = 175, .external_lex_state = 98}, - [9932] = {.lex_state = 178, .external_lex_state = 121}, - [9933] = {.lex_state = 175, .external_lex_state = 98}, + [9926] = {.lex_state = 175, .external_lex_state = 98}, + [9927] = {.lex_state = 178, .external_lex_state = 121}, + [9928] = {.lex_state = 175, .external_lex_state = 98}, + [9929] = {.lex_state = 178, .external_lex_state = 121}, + [9930] = {.lex_state = 175, .external_lex_state = 98}, + [9931] = {.lex_state = 178, .external_lex_state = 121}, + [9932] = {.lex_state = 175, .external_lex_state = 98}, + [9933] = {.lex_state = 178, .external_lex_state = 121}, [9934] = {.lex_state = 175, .external_lex_state = 98}, - [9935] = {.lex_state = 175, .external_lex_state = 98}, - [9936] = {.lex_state = 178, .external_lex_state = 121}, + [9935] = {.lex_state = 75, .external_lex_state = 122}, + [9936] = {.lex_state = 175, .external_lex_state = 98}, [9937] = {.lex_state = 175, .external_lex_state = 98}, - [9938] = {.lex_state = 175, .external_lex_state = 98}, + [9938] = {.lex_state = 178, .external_lex_state = 121}, [9939] = {.lex_state = 175, .external_lex_state = 98}, [9940] = {.lex_state = 175, .external_lex_state = 98}, [9941] = {.lex_state = 175, .external_lex_state = 98}, @@ -30259,439 +30266,439 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9943] = {.lex_state = 175, .external_lex_state = 98}, [9944] = {.lex_state = 175, .external_lex_state = 98}, [9945] = {.lex_state = 175, .external_lex_state = 98}, - [9946] = {.lex_state = 178, .external_lex_state = 121}, - [9947] = {.lex_state = 178, .external_lex_state = 121}, - [9948] = {.lex_state = 175, .external_lex_state = 98}, - [9949] = {.lex_state = 175, .external_lex_state = 98}, + [9946] = {.lex_state = 175, .external_lex_state = 98}, + [9947] = {.lex_state = 175, .external_lex_state = 98}, + [9948] = {.lex_state = 178, .external_lex_state = 121}, + [9949] = {.lex_state = 178, .external_lex_state = 121}, [9950] = {.lex_state = 175, .external_lex_state = 98}, [9951] = {.lex_state = 175, .external_lex_state = 98}, [9952] = {.lex_state = 175, .external_lex_state = 98}, - [9953] = {.lex_state = 175, .external_lex_state = 98}, - [9954] = {.lex_state = 178, .external_lex_state = 121}, - [9955] = {.lex_state = 178, .external_lex_state = 121}, - [9956] = {.lex_state = 178, .external_lex_state = 121}, - [9957] = {.lex_state = 175, .external_lex_state = 98}, - [9958] = {.lex_state = 175, .external_lex_state = 98}, - [9959] = {.lex_state = 175, .external_lex_state = 98}, - [9960] = {.lex_state = 178, .external_lex_state = 121}, - [9961] = {.lex_state = 178, .external_lex_state = 121}, - [9962] = {.lex_state = 178, .external_lex_state = 98}, - [9963] = {.lex_state = 175, .external_lex_state = 98}, - [9964] = {.lex_state = 175, .external_lex_state = 98}, - [9965] = {.lex_state = 175, .external_lex_state = 98}, - [9966] = {.lex_state = 178, .external_lex_state = 121}, + [9953] = {.lex_state = 75, .external_lex_state = 122}, + [9954] = {.lex_state = 175, .external_lex_state = 98}, + [9955] = {.lex_state = 175, .external_lex_state = 98}, + [9956] = {.lex_state = 175, .external_lex_state = 98}, + [9957] = {.lex_state = 178, .external_lex_state = 121}, + [9958] = {.lex_state = 178, .external_lex_state = 121}, + [9959] = {.lex_state = 178, .external_lex_state = 121}, + [9960] = {.lex_state = 175, .external_lex_state = 98}, + [9961] = {.lex_state = 175, .external_lex_state = 98}, + [9962] = {.lex_state = 175, .external_lex_state = 98}, + [9963] = {.lex_state = 178, .external_lex_state = 121}, + [9964] = {.lex_state = 178, .external_lex_state = 121}, + [9965] = {.lex_state = 178, .external_lex_state = 98}, + [9966] = {.lex_state = 75, .external_lex_state = 122}, [9967] = {.lex_state = 175, .external_lex_state = 98}, - [9968] = {.lex_state = 178, .external_lex_state = 121}, + [9968] = {.lex_state = 175, .external_lex_state = 98}, [9969] = {.lex_state = 175, .external_lex_state = 98}, - [9970] = {.lex_state = 175, .external_lex_state = 98}, - [9971] = {.lex_state = 178, .external_lex_state = 121}, + [9970] = {.lex_state = 178, .external_lex_state = 121}, + [9971] = {.lex_state = 175, .external_lex_state = 98}, [9972] = {.lex_state = 178, .external_lex_state = 121}, [9973] = {.lex_state = 175, .external_lex_state = 98}, - [9974] = {.lex_state = 178, .external_lex_state = 121}, - [9975] = {.lex_state = 175, .external_lex_state = 98}, + [9974] = {.lex_state = 175, .external_lex_state = 98}, + [9975] = {.lex_state = 178, .external_lex_state = 121}, [9976] = {.lex_state = 178, .external_lex_state = 121}, [9977] = {.lex_state = 175, .external_lex_state = 98}, [9978] = {.lex_state = 178, .external_lex_state = 121}, - [9979] = {.lex_state = 178, .external_lex_state = 121}, - [9980] = {.lex_state = 178, .external_lex_state = 121}, - [9981] = {.lex_state = 175, .external_lex_state = 98}, - [9982] = {.lex_state = 178, .external_lex_state = 98}, + [9979] = {.lex_state = 75, .external_lex_state = 122}, + [9980] = {.lex_state = 175, .external_lex_state = 98}, + [9981] = {.lex_state = 178, .external_lex_state = 121}, + [9982] = {.lex_state = 175, .external_lex_state = 98}, [9983] = {.lex_state = 178, .external_lex_state = 121}, [9984] = {.lex_state = 178, .external_lex_state = 121}, [9985] = {.lex_state = 178, .external_lex_state = 121}, - [9986] = {.lex_state = 178, .external_lex_state = 121}, - [9987] = {.lex_state = 178, .external_lex_state = 121}, - [9988] = {.lex_state = 175, .external_lex_state = 98}, + [9986] = {.lex_state = 175, .external_lex_state = 98}, + [9987] = {.lex_state = 178, .external_lex_state = 98}, + [9988] = {.lex_state = 178, .external_lex_state = 121}, [9989] = {.lex_state = 178, .external_lex_state = 121}, - [9990] = {.lex_state = 178, .external_lex_state = 121}, + [9990] = {.lex_state = 75, .external_lex_state = 122}, [9991] = {.lex_state = 178, .external_lex_state = 121}, [9992] = {.lex_state = 178, .external_lex_state = 121}, - [9993] = {.lex_state = 175, .external_lex_state = 98}, - [9994] = {.lex_state = 178, .external_lex_state = 121}, + [9993] = {.lex_state = 178, .external_lex_state = 121}, + [9994] = {.lex_state = 175, .external_lex_state = 98}, [9995] = {.lex_state = 178, .external_lex_state = 121}, - [9996] = {.lex_state = 175, .external_lex_state = 98}, - [9997] = {.lex_state = 175, .external_lex_state = 98}, - [9998] = {.lex_state = 175, .external_lex_state = 98}, - [9999] = {.lex_state = 175, .external_lex_state = 98}, + [9996] = {.lex_state = 178, .external_lex_state = 121}, + [9997] = {.lex_state = 178, .external_lex_state = 121}, + [9998] = {.lex_state = 75, .external_lex_state = 122}, + [9999] = {.lex_state = 178, .external_lex_state = 121}, [10000] = {.lex_state = 175, .external_lex_state = 98}, - [10001] = {.lex_state = 175, .external_lex_state = 98}, - [10002] = {.lex_state = 175, .external_lex_state = 98}, - [10003] = {.lex_state = 178, .external_lex_state = 121}, - [10004] = {.lex_state = 178, .external_lex_state = 121}, - [10005] = {.lex_state = 178, .external_lex_state = 121}, + [10001] = {.lex_state = 178, .external_lex_state = 121}, + [10002] = {.lex_state = 178, .external_lex_state = 121}, + [10003] = {.lex_state = 175, .external_lex_state = 98}, + [10004] = {.lex_state = 175, .external_lex_state = 98}, + [10005] = {.lex_state = 175, .external_lex_state = 98}, [10006] = {.lex_state = 175, .external_lex_state = 98}, - [10007] = {.lex_state = 178, .external_lex_state = 121}, + [10007] = {.lex_state = 175, .external_lex_state = 98}, [10008] = {.lex_state = 175, .external_lex_state = 98}, - [10009] = {.lex_state = 178, .external_lex_state = 121}, + [10009] = {.lex_state = 175, .external_lex_state = 98}, [10010] = {.lex_state = 178, .external_lex_state = 121}, [10011] = {.lex_state = 178, .external_lex_state = 121}, - [10012] = {.lex_state = 175, .external_lex_state = 98}, - [10013] = {.lex_state = 175, .external_lex_state = 98}, + [10012] = {.lex_state = 178, .external_lex_state = 121}, + [10013] = {.lex_state = 75, .external_lex_state = 122}, [10014] = {.lex_state = 175, .external_lex_state = 98}, - [10015] = {.lex_state = 175, .external_lex_state = 98}, + [10015] = {.lex_state = 178, .external_lex_state = 121}, [10016] = {.lex_state = 175, .external_lex_state = 98}, - [10017] = {.lex_state = 175, .external_lex_state = 98}, - [10018] = {.lex_state = 175, .external_lex_state = 98}, - [10019] = {.lex_state = 175, .external_lex_state = 98}, + [10017] = {.lex_state = 178, .external_lex_state = 121}, + [10018] = {.lex_state = 178, .external_lex_state = 121}, + [10019] = {.lex_state = 178, .external_lex_state = 121}, [10020] = {.lex_state = 175, .external_lex_state = 98}, - [10021] = {.lex_state = 178, .external_lex_state = 121}, - [10022] = {.lex_state = 166, .external_lex_state = 98}, + [10021] = {.lex_state = 175, .external_lex_state = 98}, + [10022] = {.lex_state = 175, .external_lex_state = 98}, [10023] = {.lex_state = 175, .external_lex_state = 98}, - [10024] = {.lex_state = 178, .external_lex_state = 121}, + [10024] = {.lex_state = 175, .external_lex_state = 98}, [10025] = {.lex_state = 175, .external_lex_state = 98}, - [10026] = {.lex_state = 178, .external_lex_state = 121}, + [10026] = {.lex_state = 175, .external_lex_state = 98}, [10027] = {.lex_state = 175, .external_lex_state = 98}, - [10028] = {.lex_state = 178, .external_lex_state = 121}, - [10029] = {.lex_state = 178, .external_lex_state = 121}, - [10030] = {.lex_state = 175, .external_lex_state = 98}, - [10031] = {.lex_state = 175, .external_lex_state = 98}, + [10028] = {.lex_state = 175, .external_lex_state = 98}, + [10029] = {.lex_state = 75, .external_lex_state = 122}, + [10030] = {.lex_state = 178, .external_lex_state = 121}, + [10031] = {.lex_state = 166, .external_lex_state = 98}, [10032] = {.lex_state = 175, .external_lex_state = 98}, - [10033] = {.lex_state = 175, .external_lex_state = 98}, - [10034] = {.lex_state = 178, .external_lex_state = 121}, - [10035] = {.lex_state = 175, .external_lex_state = 98}, - [10036] = {.lex_state = 175, .external_lex_state = 98}, - [10037] = {.lex_state = 178, .external_lex_state = 98}, - [10038] = {.lex_state = 175, .external_lex_state = 98}, - [10039] = {.lex_state = 175, .external_lex_state = 98}, + [10033] = {.lex_state = 178, .external_lex_state = 121}, + [10034] = {.lex_state = 175, .external_lex_state = 98}, + [10035] = {.lex_state = 75, .external_lex_state = 122}, + [10036] = {.lex_state = 178, .external_lex_state = 121}, + [10037] = {.lex_state = 175, .external_lex_state = 98}, + [10038] = {.lex_state = 178, .external_lex_state = 121}, + [10039] = {.lex_state = 178, .external_lex_state = 121}, [10040] = {.lex_state = 175, .external_lex_state = 98}, - [10041] = {.lex_state = 175, .external_lex_state = 98}, + [10041] = {.lex_state = 75, .external_lex_state = 122}, [10042] = {.lex_state = 175, .external_lex_state = 98}, - [10043] = {.lex_state = 178, .external_lex_state = 121}, - [10044] = {.lex_state = 178, .external_lex_state = 121}, - [10045] = {.lex_state = 175, .external_lex_state = 98}, + [10043] = {.lex_state = 175, .external_lex_state = 98}, + [10044] = {.lex_state = 175, .external_lex_state = 98}, + [10045] = {.lex_state = 178, .external_lex_state = 121}, [10046] = {.lex_state = 175, .external_lex_state = 98}, [10047] = {.lex_state = 175, .external_lex_state = 98}, - [10048] = {.lex_state = 175, .external_lex_state = 98}, - [10049] = {.lex_state = 178, .external_lex_state = 121}, - [10050] = {.lex_state = 178, .external_lex_state = 121}, + [10048] = {.lex_state = 178, .external_lex_state = 98}, + [10049] = {.lex_state = 175, .external_lex_state = 98}, + [10050] = {.lex_state = 175, .external_lex_state = 98}, [10051] = {.lex_state = 175, .external_lex_state = 98}, - [10052] = {.lex_state = 178, .external_lex_state = 121}, + [10052] = {.lex_state = 175, .external_lex_state = 98}, [10053] = {.lex_state = 175, .external_lex_state = 98}, - [10054] = {.lex_state = 175, .external_lex_state = 98}, - [10055] = {.lex_state = 175, .external_lex_state = 98}, + [10054] = {.lex_state = 178, .external_lex_state = 121}, + [10055] = {.lex_state = 75, .external_lex_state = 122}, [10056] = {.lex_state = 178, .external_lex_state = 121}, - [10057] = {.lex_state = 178, .external_lex_state = 121}, - [10058] = {.lex_state = 178, .external_lex_state = 121}, - [10059] = {.lex_state = 178, .external_lex_state = 121}, + [10057] = {.lex_state = 175, .external_lex_state = 98}, + [10058] = {.lex_state = 175, .external_lex_state = 98}, + [10059] = {.lex_state = 175, .external_lex_state = 98}, [10060] = {.lex_state = 175, .external_lex_state = 98}, [10061] = {.lex_state = 178, .external_lex_state = 121}, - [10062] = {.lex_state = 175, .external_lex_state = 98}, - [10063] = {.lex_state = 178, .external_lex_state = 121}, - [10064] = {.lex_state = 175, .external_lex_state = 98}, - [10065] = {.lex_state = 178, .external_lex_state = 121}, - [10066] = {.lex_state = 178, .external_lex_state = 121}, - [10067] = {.lex_state = 178, .external_lex_state = 121}, - [10068] = {.lex_state = 175, .external_lex_state = 98}, - [10069] = {.lex_state = 175, .external_lex_state = 98}, - [10070] = {.lex_state = 41, .external_lex_state = 98}, - [10071] = {.lex_state = 175, .external_lex_state = 98}, - [10072] = {.lex_state = 175, .external_lex_state = 98}, - [10073] = {.lex_state = 23, .external_lex_state = 98}, - [10074] = {.lex_state = 175, .external_lex_state = 98}, - [10075] = {.lex_state = 178, .external_lex_state = 121}, - [10076] = {.lex_state = 175, .external_lex_state = 98}, + [10062] = {.lex_state = 178, .external_lex_state = 121}, + [10063] = {.lex_state = 175, .external_lex_state = 98}, + [10064] = {.lex_state = 178, .external_lex_state = 121}, + [10065] = {.lex_state = 175, .external_lex_state = 98}, + [10066] = {.lex_state = 175, .external_lex_state = 98}, + [10067] = {.lex_state = 175, .external_lex_state = 98}, + [10068] = {.lex_state = 178, .external_lex_state = 121}, + [10069] = {.lex_state = 75, .external_lex_state = 122}, + [10070] = {.lex_state = 178, .external_lex_state = 121}, + [10071] = {.lex_state = 178, .external_lex_state = 121}, + [10072] = {.lex_state = 178, .external_lex_state = 121}, + [10073] = {.lex_state = 175, .external_lex_state = 98}, + [10074] = {.lex_state = 178, .external_lex_state = 121}, + [10075] = {.lex_state = 175, .external_lex_state = 98}, + [10076] = {.lex_state = 178, .external_lex_state = 121}, [10077] = {.lex_state = 175, .external_lex_state = 98}, - [10078] = {.lex_state = 175, .external_lex_state = 98}, + [10078] = {.lex_state = 178, .external_lex_state = 121}, [10079] = {.lex_state = 178, .external_lex_state = 121}, - [10080] = {.lex_state = 175, .external_lex_state = 98}, + [10080] = {.lex_state = 178, .external_lex_state = 121}, [10081] = {.lex_state = 175, .external_lex_state = 98}, [10082] = {.lex_state = 175, .external_lex_state = 98}, - [10083] = {.lex_state = 173, .external_lex_state = 98}, + [10083] = {.lex_state = 41, .external_lex_state = 98}, [10084] = {.lex_state = 175, .external_lex_state = 98}, [10085] = {.lex_state = 175, .external_lex_state = 98}, - [10086] = {.lex_state = 175, .external_lex_state = 98}, + [10086] = {.lex_state = 23, .external_lex_state = 98}, [10087] = {.lex_state = 175, .external_lex_state = 98}, - [10088] = {.lex_state = 175, .external_lex_state = 98}, + [10088] = {.lex_state = 178, .external_lex_state = 121}, [10089] = {.lex_state = 175, .external_lex_state = 98}, [10090] = {.lex_state = 175, .external_lex_state = 98}, - [10091] = {.lex_state = 178, .external_lex_state = 121}, - [10092] = {.lex_state = 175, .external_lex_state = 98}, - [10093] = {.lex_state = 173, .external_lex_state = 98}, + [10091] = {.lex_state = 175, .external_lex_state = 98}, + [10092] = {.lex_state = 178, .external_lex_state = 121}, + [10093] = {.lex_state = 175, .external_lex_state = 98}, [10094] = {.lex_state = 175, .external_lex_state = 98}, [10095] = {.lex_state = 175, .external_lex_state = 98}, - [10096] = {.lex_state = 175, .external_lex_state = 98}, + [10096] = {.lex_state = 173, .external_lex_state = 98}, [10097] = {.lex_state = 175, .external_lex_state = 98}, - [10098] = {.lex_state = 178, .external_lex_state = 98}, - [10099] = {.lex_state = 178, .external_lex_state = 121}, - [10100] = {.lex_state = 23, .external_lex_state = 98}, + [10098] = {.lex_state = 175, .external_lex_state = 98}, + [10099] = {.lex_state = 175, .external_lex_state = 98}, + [10100] = {.lex_state = 175, .external_lex_state = 98}, [10101] = {.lex_state = 175, .external_lex_state = 98}, [10102] = {.lex_state = 175, .external_lex_state = 98}, [10103] = {.lex_state = 175, .external_lex_state = 98}, - [10104] = {.lex_state = 175, .external_lex_state = 98}, + [10104] = {.lex_state = 178, .external_lex_state = 121}, [10105] = {.lex_state = 175, .external_lex_state = 98}, - [10106] = {.lex_state = 166, .external_lex_state = 98}, + [10106] = {.lex_state = 173, .external_lex_state = 98}, [10107] = {.lex_state = 175, .external_lex_state = 98}, - [10108] = {.lex_state = 41, .external_lex_state = 98}, + [10108] = {.lex_state = 175, .external_lex_state = 98}, [10109] = {.lex_state = 175, .external_lex_state = 98}, - [10110] = {.lex_state = 178, .external_lex_state = 121}, - [10111] = {.lex_state = 166, .external_lex_state = 98}, - [10112] = {.lex_state = 175, .external_lex_state = 98}, - [10113] = {.lex_state = 178, .external_lex_state = 121}, - [10114] = {.lex_state = 178, .external_lex_state = 121}, - [10115] = {.lex_state = 178, .external_lex_state = 98}, + [10110] = {.lex_state = 175, .external_lex_state = 98}, + [10111] = {.lex_state = 178, .external_lex_state = 98}, + [10112] = {.lex_state = 178, .external_lex_state = 121}, + [10113] = {.lex_state = 23, .external_lex_state = 98}, + [10114] = {.lex_state = 175, .external_lex_state = 98}, + [10115] = {.lex_state = 175, .external_lex_state = 98}, [10116] = {.lex_state = 175, .external_lex_state = 98}, [10117] = {.lex_state = 175, .external_lex_state = 98}, [10118] = {.lex_state = 175, .external_lex_state = 98}, - [10119] = {.lex_state = 175, .external_lex_state = 98}, - [10120] = {.lex_state = 178, .external_lex_state = 121}, - [10121] = {.lex_state = 178, .external_lex_state = 121}, - [10122] = {.lex_state = 178, .external_lex_state = 121}, - [10123] = {.lex_state = 175, .external_lex_state = 98}, - [10124] = {.lex_state = 175, .external_lex_state = 98}, + [10119] = {.lex_state = 166, .external_lex_state = 98}, + [10120] = {.lex_state = 175, .external_lex_state = 98}, + [10121] = {.lex_state = 41, .external_lex_state = 98}, + [10122] = {.lex_state = 175, .external_lex_state = 98}, + [10123] = {.lex_state = 178, .external_lex_state = 121}, + [10124] = {.lex_state = 166, .external_lex_state = 98}, [10125] = {.lex_state = 175, .external_lex_state = 98}, - [10126] = {.lex_state = 175, .external_lex_state = 98}, - [10127] = {.lex_state = 175, .external_lex_state = 98}, - [10128] = {.lex_state = 175, .external_lex_state = 98}, + [10126] = {.lex_state = 178, .external_lex_state = 121}, + [10127] = {.lex_state = 178, .external_lex_state = 121}, + [10128] = {.lex_state = 178, .external_lex_state = 98}, [10129] = {.lex_state = 175, .external_lex_state = 98}, [10130] = {.lex_state = 175, .external_lex_state = 98}, - [10131] = {.lex_state = 178, .external_lex_state = 121}, - [10132] = {.lex_state = 178, .external_lex_state = 121}, - [10133] = {.lex_state = 166, .external_lex_state = 98}, - [10134] = {.lex_state = 166, .external_lex_state = 98}, - [10135] = {.lex_state = 175, .external_lex_state = 98}, - [10136] = {.lex_state = 178, .external_lex_state = 121}, - [10137] = {.lex_state = 178, .external_lex_state = 98}, + [10131] = {.lex_state = 175, .external_lex_state = 98}, + [10132] = {.lex_state = 175, .external_lex_state = 98}, + [10133] = {.lex_state = 178, .external_lex_state = 121}, + [10134] = {.lex_state = 178, .external_lex_state = 121}, + [10135] = {.lex_state = 178, .external_lex_state = 121}, + [10136] = {.lex_state = 175, .external_lex_state = 98}, + [10137] = {.lex_state = 175, .external_lex_state = 98}, [10138] = {.lex_state = 175, .external_lex_state = 98}, [10139] = {.lex_state = 175, .external_lex_state = 98}, - [10140] = {.lex_state = 178, .external_lex_state = 121}, + [10140] = {.lex_state = 175, .external_lex_state = 98}, [10141] = {.lex_state = 175, .external_lex_state = 98}, [10142] = {.lex_state = 175, .external_lex_state = 98}, - [10143] = {.lex_state = 178, .external_lex_state = 121}, - [10144] = {.lex_state = 175, .external_lex_state = 98}, - [10145] = {.lex_state = 178, .external_lex_state = 98}, - [10146] = {.lex_state = 175, .external_lex_state = 98}, - [10147] = {.lex_state = 175, .external_lex_state = 98}, + [10143] = {.lex_state = 175, .external_lex_state = 98}, + [10144] = {.lex_state = 178, .external_lex_state = 121}, + [10145] = {.lex_state = 178, .external_lex_state = 121}, + [10146] = {.lex_state = 166, .external_lex_state = 98}, + [10147] = {.lex_state = 166, .external_lex_state = 98}, [10148] = {.lex_state = 175, .external_lex_state = 98}, - [10149] = {.lex_state = 175, .external_lex_state = 98}, - [10150] = {.lex_state = 178, .external_lex_state = 121}, + [10149] = {.lex_state = 178, .external_lex_state = 121}, + [10150] = {.lex_state = 178, .external_lex_state = 98}, [10151] = {.lex_state = 175, .external_lex_state = 98}, - [10152] = {.lex_state = 178, .external_lex_state = 121}, + [10152] = {.lex_state = 175, .external_lex_state = 98}, [10153] = {.lex_state = 178, .external_lex_state = 121}, - [10154] = {.lex_state = 178, .external_lex_state = 121}, + [10154] = {.lex_state = 175, .external_lex_state = 98}, [10155] = {.lex_state = 175, .external_lex_state = 98}, - [10156] = {.lex_state = 175, .external_lex_state = 98}, - [10157] = {.lex_state = 178, .external_lex_state = 121}, - [10158] = {.lex_state = 178, .external_lex_state = 121}, - [10159] = {.lex_state = 178, .external_lex_state = 121}, + [10156] = {.lex_state = 178, .external_lex_state = 121}, + [10157] = {.lex_state = 175, .external_lex_state = 98}, + [10158] = {.lex_state = 178, .external_lex_state = 98}, + [10159] = {.lex_state = 175, .external_lex_state = 98}, [10160] = {.lex_state = 175, .external_lex_state = 98}, - [10161] = {.lex_state = 178, .external_lex_state = 121}, + [10161] = {.lex_state = 175, .external_lex_state = 98}, [10162] = {.lex_state = 175, .external_lex_state = 98}, - [10163] = {.lex_state = 166, .external_lex_state = 98}, + [10163] = {.lex_state = 178, .external_lex_state = 121}, [10164] = {.lex_state = 175, .external_lex_state = 98}, [10165] = {.lex_state = 178, .external_lex_state = 121}, - [10166] = {.lex_state = 175, .external_lex_state = 98}, - [10167] = {.lex_state = 175, .external_lex_state = 98}, + [10166] = {.lex_state = 178, .external_lex_state = 121}, + [10167] = {.lex_state = 178, .external_lex_state = 121}, [10168] = {.lex_state = 175, .external_lex_state = 98}, [10169] = {.lex_state = 175, .external_lex_state = 98}, [10170] = {.lex_state = 178, .external_lex_state = 121}, - [10171] = {.lex_state = 175, .external_lex_state = 98}, - [10172] = {.lex_state = 175, .external_lex_state = 98}, - [10173] = {.lex_state = 178, .external_lex_state = 121}, - [10174] = {.lex_state = 175, .external_lex_state = 98}, + [10171] = {.lex_state = 178, .external_lex_state = 121}, + [10172] = {.lex_state = 178, .external_lex_state = 121}, + [10173] = {.lex_state = 175, .external_lex_state = 98}, + [10174] = {.lex_state = 178, .external_lex_state = 121}, [10175] = {.lex_state = 175, .external_lex_state = 98}, - [10176] = {.lex_state = 175, .external_lex_state = 98}, + [10176] = {.lex_state = 166, .external_lex_state = 98}, [10177] = {.lex_state = 175, .external_lex_state = 98}, - [10178] = {.lex_state = 175, .external_lex_state = 98}, + [10178] = {.lex_state = 178, .external_lex_state = 121}, [10179] = {.lex_state = 175, .external_lex_state = 98}, - [10180] = {.lex_state = 178, .external_lex_state = 121}, + [10180] = {.lex_state = 175, .external_lex_state = 98}, [10181] = {.lex_state = 175, .external_lex_state = 98}, [10182] = {.lex_state = 175, .external_lex_state = 98}, - [10183] = {.lex_state = 175, .external_lex_state = 98}, - [10184] = {.lex_state = 178, .external_lex_state = 121}, - [10185] = {.lex_state = 178, .external_lex_state = 121}, + [10183] = {.lex_state = 178, .external_lex_state = 121}, + [10184] = {.lex_state = 175, .external_lex_state = 98}, + [10185] = {.lex_state = 175, .external_lex_state = 98}, [10186] = {.lex_state = 178, .external_lex_state = 121}, - [10187] = {.lex_state = 178, .external_lex_state = 121}, - [10188] = {.lex_state = 178, .external_lex_state = 98}, + [10187] = {.lex_state = 175, .external_lex_state = 98}, + [10188] = {.lex_state = 175, .external_lex_state = 98}, [10189] = {.lex_state = 175, .external_lex_state = 98}, [10190] = {.lex_state = 175, .external_lex_state = 98}, [10191] = {.lex_state = 175, .external_lex_state = 98}, [10192] = {.lex_state = 175, .external_lex_state = 98}, [10193] = {.lex_state = 178, .external_lex_state = 121}, - [10194] = {.lex_state = 178, .external_lex_state = 121}, + [10194] = {.lex_state = 175, .external_lex_state = 98}, [10195] = {.lex_state = 175, .external_lex_state = 98}, - [10196] = {.lex_state = 178, .external_lex_state = 121}, - [10197] = {.lex_state = 175, .external_lex_state = 98}, - [10198] = {.lex_state = 175, .external_lex_state = 98}, - [10199] = {.lex_state = 175, .external_lex_state = 98}, - [10200] = {.lex_state = 175, .external_lex_state = 98}, - [10201] = {.lex_state = 175, .external_lex_state = 98}, - [10202] = {.lex_state = 178, .external_lex_state = 121}, + [10196] = {.lex_state = 175, .external_lex_state = 98}, + [10197] = {.lex_state = 178, .external_lex_state = 121}, + [10198] = {.lex_state = 178, .external_lex_state = 121}, + [10199] = {.lex_state = 178, .external_lex_state = 121}, + [10200] = {.lex_state = 178, .external_lex_state = 121}, + [10201] = {.lex_state = 178, .external_lex_state = 98}, + [10202] = {.lex_state = 175, .external_lex_state = 98}, [10203] = {.lex_state = 175, .external_lex_state = 98}, - [10204] = {.lex_state = 41, .external_lex_state = 98}, + [10204] = {.lex_state = 175, .external_lex_state = 98}, [10205] = {.lex_state = 175, .external_lex_state = 98}, [10206] = {.lex_state = 178, .external_lex_state = 121}, [10207] = {.lex_state = 178, .external_lex_state = 121}, - [10208] = {.lex_state = 23, .external_lex_state = 98}, - [10209] = {.lex_state = 23, .external_lex_state = 98}, + [10208] = {.lex_state = 175, .external_lex_state = 98}, + [10209] = {.lex_state = 178, .external_lex_state = 121}, [10210] = {.lex_state = 175, .external_lex_state = 98}, [10211] = {.lex_state = 175, .external_lex_state = 98}, - [10212] = {.lex_state = 178, .external_lex_state = 121}, + [10212] = {.lex_state = 175, .external_lex_state = 98}, [10213] = {.lex_state = 175, .external_lex_state = 98}, - [10214] = {.lex_state = 178, .external_lex_state = 121}, - [10215] = {.lex_state = 175, .external_lex_state = 98}, - [10216] = {.lex_state = 175, .external_lex_state = 111}, - [10217] = {.lex_state = 175, .external_lex_state = 98}, - [10218] = {.lex_state = 178, .external_lex_state = 98}, - [10219] = {.lex_state = 175, .external_lex_state = 98}, + [10214] = {.lex_state = 175, .external_lex_state = 98}, + [10215] = {.lex_state = 178, .external_lex_state = 121}, + [10216] = {.lex_state = 175, .external_lex_state = 98}, + [10217] = {.lex_state = 41, .external_lex_state = 98}, + [10218] = {.lex_state = 175, .external_lex_state = 98}, + [10219] = {.lex_state = 178, .external_lex_state = 121}, [10220] = {.lex_state = 178, .external_lex_state = 121}, - [10221] = {.lex_state = 175, .external_lex_state = 98}, - [10222] = {.lex_state = 178, .external_lex_state = 121}, + [10221] = {.lex_state = 23, .external_lex_state = 98}, + [10222] = {.lex_state = 23, .external_lex_state = 98}, [10223] = {.lex_state = 175, .external_lex_state = 98}, - [10224] = {.lex_state = 178, .external_lex_state = 121}, - [10225] = {.lex_state = 166, .external_lex_state = 98}, + [10224] = {.lex_state = 175, .external_lex_state = 98}, + [10225] = {.lex_state = 178, .external_lex_state = 121}, [10226] = {.lex_state = 175, .external_lex_state = 98}, [10227] = {.lex_state = 178, .external_lex_state = 121}, [10228] = {.lex_state = 175, .external_lex_state = 98}, - [10229] = {.lex_state = 178, .external_lex_state = 121}, - [10230] = {.lex_state = 178, .external_lex_state = 121}, - [10231] = {.lex_state = 178, .external_lex_state = 121}, - [10232] = {.lex_state = 178, .external_lex_state = 121}, - [10233] = {.lex_state = 175, .external_lex_state = 98}, + [10229] = {.lex_state = 175, .external_lex_state = 111}, + [10230] = {.lex_state = 175, .external_lex_state = 98}, + [10231] = {.lex_state = 178, .external_lex_state = 98}, + [10232] = {.lex_state = 175, .external_lex_state = 98}, + [10233] = {.lex_state = 178, .external_lex_state = 121}, [10234] = {.lex_state = 175, .external_lex_state = 98}, - [10235] = {.lex_state = 175, .external_lex_state = 98}, + [10235] = {.lex_state = 178, .external_lex_state = 121}, [10236] = {.lex_state = 175, .external_lex_state = 98}, - [10237] = {.lex_state = 178, .external_lex_state = 98}, - [10238] = {.lex_state = 175, .external_lex_state = 98}, + [10237] = {.lex_state = 178, .external_lex_state = 121}, + [10238] = {.lex_state = 166, .external_lex_state = 98}, [10239] = {.lex_state = 175, .external_lex_state = 98}, - [10240] = {.lex_state = 175, .external_lex_state = 98}, + [10240] = {.lex_state = 178, .external_lex_state = 121}, [10241] = {.lex_state = 175, .external_lex_state = 98}, - [10242] = {.lex_state = 175, .external_lex_state = 98}, - [10243] = {.lex_state = 175, .external_lex_state = 98}, - [10244] = {.lex_state = 175, .external_lex_state = 98}, + [10242] = {.lex_state = 178, .external_lex_state = 121}, + [10243] = {.lex_state = 178, .external_lex_state = 121}, + [10244] = {.lex_state = 178, .external_lex_state = 121}, [10245] = {.lex_state = 178, .external_lex_state = 121}, - [10246] = {.lex_state = 178, .external_lex_state = 121}, - [10247] = {.lex_state = 178, .external_lex_state = 121}, + [10246] = {.lex_state = 175, .external_lex_state = 98}, + [10247] = {.lex_state = 175, .external_lex_state = 98}, [10248] = {.lex_state = 175, .external_lex_state = 98}, - [10249] = {.lex_state = 178, .external_lex_state = 121}, - [10250] = {.lex_state = 175, .external_lex_state = 98}, + [10249] = {.lex_state = 175, .external_lex_state = 98}, + [10250] = {.lex_state = 178, .external_lex_state = 98}, [10251] = {.lex_state = 175, .external_lex_state = 98}, [10252] = {.lex_state = 175, .external_lex_state = 98}, - [10253] = {.lex_state = 178, .external_lex_state = 121}, - [10254] = {.lex_state = 178, .external_lex_state = 121}, + [10253] = {.lex_state = 175, .external_lex_state = 98}, + [10254] = {.lex_state = 175, .external_lex_state = 98}, [10255] = {.lex_state = 175, .external_lex_state = 98}, [10256] = {.lex_state = 175, .external_lex_state = 98}, [10257] = {.lex_state = 175, .external_lex_state = 98}, - [10258] = {.lex_state = 175, .external_lex_state = 98}, + [10258] = {.lex_state = 178, .external_lex_state = 121}, [10259] = {.lex_state = 178, .external_lex_state = 121}, - [10260] = {.lex_state = 175, .external_lex_state = 98}, + [10260] = {.lex_state = 178, .external_lex_state = 121}, [10261] = {.lex_state = 175, .external_lex_state = 98}, - [10262] = {.lex_state = 175, .external_lex_state = 98}, - [10263] = {.lex_state = 178, .external_lex_state = 121}, - [10264] = {.lex_state = 178, .external_lex_state = 121}, + [10262] = {.lex_state = 178, .external_lex_state = 121}, + [10263] = {.lex_state = 175, .external_lex_state = 98}, + [10264] = {.lex_state = 175, .external_lex_state = 98}, [10265] = {.lex_state = 175, .external_lex_state = 98}, [10266] = {.lex_state = 178, .external_lex_state = 121}, - [10267] = {.lex_state = 175, .external_lex_state = 98}, - [10268] = {.lex_state = 178, .external_lex_state = 121}, + [10267] = {.lex_state = 178, .external_lex_state = 121}, + [10268] = {.lex_state = 175, .external_lex_state = 98}, [10269] = {.lex_state = 175, .external_lex_state = 98}, [10270] = {.lex_state = 175, .external_lex_state = 98}, - [10271] = {.lex_state = 178, .external_lex_state = 121}, + [10271] = {.lex_state = 175, .external_lex_state = 98}, [10272] = {.lex_state = 178, .external_lex_state = 121}, - [10273] = {.lex_state = 178, .external_lex_state = 121}, + [10273] = {.lex_state = 175, .external_lex_state = 98}, [10274] = {.lex_state = 175, .external_lex_state = 98}, - [10275] = {.lex_state = 178, .external_lex_state = 121}, + [10275] = {.lex_state = 175, .external_lex_state = 98}, [10276] = {.lex_state = 178, .external_lex_state = 121}, - [10277] = {.lex_state = 175, .external_lex_state = 98}, - [10278] = {.lex_state = 178, .external_lex_state = 121}, - [10279] = {.lex_state = 178, .external_lex_state = 98}, + [10277] = {.lex_state = 178, .external_lex_state = 121}, + [10278] = {.lex_state = 175, .external_lex_state = 98}, + [10279] = {.lex_state = 178, .external_lex_state = 121}, [10280] = {.lex_state = 175, .external_lex_state = 98}, - [10281] = {.lex_state = 175, .external_lex_state = 98}, + [10281] = {.lex_state = 178, .external_lex_state = 121}, [10282] = {.lex_state = 175, .external_lex_state = 98}, - [10283] = {.lex_state = 178, .external_lex_state = 121}, - [10284] = {.lex_state = 175, .external_lex_state = 98}, - [10285] = {.lex_state = 175, .external_lex_state = 98}, - [10286] = {.lex_state = 175, .external_lex_state = 98}, - [10287] = {.lex_state = 178, .external_lex_state = 98}, - [10288] = {.lex_state = 175, .external_lex_state = 98}, - [10289] = {.lex_state = 175, .external_lex_state = 98}, + [10283] = {.lex_state = 175, .external_lex_state = 98}, + [10284] = {.lex_state = 178, .external_lex_state = 121}, + [10285] = {.lex_state = 178, .external_lex_state = 121}, + [10286] = {.lex_state = 178, .external_lex_state = 121}, + [10287] = {.lex_state = 175, .external_lex_state = 98}, + [10288] = {.lex_state = 178, .external_lex_state = 121}, + [10289] = {.lex_state = 178, .external_lex_state = 121}, [10290] = {.lex_state = 175, .external_lex_state = 98}, - [10291] = {.lex_state = 175, .external_lex_state = 98}, - [10292] = {.lex_state = 178, .external_lex_state = 121}, + [10291] = {.lex_state = 178, .external_lex_state = 121}, + [10292] = {.lex_state = 178, .external_lex_state = 98}, [10293] = {.lex_state = 175, .external_lex_state = 98}, - [10294] = {.lex_state = 178, .external_lex_state = 121}, - [10295] = {.lex_state = 178, .external_lex_state = 98}, + [10294] = {.lex_state = 175, .external_lex_state = 98}, + [10295] = {.lex_state = 175, .external_lex_state = 98}, [10296] = {.lex_state = 178, .external_lex_state = 121}, [10297] = {.lex_state = 175, .external_lex_state = 98}, [10298] = {.lex_state = 175, .external_lex_state = 98}, [10299] = {.lex_state = 175, .external_lex_state = 98}, - [10300] = {.lex_state = 175, .external_lex_state = 98}, + [10300] = {.lex_state = 178, .external_lex_state = 98}, [10301] = {.lex_state = 175, .external_lex_state = 98}, - [10302] = {.lex_state = 178, .external_lex_state = 121}, - [10303] = {.lex_state = 178, .external_lex_state = 121}, - [10304] = {.lex_state = 178, .external_lex_state = 121}, - [10305] = {.lex_state = 175, .external_lex_state = 98}, - [10306] = {.lex_state = 166, .external_lex_state = 98}, - [10307] = {.lex_state = 175, .external_lex_state = 98}, - [10308] = {.lex_state = 175, .external_lex_state = 98}, - [10309] = {.lex_state = 175, .external_lex_state = 98}, + [10302] = {.lex_state = 175, .external_lex_state = 98}, + [10303] = {.lex_state = 175, .external_lex_state = 98}, + [10304] = {.lex_state = 175, .external_lex_state = 98}, + [10305] = {.lex_state = 178, .external_lex_state = 121}, + [10306] = {.lex_state = 175, .external_lex_state = 98}, + [10307] = {.lex_state = 178, .external_lex_state = 121}, + [10308] = {.lex_state = 178, .external_lex_state = 98}, + [10309] = {.lex_state = 178, .external_lex_state = 121}, [10310] = {.lex_state = 175, .external_lex_state = 98}, - [10311] = {.lex_state = 178, .external_lex_state = 121}, + [10311] = {.lex_state = 175, .external_lex_state = 98}, [10312] = {.lex_state = 175, .external_lex_state = 98}, - [10313] = {.lex_state = 178, .external_lex_state = 121}, - [10314] = {.lex_state = 178, .external_lex_state = 121}, - [10315] = {.lex_state = 175, .external_lex_state = 98}, - [10316] = {.lex_state = 175, .external_lex_state = 98}, - [10317] = {.lex_state = 175, .external_lex_state = 98}, + [10313] = {.lex_state = 175, .external_lex_state = 98}, + [10314] = {.lex_state = 175, .external_lex_state = 98}, + [10315] = {.lex_state = 178, .external_lex_state = 121}, + [10316] = {.lex_state = 178, .external_lex_state = 121}, + [10317] = {.lex_state = 178, .external_lex_state = 121}, [10318] = {.lex_state = 175, .external_lex_state = 98}, - [10319] = {.lex_state = 175, .external_lex_state = 98}, + [10319] = {.lex_state = 166, .external_lex_state = 98}, [10320] = {.lex_state = 175, .external_lex_state = 98}, - [10321] = {.lex_state = 178, .external_lex_state = 121}, + [10321] = {.lex_state = 175, .external_lex_state = 98}, [10322] = {.lex_state = 175, .external_lex_state = 98}, [10323] = {.lex_state = 175, .external_lex_state = 98}, - [10324] = {.lex_state = 175, .external_lex_state = 98}, + [10324] = {.lex_state = 178, .external_lex_state = 121}, [10325] = {.lex_state = 175, .external_lex_state = 98}, - [10326] = {.lex_state = 175, .external_lex_state = 98}, + [10326] = {.lex_state = 178, .external_lex_state = 121}, [10327] = {.lex_state = 178, .external_lex_state = 121}, [10328] = {.lex_state = 175, .external_lex_state = 98}, [10329] = {.lex_state = 175, .external_lex_state = 98}, [10330] = {.lex_state = 175, .external_lex_state = 98}, [10331] = {.lex_state = 175, .external_lex_state = 98}, - [10332] = {.lex_state = 178, .external_lex_state = 121}, - [10333] = {.lex_state = 178, .external_lex_state = 121}, - [10334] = {.lex_state = 175, .external_lex_state = 98}, - [10335] = {.lex_state = 178, .external_lex_state = 98}, + [10332] = {.lex_state = 175, .external_lex_state = 98}, + [10333] = {.lex_state = 175, .external_lex_state = 98}, + [10334] = {.lex_state = 178, .external_lex_state = 121}, + [10335] = {.lex_state = 175, .external_lex_state = 98}, [10336] = {.lex_state = 175, .external_lex_state = 98}, - [10337] = {.lex_state = 178, .external_lex_state = 98}, - [10338] = {.lex_state = 166, .external_lex_state = 98}, + [10337] = {.lex_state = 175, .external_lex_state = 98}, + [10338] = {.lex_state = 175, .external_lex_state = 98}, [10339] = {.lex_state = 175, .external_lex_state = 98}, - [10340] = {.lex_state = 175, .external_lex_state = 98}, - [10341] = {.lex_state = 178, .external_lex_state = 121}, - [10342] = {.lex_state = 178, .external_lex_state = 121}, - [10343] = {.lex_state = 178, .external_lex_state = 121}, + [10340] = {.lex_state = 178, .external_lex_state = 121}, + [10341] = {.lex_state = 175, .external_lex_state = 98}, + [10342] = {.lex_state = 175, .external_lex_state = 98}, + [10343] = {.lex_state = 75, .external_lex_state = 122}, [10344] = {.lex_state = 175, .external_lex_state = 98}, [10345] = {.lex_state = 175, .external_lex_state = 98}, - [10346] = {.lex_state = 175, .external_lex_state = 111}, - [10347] = {.lex_state = 175, .external_lex_state = 98}, + [10346] = {.lex_state = 178, .external_lex_state = 121}, + [10347] = {.lex_state = 178, .external_lex_state = 121}, [10348] = {.lex_state = 175, .external_lex_state = 98}, - [10349] = {.lex_state = 175, .external_lex_state = 98}, - [10350] = {.lex_state = 166, .external_lex_state = 98}, - [10351] = {.lex_state = 175, .external_lex_state = 98}, - [10352] = {.lex_state = 41, .external_lex_state = 98}, - [10353] = {.lex_state = 178, .external_lex_state = 121}, - [10354] = {.lex_state = 173, .external_lex_state = 98}, + [10349] = {.lex_state = 178, .external_lex_state = 98}, + [10350] = {.lex_state = 175, .external_lex_state = 98}, + [10351] = {.lex_state = 178, .external_lex_state = 98}, + [10352] = {.lex_state = 166, .external_lex_state = 98}, + [10353] = {.lex_state = 175, .external_lex_state = 98}, + [10354] = {.lex_state = 175, .external_lex_state = 98}, [10355] = {.lex_state = 178, .external_lex_state = 121}, - [10356] = {.lex_state = 175, .external_lex_state = 98}, - [10357] = {.lex_state = 175, .external_lex_state = 98}, + [10356] = {.lex_state = 178, .external_lex_state = 121}, + [10357] = {.lex_state = 178, .external_lex_state = 121}, [10358] = {.lex_state = 175, .external_lex_state = 98}, [10359] = {.lex_state = 175, .external_lex_state = 98}, - [10360] = {.lex_state = 178, .external_lex_state = 121}, + [10360] = {.lex_state = 175, .external_lex_state = 111}, [10361] = {.lex_state = 175, .external_lex_state = 98}, [10362] = {.lex_state = 175, .external_lex_state = 98}, [10363] = {.lex_state = 175, .external_lex_state = 98}, - [10364] = {.lex_state = 175, .external_lex_state = 98}, - [10365] = {.lex_state = 178, .external_lex_state = 121}, - [10366] = {.lex_state = 175, .external_lex_state = 98}, - [10367] = {.lex_state = 166, .external_lex_state = 98}, - [10368] = {.lex_state = 175, .external_lex_state = 98}, - [10369] = {.lex_state = 175, .external_lex_state = 98}, + [10364] = {.lex_state = 166, .external_lex_state = 98}, + [10365] = {.lex_state = 175, .external_lex_state = 98}, + [10366] = {.lex_state = 41, .external_lex_state = 98}, + [10367] = {.lex_state = 178, .external_lex_state = 121}, + [10368] = {.lex_state = 173, .external_lex_state = 98}, + [10369] = {.lex_state = 178, .external_lex_state = 121}, [10370] = {.lex_state = 175, .external_lex_state = 98}, [10371] = {.lex_state = 175, .external_lex_state = 98}, - [10372] = {.lex_state = 175, .external_lex_state = 111}, + [10372] = {.lex_state = 175, .external_lex_state = 98}, [10373] = {.lex_state = 175, .external_lex_state = 98}, - [10374] = {.lex_state = 175, .external_lex_state = 98}, + [10374] = {.lex_state = 178, .external_lex_state = 121}, [10375] = {.lex_state = 175, .external_lex_state = 98}, [10376] = {.lex_state = 175, .external_lex_state = 98}, [10377] = {.lex_state = 175, .external_lex_state = 98}, - [10378] = {.lex_state = 178, .external_lex_state = 98}, + [10378] = {.lex_state = 175, .external_lex_state = 98}, [10379] = {.lex_state = 175, .external_lex_state = 98}, [10380] = {.lex_state = 175, .external_lex_state = 98}, [10381] = {.lex_state = 175, .external_lex_state = 98}, @@ -30703,122 +30710,122 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [10387] = {.lex_state = 175, .external_lex_state = 98}, [10388] = {.lex_state = 175, .external_lex_state = 98}, [10389] = {.lex_state = 175, .external_lex_state = 98}, - [10390] = {.lex_state = 75, .external_lex_state = 98}, + [10390] = {.lex_state = 175, .external_lex_state = 98}, [10391] = {.lex_state = 175, .external_lex_state = 98}, - [10392] = {.lex_state = 175, .external_lex_state = 98}, + [10392] = {.lex_state = 178, .external_lex_state = 98}, [10393] = {.lex_state = 175, .external_lex_state = 98}, [10394] = {.lex_state = 175, .external_lex_state = 98}, - [10395] = {.lex_state = 178, .external_lex_state = 98}, - [10396] = {.lex_state = 175, .external_lex_state = 98}, + [10395] = {.lex_state = 41, .external_lex_state = 98}, + [10396] = {.lex_state = 41, .external_lex_state = 98}, [10397] = {.lex_state = 175, .external_lex_state = 98}, [10398] = {.lex_state = 175, .external_lex_state = 98}, - [10399] = {.lex_state = 75, .external_lex_state = 98}, - [10400] = {.lex_state = 175, .external_lex_state = 98}, + [10399] = {.lex_state = 175, .external_lex_state = 98}, + [10400] = {.lex_state = 178, .external_lex_state = 98}, [10401] = {.lex_state = 175, .external_lex_state = 98}, - [10402] = {.lex_state = 175, .external_lex_state = 122}, + [10402] = {.lex_state = 175, .external_lex_state = 98}, [10403] = {.lex_state = 175, .external_lex_state = 98}, - [10404] = {.lex_state = 175, .external_lex_state = 98}, - [10405] = {.lex_state = 175, .external_lex_state = 98}, + [10404] = {.lex_state = 166, .external_lex_state = 98}, + [10405] = {.lex_state = 166, .external_lex_state = 98}, [10406] = {.lex_state = 175, .external_lex_state = 98}, - [10407] = {.lex_state = 175, .external_lex_state = 98}, + [10407] = {.lex_state = 178, .external_lex_state = 121}, [10408] = {.lex_state = 175, .external_lex_state = 98}, - [10409] = {.lex_state = 75, .external_lex_state = 98}, - [10410] = {.lex_state = 175, .external_lex_state = 98}, + [10409] = {.lex_state = 175, .external_lex_state = 98}, + [10410] = {.lex_state = 178, .external_lex_state = 112}, [10411] = {.lex_state = 175, .external_lex_state = 98}, - [10412] = {.lex_state = 175, .external_lex_state = 120}, + [10412] = {.lex_state = 175, .external_lex_state = 111}, [10413] = {.lex_state = 175, .external_lex_state = 98}, [10414] = {.lex_state = 175, .external_lex_state = 98}, - [10415] = {.lex_state = 175, .external_lex_state = 122}, - [10416] = {.lex_state = 175, .external_lex_state = 98}, + [10415] = {.lex_state = 175, .external_lex_state = 123}, + [10416] = {.lex_state = 178, .external_lex_state = 98}, [10417] = {.lex_state = 175, .external_lex_state = 98}, [10418] = {.lex_state = 41, .external_lex_state = 98}, [10419] = {.lex_state = 175, .external_lex_state = 98}, - [10420] = {.lex_state = 178, .external_lex_state = 98}, + [10420] = {.lex_state = 175, .external_lex_state = 98}, [10421] = {.lex_state = 175, .external_lex_state = 98}, - [10422] = {.lex_state = 166, .external_lex_state = 98}, - [10423] = {.lex_state = 75, .external_lex_state = 98}, - [10424] = {.lex_state = 75, .external_lex_state = 98}, - [10425] = {.lex_state = 178, .external_lex_state = 98}, + [10422] = {.lex_state = 178, .external_lex_state = 98}, + [10423] = {.lex_state = 175, .external_lex_state = 98}, + [10424] = {.lex_state = 178, .external_lex_state = 98}, + [10425] = {.lex_state = 175, .external_lex_state = 98}, [10426] = {.lex_state = 175, .external_lex_state = 98}, - [10427] = {.lex_state = 175, .external_lex_state = 98}, + [10427] = {.lex_state = 178, .external_lex_state = 98}, [10428] = {.lex_state = 175, .external_lex_state = 98}, - [10429] = {.lex_state = 178, .external_lex_state = 98}, + [10429] = {.lex_state = 175, .external_lex_state = 98}, [10430] = {.lex_state = 175, .external_lex_state = 98}, [10431] = {.lex_state = 175, .external_lex_state = 98}, [10432] = {.lex_state = 175, .external_lex_state = 98}, - [10433] = {.lex_state = 175, .external_lex_state = 98}, + [10433] = {.lex_state = 175, .external_lex_state = 120}, [10434] = {.lex_state = 175, .external_lex_state = 98}, [10435] = {.lex_state = 175, .external_lex_state = 98}, [10436] = {.lex_state = 175, .external_lex_state = 98}, [10437] = {.lex_state = 175, .external_lex_state = 98}, - [10438] = {.lex_state = 175, .external_lex_state = 98}, + [10438] = {.lex_state = 166, .external_lex_state = 98}, [10439] = {.lex_state = 175, .external_lex_state = 98}, - [10440] = {.lex_state = 178, .external_lex_state = 98}, + [10440] = {.lex_state = 175, .external_lex_state = 98}, [10441] = {.lex_state = 175, .external_lex_state = 98}, [10442] = {.lex_state = 175, .external_lex_state = 98}, - [10443] = {.lex_state = 175, .external_lex_state = 98}, - [10444] = {.lex_state = 178, .external_lex_state = 112}, - [10445] = {.lex_state = 75, .external_lex_state = 98}, + [10443] = {.lex_state = 178, .external_lex_state = 98}, + [10444] = {.lex_state = 175, .external_lex_state = 98}, + [10445] = {.lex_state = 178, .external_lex_state = 98}, [10446] = {.lex_state = 175, .external_lex_state = 98}, [10447] = {.lex_state = 175, .external_lex_state = 98}, [10448] = {.lex_state = 175, .external_lex_state = 98}, [10449] = {.lex_state = 175, .external_lex_state = 98}, - [10450] = {.lex_state = 75, .external_lex_state = 98}, - [10451] = {.lex_state = 175, .external_lex_state = 98}, + [10450] = {.lex_state = 175, .external_lex_state = 98}, + [10451] = {.lex_state = 178, .external_lex_state = 98}, [10452] = {.lex_state = 175, .external_lex_state = 98}, - [10453] = {.lex_state = 166, .external_lex_state = 98}, - [10454] = {.lex_state = 75, .external_lex_state = 98}, + [10453] = {.lex_state = 175, .external_lex_state = 98}, + [10454] = {.lex_state = 175, .external_lex_state = 98}, [10455] = {.lex_state = 175, .external_lex_state = 98}, - [10456] = {.lex_state = 175, .external_lex_state = 120}, + [10456] = {.lex_state = 175, .external_lex_state = 98}, [10457] = {.lex_state = 175, .external_lex_state = 98}, [10458] = {.lex_state = 175, .external_lex_state = 98}, - [10459] = {.lex_state = 175, .external_lex_state = 120}, - [10460] = {.lex_state = 41, .external_lex_state = 98}, - [10461] = {.lex_state = 178, .external_lex_state = 98}, + [10459] = {.lex_state = 175, .external_lex_state = 98}, + [10460] = {.lex_state = 175, .external_lex_state = 98}, + [10461] = {.lex_state = 175, .external_lex_state = 98}, [10462] = {.lex_state = 175, .external_lex_state = 98}, - [10463] = {.lex_state = 175, .external_lex_state = 120}, + [10463] = {.lex_state = 175, .external_lex_state = 98}, [10464] = {.lex_state = 175, .external_lex_state = 98}, [10465] = {.lex_state = 175, .external_lex_state = 98}, - [10466] = {.lex_state = 178, .external_lex_state = 98}, - [10467] = {.lex_state = 75, .external_lex_state = 98}, + [10466] = {.lex_state = 175, .external_lex_state = 98}, + [10467] = {.lex_state = 175, .external_lex_state = 98}, [10468] = {.lex_state = 175, .external_lex_state = 98}, - [10469] = {.lex_state = 75, .external_lex_state = 98}, + [10469] = {.lex_state = 175, .external_lex_state = 98}, [10470] = {.lex_state = 175, .external_lex_state = 98}, - [10471] = {.lex_state = 75, .external_lex_state = 98}, + [10471] = {.lex_state = 175, .external_lex_state = 120}, [10472] = {.lex_state = 175, .external_lex_state = 98}, [10473] = {.lex_state = 175, .external_lex_state = 98}, - [10474] = {.lex_state = 175, .external_lex_state = 98}, - [10475] = {.lex_state = 178, .external_lex_state = 98}, - [10476] = {.lex_state = 175, .external_lex_state = 98}, - [10477] = {.lex_state = 178, .external_lex_state = 98}, - [10478] = {.lex_state = 175, .external_lex_state = 122}, + [10474] = {.lex_state = 175, .external_lex_state = 120}, + [10475] = {.lex_state = 175, .external_lex_state = 98}, + [10476] = {.lex_state = 41, .external_lex_state = 98}, + [10477] = {.lex_state = 175, .external_lex_state = 98}, + [10478] = {.lex_state = 175, .external_lex_state = 123}, [10479] = {.lex_state = 175, .external_lex_state = 98}, - [10480] = {.lex_state = 175, .external_lex_state = 98}, - [10481] = {.lex_state = 41, .external_lex_state = 98}, - [10482] = {.lex_state = 175, .external_lex_state = 98}, + [10480] = {.lex_state = 175, .external_lex_state = 123}, + [10481] = {.lex_state = 175, .external_lex_state = 120}, + [10482] = {.lex_state = 178, .external_lex_state = 98}, [10483] = {.lex_state = 175, .external_lex_state = 98}, [10484] = {.lex_state = 41, .external_lex_state = 98}, [10485] = {.lex_state = 175, .external_lex_state = 98}, - [10486] = {.lex_state = 75, .external_lex_state = 98}, + [10486] = {.lex_state = 175, .external_lex_state = 98}, [10487] = {.lex_state = 175, .external_lex_state = 98}, [10488] = {.lex_state = 175, .external_lex_state = 98}, [10489] = {.lex_state = 175, .external_lex_state = 98}, - [10490] = {.lex_state = 41, .external_lex_state = 98}, - [10491] = {.lex_state = 75, .external_lex_state = 98}, - [10492] = {.lex_state = 41, .external_lex_state = 98}, + [10490] = {.lex_state = 175, .external_lex_state = 98}, + [10491] = {.lex_state = 175, .external_lex_state = 98}, + [10492] = {.lex_state = 175, .external_lex_state = 98}, [10493] = {.lex_state = 175, .external_lex_state = 98}, [10494] = {.lex_state = 175, .external_lex_state = 98}, [10495] = {.lex_state = 175, .external_lex_state = 98}, [10496] = {.lex_state = 175, .external_lex_state = 98}, - [10497] = {.lex_state = 175, .external_lex_state = 98}, + [10497] = {.lex_state = 178, .external_lex_state = 98}, [10498] = {.lex_state = 175, .external_lex_state = 98}, - [10499] = {.lex_state = 178, .external_lex_state = 98}, + [10499] = {.lex_state = 175, .external_lex_state = 98}, [10500] = {.lex_state = 175, .external_lex_state = 98}, [10501] = {.lex_state = 175, .external_lex_state = 98}, - [10502] = {.lex_state = 75, .external_lex_state = 98}, + [10502] = {.lex_state = 175, .external_lex_state = 98}, [10503] = {.lex_state = 175, .external_lex_state = 98}, [10504] = {.lex_state = 175, .external_lex_state = 98}, - [10505] = {.lex_state = 175, .external_lex_state = 98}, + [10505] = {.lex_state = 41, .external_lex_state = 98}, [10506] = {.lex_state = 175, .external_lex_state = 98}, [10507] = {.lex_state = 175, .external_lex_state = 98}, [10508] = {.lex_state = 178, .external_lex_state = 98}, @@ -31713,7 +31720,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [11397] = {.lex_state = 178, .external_lex_state = 98}, [11398] = {.lex_state = 178, .external_lex_state = 98}, [11399] = {.lex_state = 178, .external_lex_state = 98}, - [11400] = {.lex_state = 175, .external_lex_state = 123}, + [11400] = {.lex_state = 175, .external_lex_state = 124}, [11401] = {.lex_state = 178, .external_lex_state = 98}, [11402] = {.lex_state = 175, .external_lex_state = 98}, [11403] = {.lex_state = 178, .external_lex_state = 98}, @@ -32020,7 +32027,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [11704] = {.lex_state = 178, .external_lex_state = 98}, [11705] = {.lex_state = 175, .external_lex_state = 98}, [11706] = {.lex_state = 175, .external_lex_state = 98}, - [11707] = {.lex_state = 175, .external_lex_state = 123}, + [11707] = {.lex_state = 175, .external_lex_state = 124}, [11708] = {.lex_state = 175, .external_lex_state = 98}, [11709] = {.lex_state = 178, .external_lex_state = 98}, [11710] = {.lex_state = 178, .external_lex_state = 98}, @@ -32034,7 +32041,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [11718] = {.lex_state = 178, .external_lex_state = 98}, [11719] = {.lex_state = 175, .external_lex_state = 98}, [11720] = {.lex_state = 178, .external_lex_state = 98}, - [11721] = {.lex_state = 175, .external_lex_state = 123}, + [11721] = {.lex_state = 175, .external_lex_state = 124}, [11722] = {.lex_state = 175, .external_lex_state = 98}, [11723] = {.lex_state = 178, .external_lex_state = 98}, [11724] = {.lex_state = 178, .external_lex_state = 98}, @@ -32048,7 +32055,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [11732] = {.lex_state = 178, .external_lex_state = 98}, [11733] = {.lex_state = 175, .external_lex_state = 98}, [11734] = {.lex_state = 178, .external_lex_state = 98}, - [11735] = {.lex_state = 175, .external_lex_state = 123}, + [11735] = {.lex_state = 175, .external_lex_state = 124}, [11736] = {.lex_state = 175, .external_lex_state = 98}, [11737] = {.lex_state = 178, .external_lex_state = 98}, [11738] = {.lex_state = 178, .external_lex_state = 98}, @@ -32062,7 +32069,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [11746] = {.lex_state = 178, .external_lex_state = 98}, [11747] = {.lex_state = 178, .external_lex_state = 98}, [11748] = {.lex_state = 178, .external_lex_state = 98}, - [11749] = {.lex_state = 175, .external_lex_state = 123}, + [11749] = {.lex_state = 175, .external_lex_state = 124}, [11750] = {.lex_state = 175, .external_lex_state = 98}, [11751] = {.lex_state = 72, .external_lex_state = 98}, [11752] = {.lex_state = 178, .external_lex_state = 98}, @@ -32076,7 +32083,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [11760] = {.lex_state = 178, .external_lex_state = 98}, [11761] = {.lex_state = 178, .external_lex_state = 98}, [11762] = {.lex_state = 178, .external_lex_state = 98}, - [11763] = {.lex_state = 175, .external_lex_state = 123}, + [11763] = {.lex_state = 175, .external_lex_state = 124}, [11764] = {.lex_state = 175, .external_lex_state = 98}, [11765] = {.lex_state = 178, .external_lex_state = 98}, [11766] = {.lex_state = 175, .external_lex_state = 98}, @@ -32090,7 +32097,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [11774] = {.lex_state = 178, .external_lex_state = 98}, [11775] = {.lex_state = 178, .external_lex_state = 98}, [11776] = {.lex_state = 178, .external_lex_state = 98}, - [11777] = {.lex_state = 175, .external_lex_state = 123}, + [11777] = {.lex_state = 175, .external_lex_state = 124}, [11778] = {.lex_state = 175, .external_lex_state = 98}, [11779] = {.lex_state = 175, .external_lex_state = 98}, [11780] = {.lex_state = 178, .external_lex_state = 98}, @@ -32103,7 +32110,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [11787] = {.lex_state = 178, .external_lex_state = 98}, [11788] = {.lex_state = 175, .external_lex_state = 98}, [11789] = {.lex_state = 175, .external_lex_state = 98}, - [11790] = {.lex_state = 175, .external_lex_state = 123}, + [11790] = {.lex_state = 175, .external_lex_state = 124}, [11791] = {.lex_state = 175, .external_lex_state = 98}, [11792] = {.lex_state = 178, .external_lex_state = 98}, [11793] = {.lex_state = 178, .external_lex_state = 98}, @@ -32117,7 +32124,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [11801] = {.lex_state = 178, .external_lex_state = 98}, [11802] = {.lex_state = 178, .external_lex_state = 98}, [11803] = {.lex_state = 166, .external_lex_state = 98}, - [11804] = {.lex_state = 175, .external_lex_state = 123}, + [11804] = {.lex_state = 175, .external_lex_state = 124}, [11805] = {.lex_state = 175, .external_lex_state = 98}, [11806] = {.lex_state = 175, .external_lex_state = 98}, [11807] = {.lex_state = 178, .external_lex_state = 98}, @@ -32131,7 +32138,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [11815] = {.lex_state = 178, .external_lex_state = 98}, [11816] = {.lex_state = 178, .external_lex_state = 98}, [11817] = {.lex_state = 175, .external_lex_state = 98}, - [11818] = {.lex_state = 175, .external_lex_state = 123}, + [11818] = {.lex_state = 175, .external_lex_state = 124}, [11819] = {.lex_state = 175, .external_lex_state = 98}, [11820] = {.lex_state = 178, .external_lex_state = 98}, [11821] = {.lex_state = 178, .external_lex_state = 98}, @@ -32145,7 +32152,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [11829] = {.lex_state = 178, .external_lex_state = 98}, [11830] = {.lex_state = 178, .external_lex_state = 98}, [11831] = {.lex_state = 175, .external_lex_state = 98}, - [11832] = {.lex_state = 175, .external_lex_state = 123}, + [11832] = {.lex_state = 175, .external_lex_state = 124}, [11833] = {.lex_state = 175, .external_lex_state = 98}, [11834] = {.lex_state = 175, .external_lex_state = 98}, [11835] = {.lex_state = 178, .external_lex_state = 98}, @@ -32159,7 +32166,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [11843] = {.lex_state = 178, .external_lex_state = 98}, [11844] = {.lex_state = 178, .external_lex_state = 98}, [11845] = {.lex_state = 178, .external_lex_state = 98}, - [11846] = {.lex_state = 175, .external_lex_state = 123}, + [11846] = {.lex_state = 175, .external_lex_state = 124}, [11847] = {.lex_state = 175, .external_lex_state = 98}, [11848] = {.lex_state = 178, .external_lex_state = 98}, [11849] = {.lex_state = 178, .external_lex_state = 98}, @@ -32173,7 +32180,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [11857] = {.lex_state = 178, .external_lex_state = 98}, [11858] = {.lex_state = 175, .external_lex_state = 98}, [11859] = {.lex_state = 175, .external_lex_state = 98}, - [11860] = {.lex_state = 175, .external_lex_state = 123}, + [11860] = {.lex_state = 175, .external_lex_state = 124}, [11861] = {.lex_state = 175, .external_lex_state = 98}, [11862] = {.lex_state = 178, .external_lex_state = 98}, [11863] = {.lex_state = 175, .external_lex_state = 98}, @@ -32183,7 +32190,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [11867] = {.lex_state = 178, .external_lex_state = 98}, [11868] = {.lex_state = 72, .external_lex_state = 98}, [11869] = {.lex_state = 175, .external_lex_state = 98}, - [11870] = {.lex_state = 175, .external_lex_state = 123}, + [11870] = {.lex_state = 175, .external_lex_state = 124}, [11871] = {.lex_state = 175, .external_lex_state = 98}, [11872] = {.lex_state = 178, .external_lex_state = 98}, [11873] = {.lex_state = 175, .external_lex_state = 98}, @@ -32191,7 +32198,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [11875] = {.lex_state = 178, .external_lex_state = 98}, [11876] = {.lex_state = 178, .external_lex_state = 98}, [11877] = {.lex_state = 178, .external_lex_state = 98}, - [11878] = {.lex_state = 175, .external_lex_state = 123}, + [11878] = {.lex_state = 175, .external_lex_state = 124}, [11879] = {.lex_state = 175, .external_lex_state = 98}, [11880] = {.lex_state = 175, .external_lex_state = 98}, [11881] = {.lex_state = 175, .external_lex_state = 98}, @@ -32208,7 +32215,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [11892] = {.lex_state = 175, .external_lex_state = 98}, [11893] = {.lex_state = 175, .external_lex_state = 98}, [11894] = {.lex_state = 178, .external_lex_state = 98}, - [11895] = {.lex_state = 175, .external_lex_state = 123}, + [11895] = {.lex_state = 175, .external_lex_state = 124}, [11896] = {.lex_state = 175, .external_lex_state = 98}, [11897] = {.lex_state = 175, .external_lex_state = 98}, [11898] = {.lex_state = 178, .external_lex_state = 98}, @@ -32470,6 +32477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_literal_start] = ACTIONS(1), [sym__delimited_string_contents] = ACTIONS(1), [sym__string_literal_end] = ACTIONS(1), + [sym__char_comment] = ACTIONS(1), [sym__string_percent_literal_start] = ACTIONS(1), [sym__command_percent_literal_start] = ACTIONS(1), [sym__string_array_percent_literal_start] = ACTIONS(1), @@ -32558,7 +32566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -53005,7 +53013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10212), + [sym_else] = STATE(10225), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -53357,7 +53365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10091), + [sym_else] = STATE(10104), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -53709,7 +53717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10079), + [sym_else] = STATE(10092), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -54237,7 +54245,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10009), + [sym_else] = STATE(10017), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -54413,7 +54421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10099), + [sym_else] = STATE(10112), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -54589,7 +54597,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10214), + [sym_else] = STATE(10227), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -54765,7 +54773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10314), + [sym_else] = STATE(10327), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -54941,7 +54949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10343), + [sym_else] = STATE(10357), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -55821,7 +55829,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10010), + [sym_else] = STATE(10018), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -56173,7 +56181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(9932), + [sym_else] = STATE(9933), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -56523,7 +56531,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(9946), + [sym_else] = STATE(9948), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -56873,7 +56881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10024), + [sym_else] = STATE(10033), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -57048,7 +57056,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10113), + [sym_else] = STATE(10126), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -57223,7 +57231,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10114), + [sym_else] = STATE(10127), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -57398,7 +57406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10232), + [sym_else] = STATE(10245), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -57573,7 +57581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10227), + [sym_else] = STATE(10240), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -57748,7 +57756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10136), + [sym_else] = STATE(10149), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -57923,7 +57931,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10353), + [sym_else] = STATE(10367), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -58098,7 +58106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(9961), + [sym_else] = STATE(9964), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -58623,7 +58631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(9916), + [sym_else] = STATE(9917), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -58798,7 +58806,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10143), + [sym_else] = STATE(10156), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -60370,7 +60378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(9976), + [sym_else] = STATE(9981), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -60892,7 +60900,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10140), + [sym_else] = STATE(10153), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -61066,7 +61074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10247), + [sym_else] = STATE(10260), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -61588,7 +61596,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10303), + [sym_else] = STATE(10316), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -62284,7 +62292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10153), + [sym_else] = STATE(10166), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -62458,7 +62466,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10158), + [sym_else] = STATE(10171), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -63502,7 +63510,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(9954), + [sym_else] = STATE(9957), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -63676,7 +63684,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(9983), + [sym_else] = STATE(9988), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -63850,7 +63858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10249), + [sym_else] = STATE(10262), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -64198,7 +64206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10026), + [sym_else] = STATE(10036), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -64372,7 +64380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10061), + [sym_else] = STATE(10074), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -64546,7 +64554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10120), + [sym_else] = STATE(10133), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -64720,7 +64728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10180), + [sym_else] = STATE(10193), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -64894,7 +64902,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10229), + [sym_else] = STATE(10242), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -65068,7 +65076,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10268), + [sym_else] = STATE(10281), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -65242,7 +65250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10302), + [sym_else] = STATE(10315), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -65416,7 +65424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10005), + [sym_else] = STATE(10012), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -65764,7 +65772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10296), + [sym_else] = STATE(10309), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -66286,7 +66294,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10011), + [sym_else] = STATE(10019), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -66634,7 +66642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10065), + [sym_else] = STATE(10078), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -66808,7 +66816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(9989), + [sym_else] = STATE(9995), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -66982,7 +66990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10152), + [sym_else] = STATE(10165), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -67330,7 +67338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10075), + [sym_else] = STATE(10088), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -68548,7 +68556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(4241), [sym_if] = STATE(4241), [sym_unless] = STATE(4241), - [sym_else] = STATE(10132), + [sym_else] = STATE(10145), [sym_conditional] = STATE(4241), [sym_modifier_if] = STATE(8289), [sym_modifier_unless] = STATE(8289), @@ -69056,7 +69064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -71478,7 +71486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -72274,7 +72282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(1137), }, [221] = { - [sym__statements] = STATE(10098), + [sym__statements] = STATE(10111), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -72343,7 +72351,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -72446,7 +72454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [222] = { - [sym__statements] = STATE(10098), + [sym__statements] = STATE(10111), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -72515,7 +72523,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -72618,7 +72626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [223] = { - [sym__statements] = STATE(10098), + [sym__statements] = STATE(10111), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -72687,7 +72695,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -72790,7 +72798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [224] = { - [sym__statements] = STATE(10098), + [sym__statements] = STATE(10111), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -72859,7 +72867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -73306,7 +73314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(1081), }, [227] = { - [sym__statements] = STATE(10098), + [sym__statements] = STATE(10111), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -73375,7 +73383,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -73650,7 +73658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(1127), }, [229] = { - [sym__statements] = STATE(10098), + [sym__statements] = STATE(10111), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -73719,7 +73727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -73822,7 +73830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [230] = { - [sym__statements] = STATE(10098), + [sym__statements] = STATE(10111), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -73891,7 +73899,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -74166,7 +74174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(1137), }, [232] = { - [sym__statements] = STATE(10098), + [sym__statements] = STATE(10111), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -74235,7 +74243,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -74510,7 +74518,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(1081), }, [234] = { - [sym__statements] = STATE(10098), + [sym__statements] = STATE(10111), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -74579,7 +74587,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -74682,7 +74690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [235] = { - [sym__statements] = STATE(10098), + [sym__statements] = STATE(10111), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -74751,7 +74759,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -74854,7 +74862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [236] = { - [sym__statements] = STATE(10098), + [sym__statements] = STATE(10111), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -74923,7 +74931,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -75026,7 +75034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [237] = { - [sym__statements] = STATE(10098), + [sym__statements] = STATE(10111), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -75095,7 +75103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -75370,7 +75378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(1127), }, [239] = { - [sym__statements] = STATE(10098), + [sym__statements] = STATE(10111), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -75439,7 +75447,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -75714,7 +75722,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(1127), }, [241] = { - [sym__statements] = STATE(10098), + [sym__statements] = STATE(10111), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -75783,7 +75791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -76918,7 +76926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(1065), }, [248] = { - [sym__statements] = STATE(10098), + [sym__statements] = STATE(10111), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -76987,7 +76995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -80515,7 +80523,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(1167), }, [269] = { - [sym__statements] = STATE(10098), + [sym__statements] = STATE(10111), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -80584,7 +80592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -80685,7 +80693,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [270] = { - [sym__statements] = STATE(10098), + [sym__statements] = STATE(10111), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -80754,7 +80762,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -80765,7 +80773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(2976), [sym_if] = STATE(2976), [sym_unless] = STATE(2976), - [sym_then] = STATE(10115), + [sym_then] = STATE(10128), [sym_else] = STATE(10941), [sym_conditional] = STATE(2976), [sym_modifier_if] = STATE(7973), @@ -81025,7 +81033,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [272] = { - [sym__statements] = STATE(10098), + [sym__statements] = STATE(10111), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -81094,7 +81102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -81195,7 +81203,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [273] = { - [sym__statements] = STATE(10098), + [sym__statements] = STATE(10111), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -81264,7 +81272,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -81365,7 +81373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [274] = { - [sym__statements] = STATE(10098), + [sym__statements] = STATE(10111), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -81434,7 +81442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -81535,7 +81543,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [275] = { - [sym__statements] = STATE(10098), + [sym__statements] = STATE(10111), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -81604,7 +81612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -81615,7 +81623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(2976), [sym_if] = STATE(2976), [sym_unless] = STATE(2976), - [sym_then] = STATE(10337), + [sym_then] = STATE(10351), [sym_else] = STATE(11328), [sym_conditional] = STATE(2976), [sym_modifier_if] = STATE(7973), @@ -81875,7 +81883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [277] = { - [sym__statements] = STATE(10098), + [sym__statements] = STATE(10111), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -81944,7 +81952,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -81955,7 +81963,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(2976), [sym_if] = STATE(2976), [sym_unless] = STATE(2976), - [sym_then] = STATE(10137), + [sym_then] = STATE(10150), [sym_else] = STATE(11335), [sym_conditional] = STATE(2976), [sym_modifier_if] = STATE(7973), @@ -82385,7 +82393,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(2166), }, [280] = { - [sym__statements] = STATE(10098), + [sym__statements] = STATE(10111), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -82454,7 +82462,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -82555,7 +82563,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [281] = { - [sym__statements] = STATE(10098), + [sym__statements] = STATE(10111), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -82624,7 +82632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -82635,7 +82643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(2976), [sym_if] = STATE(2976), [sym_unless] = STATE(2976), - [sym_then] = STATE(10279), + [sym_then] = STATE(10292), [sym_else] = STATE(10797), [sym_conditional] = STATE(2976), [sym_modifier_if] = STATE(7973), @@ -82895,7 +82903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(1127), }, [283] = { - [sym__statements] = STATE(10098), + [sym__statements] = STATE(10111), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -82964,7 +82972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -83235,7 +83243,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [285] = { - [sym__statements] = STATE(10098), + [sym__statements] = STATE(10111), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -83304,7 +83312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -83315,7 +83323,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(2976), [sym_if] = STATE(2976), [sym_unless] = STATE(2976), - [sym_then] = STATE(10237), + [sym_then] = STATE(10250), [sym_else] = STATE(11597), [sym_conditional] = STATE(2976), [sym_modifier_if] = STATE(7973), @@ -83745,7 +83753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [288] = { - [sym__statements] = STATE(10098), + [sym__statements] = STATE(10111), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -83814,7 +83822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -83825,7 +83833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(2976), [sym_if] = STATE(2976), [sym_unless] = STATE(2976), - [sym_then] = STATE(9962), + [sym_then] = STATE(9965), [sym_else] = STATE(10840), [sym_conditional] = STATE(2976), [sym_modifier_if] = STATE(7973), @@ -84255,7 +84263,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(1081), }, [291] = { - [sym__statements] = STATE(10098), + [sym__statements] = STATE(10111), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -84324,7 +84332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -84335,7 +84343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(2976), [sym_if] = STATE(2976), [sym_unless] = STATE(2976), - [sym_then] = STATE(10188), + [sym_then] = STATE(10201), [sym_else] = STATE(11465), [sym_conditional] = STATE(2976), [sym_modifier_if] = STATE(7973), @@ -84765,7 +84773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [294] = { - [sym__statements] = STATE(10098), + [sym__statements] = STATE(10111), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -84834,7 +84842,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -84845,7 +84853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_until] = STATE(2976), [sym_if] = STATE(2976), [sym_unless] = STATE(2976), - [sym_then] = STATE(10037), + [sym_then] = STATE(10048), [sym_else] = STATE(11074), [sym_conditional] = STATE(2976), [sym_modifier_if] = STATE(7973), @@ -85004,7 +85012,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -85173,7 +85181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -85342,7 +85350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -85442,7 +85450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [298] = { - [sym__statements] = STATE(10145), + [sym__statements] = STATE(10158), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -85511,7 +85519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -85680,7 +85688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -86018,7 +86026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -86525,7 +86533,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -86863,7 +86871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -87032,7 +87040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -87370,7 +87378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -87539,7 +87547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -87708,7 +87716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -87877,7 +87885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -88046,7 +88054,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -88215,7 +88223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -88384,7 +88392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -88553,7 +88561,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -88890,7 +88898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -89060,7 +89068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -89229,7 +89237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -89398,7 +89406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -89567,7 +89575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -89736,7 +89744,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -90074,7 +90082,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -90243,7 +90251,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -90411,7 +90419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -90579,7 +90587,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -90747,7 +90755,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -90915,7 +90923,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -91083,7 +91091,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -91251,7 +91259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -91419,7 +91427,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -91587,7 +91595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -91755,7 +91763,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -91923,7 +91931,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -92091,7 +92099,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -92259,7 +92267,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -92427,7 +92435,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -92931,7 +92939,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -93099,7 +93107,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -93267,7 +93275,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -93435,7 +93443,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -93603,7 +93611,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -93771,7 +93779,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -93939,7 +93947,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -94107,7 +94115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -94275,7 +94283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -94443,7 +94451,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -94611,7 +94619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -94779,7 +94787,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -94947,7 +94955,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -95115,7 +95123,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -95283,7 +95291,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -95451,7 +95459,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -95787,7 +95795,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -95886,7 +95894,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [360] = { - [sym__statements] = STATE(10365), + [sym__statements] = STATE(10407), [sym__parenthesized_statement] = STATE(4694), [sym__statement] = STATE(8477), [sym_expressions] = STATE(4694), @@ -96123,7 +96131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -96459,7 +96467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -96627,7 +96635,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -96795,7 +96803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -96963,7 +96971,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -97131,7 +97139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -97230,7 +97238,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [368] = { - [sym__statements] = STATE(10466), + [sym__statements] = STATE(10482), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -97299,7 +97307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -97467,7 +97475,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -97635,7 +97643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -97803,7 +97811,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -97971,7 +97979,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -98139,7 +98147,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -98307,7 +98315,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -98475,7 +98483,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -98643,7 +98651,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -98742,7 +98750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [377] = { - [sym__statements] = STATE(10425), + [sym__statements] = STATE(10445), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -98811,7 +98819,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -98979,7 +98987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -99078,7 +99086,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [379] = { - [sym__statements] = STATE(10429), + [sym__statements] = STATE(10451), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -99147,7 +99155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -99246,7 +99254,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [380] = { - [sym__statements] = STATE(10477), + [sym__statements] = STATE(10497), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -99315,7 +99323,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -99414,7 +99422,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [381] = { - [sym__statements] = STATE(10499), + [sym__statements] = STATE(10422), [sym__parenthesized_statement] = STATE(2976), [sym__statement] = STATE(7953), [sym_expressions] = STATE(2976), @@ -99483,7 +99491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -99651,7 +99659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -99819,7 +99827,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -100323,7 +100331,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -100491,7 +100499,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -100659,7 +100667,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -100827,7 +100835,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -101331,7 +101339,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -101499,7 +101507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -101667,7 +101675,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -101835,7 +101843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -102171,7 +102179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -102339,7 +102347,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -102507,7 +102515,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -102843,7 +102851,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -103011,7 +103019,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -103179,7 +103187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -103513,7 +103521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -103680,7 +103688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -103847,7 +103855,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -104014,7 +104022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -104181,7 +104189,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -104348,7 +104356,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -104515,7 +104523,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -104682,7 +104690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -104849,7 +104857,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -105183,7 +105191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -105517,7 +105525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -105684,7 +105692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -105851,7 +105859,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -106018,7 +106026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -106185,7 +106193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -106352,7 +106360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -106519,7 +106527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -106686,7 +106694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -106853,7 +106861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -107020,7 +107028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -107187,7 +107195,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -107354,7 +107362,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -107521,7 +107529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -107688,7 +107696,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -108022,7 +108030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -108189,7 +108197,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -108356,7 +108364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -108523,7 +108531,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -108857,7 +108865,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -109024,7 +109032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -109191,7 +109199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -109358,7 +109366,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -109525,7 +109533,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -109692,7 +109700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -109859,7 +109867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -110026,7 +110034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -110193,7 +110201,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -110360,7 +110368,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -110527,7 +110535,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -110861,7 +110869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -111028,7 +111036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -111195,7 +111203,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -111362,7 +111370,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -111529,7 +111537,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -111696,7 +111704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -111863,7 +111871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -112030,7 +112038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -112197,7 +112205,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -112364,7 +112372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -112531,7 +112539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -112698,7 +112706,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -112865,7 +112873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -113032,7 +113040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -113366,7 +113374,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -113533,7 +113541,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -113700,7 +113708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -113867,7 +113875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -114034,7 +114042,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -114201,7 +114209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -114368,7 +114376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -114535,7 +114543,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -114702,7 +114710,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -114869,7 +114877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -115036,7 +115044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -115203,7 +115211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -115370,7 +115378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -115537,7 +115545,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -115871,7 +115879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -116038,7 +116046,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -116205,7 +116213,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -116371,7 +116379,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -116706,7 +116714,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -116873,7 +116881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -117207,7 +117215,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -117374,7 +117382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -117541,7 +117549,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -117708,7 +117716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -117875,7 +117883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -118042,7 +118050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -118209,7 +118217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -118376,7 +118384,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -118543,7 +118551,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -118710,7 +118718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -118877,7 +118885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -119044,7 +119052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -119378,7 +119386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -119545,7 +119553,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -122178,7 +122186,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -122504,7 +122512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(2976), [sym_const_assign] = STATE(7973), [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10490), + [sym_lhs_splat] = STATE(10396), [sym_multi_assign] = STATE(7973), [sym_type_declaration] = STATE(2976), [sym_alias] = STATE(7973), @@ -135128,7 +135136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_declaration] = STATE(3706), [sym_do_end_block] = STATE(9719), [sym_brace_block] = STATE(9719), - [sym_block_argument] = STATE(10102), + [sym_block_argument] = STATE(10115), [sym_begin_block] = STATE(3706), [sym_while] = STATE(3706), [sym_until] = STATE(3706), @@ -135267,7 +135275,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_declaration] = STATE(3706), [sym_do_end_block] = STATE(9719), [sym_brace_block] = STATE(9719), - [sym_block_argument] = STATE(10102), + [sym_block_argument] = STATE(10115), [sym_begin_block] = STATE(3706), [sym_while] = STATE(3706), [sym_until] = STATE(3706), @@ -137319,7 +137327,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10243), + [sym_hash_entry] = STATE(10256), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -137335,8 +137343,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generic_instance_type] = STATE(4372), [sym__dot_call] = STATE(208), [sym_call] = STATE(4372), - [sym_implicit_object_index_operator] = STATE(10298), - [sym_implicit_object_call] = STATE(10078), + [sym_implicit_object_index_operator] = STATE(10311), + [sym_implicit_object_call] = STATE(10091), [sym_assign_call] = STATE(7802), [sym_index_operator] = STATE(2371), [sym_not] = STATE(4372), @@ -137477,9 +137485,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_binary_or_operator] = STATE(4372), [sym_equality_operator] = STATE(4372), [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(10124), - [sym_double_splat] = STATE(10124), - [sym_named_expr] = STATE(10124), + [sym_splat] = STATE(10137), + [sym_double_splat] = STATE(10137), + [sym_named_expr] = STATE(10137), [sym_assign] = STATE(4372), [sym_operator_assign] = STATE(4372), [sym_type_declaration] = STATE(4372), @@ -137861,9 +137869,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_binary_or_operator] = STATE(4372), [sym_equality_operator] = STATE(4372), [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(10210), - [sym_double_splat] = STATE(10210), - [sym_named_expr] = STATE(10210), + [sym_splat] = STATE(10223), + [sym_double_splat] = STATE(10223), + [sym_named_expr] = STATE(10223), [sym_assign] = STATE(4372), [sym_operator_assign] = STATE(4372), [sym_type_declaration] = STATE(4372), @@ -138117,9 +138125,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_binary_or_operator] = STATE(4372), [sym_equality_operator] = STATE(4372), [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(10151), - [sym_double_splat] = STATE(10151), - [sym_named_expr] = STATE(10151), + [sym_splat] = STATE(10164), + [sym_double_splat] = STATE(10164), + [sym_named_expr] = STATE(10164), [sym_assign] = STATE(4372), [sym_operator_assign] = STATE(4372), [sym_type_declaration] = STATE(4372), @@ -139653,9 +139661,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_binary_or_operator] = STATE(4372), [sym_equality_operator] = STATE(4372), [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9950), - [sym_double_splat] = STATE(9950), - [sym_named_expr] = STATE(9950), + [sym_splat] = STATE(9952), + [sym_double_splat] = STATE(9952), + [sym_named_expr] = STATE(9952), [sym_assign] = STATE(4372), [sym_operator_assign] = STATE(4372), [sym_type_declaration] = STATE(4372), @@ -140037,9 +140045,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_binary_or_operator] = STATE(4372), [sym_equality_operator] = STATE(4372), [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(10025), - [sym_double_splat] = STATE(10025), - [sym_named_expr] = STATE(10025), + [sym_splat] = STATE(10034), + [sym_double_splat] = STATE(10034), + [sym_named_expr] = STATE(10034), [sym_assign] = STATE(4372), [sym_operator_assign] = STATE(4372), [sym_type_declaration] = STATE(4372), @@ -141957,9 +141965,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_binary_or_operator] = STATE(4372), [sym_equality_operator] = STATE(4372), [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(10117), - [sym_double_splat] = STATE(10117), - [sym_named_expr] = STATE(10117), + [sym_splat] = STATE(10130), + [sym_double_splat] = STATE(10130), + [sym_named_expr] = STATE(10130), [sym_assign] = STATE(4372), [sym_operator_assign] = STATE(4372), [sym_type_declaration] = STATE(4372), @@ -142341,9 +142349,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_binary_or_operator] = STATE(4372), [sym_equality_operator] = STATE(4372), [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(10228), - [sym_double_splat] = STATE(10228), - [sym_named_expr] = STATE(10228), + [sym_splat] = STATE(10241), + [sym_double_splat] = STATE(10241), + [sym_named_expr] = STATE(10241), [sym_assign] = STATE(4372), [sym_operator_assign] = STATE(4372), [sym_type_declaration] = STATE(4372), @@ -142725,9 +142733,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_binary_or_operator] = STATE(4372), [sym_equality_operator] = STATE(4372), [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(10356), - [sym_double_splat] = STATE(10356), - [sym_named_expr] = STATE(10356), + [sym_splat] = STATE(10370), + [sym_double_splat] = STATE(10370), + [sym_named_expr] = STATE(10370), [sym_assign] = STATE(4372), [sym_operator_assign] = STATE(4372), [sym_type_declaration] = STATE(4372), @@ -144261,9 +144269,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_binary_or_operator] = STATE(4372), [sym_equality_operator] = STATE(4372), [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9922), - [sym_double_splat] = STATE(9922), - [sym_named_expr] = STATE(9922), + [sym_splat] = STATE(9923), + [sym_double_splat] = STATE(9923), + [sym_named_expr] = STATE(9923), [sym_assign] = STATE(4372), [sym_operator_assign] = STATE(4372), [sym_type_declaration] = STATE(4372), @@ -145541,9 +145549,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_binary_or_operator] = STATE(4372), [sym_equality_operator] = STATE(4372), [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(10112), - [sym_double_splat] = STATE(10112), - [sym_named_expr] = STATE(10112), + [sym_splat] = STATE(10125), + [sym_double_splat] = STATE(10125), + [sym_named_expr] = STATE(10125), [sym_assign] = STATE(4372), [sym_operator_assign] = STATE(4372), [sym_type_declaration] = STATE(4372), @@ -145669,9 +145677,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_binary_or_operator] = STATE(4372), [sym_equality_operator] = STATE(4372), [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(10277), - [sym_double_splat] = STATE(10277), - [sym_named_expr] = STATE(10277), + [sym_splat] = STATE(10290), + [sym_double_splat] = STATE(10290), + [sym_named_expr] = STATE(10290), [sym_assign] = STATE(4372), [sym_operator_assign] = STATE(4372), [sym_type_declaration] = STATE(4372), @@ -148070,8 +148078,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generic_instance_type] = STATE(4372), [sym__dot_call] = STATE(95), [sym_call] = STATE(4372), - [sym_implicit_object_index_operator] = STATE(10298), - [sym_implicit_object_call] = STATE(10485), + [sym_implicit_object_index_operator] = STATE(10311), + [sym_implicit_object_call] = STATE(10393), [sym_assign_call] = STATE(7785), [sym_index_operator] = STATE(2310), [sym_not] = STATE(4372), @@ -148705,8 +148713,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generic_instance_type] = STATE(4372), [sym__dot_call] = STATE(95), [sym_call] = STATE(4372), - [sym_implicit_object_index_operator] = STATE(10298), - [sym_implicit_object_call] = STATE(10485), + [sym_implicit_object_index_operator] = STATE(10311), + [sym_implicit_object_call] = STATE(10393), [sym_assign_call] = STATE(7785), [sym_index_operator] = STATE(2310), [sym_not] = STATE(4372), @@ -154441,7 +154449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(3706), [sym_operator_assign] = STATE(3706), [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(9953), + [sym_block_argument] = STATE(9956), [sym_begin_block] = STATE(3706), [sym_while] = STATE(3706), [sym_until] = STATE(3706), @@ -154568,7 +154576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(3706), [sym_operator_assign] = STATE(3706), [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(10036), + [sym_block_argument] = STATE(10047), [sym_begin_block] = STATE(3706), [sym_while] = STATE(3706), [sym_until] = STATE(3706), @@ -157468,7 +157476,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generic_instance_type] = STATE(4372), [sym__dot_call] = STATE(95), [sym_call] = STATE(4372), - [sym_implicit_object_index_operator] = STATE(10298), + [sym_implicit_object_index_operator] = STATE(10311), [sym_implicit_object_call] = STATE(9745), [sym_assign_call] = STATE(7785), [sym_index_operator] = STATE(2310), @@ -158103,8 +158111,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generic_instance_type] = STATE(4372), [sym__dot_call] = STATE(95), [sym_call] = STATE(4372), - [sym_implicit_object_index_operator] = STATE(10298), - [sym_implicit_object_call] = STATE(10485), + [sym_implicit_object_index_operator] = STATE(10311), + [sym_implicit_object_call] = STATE(10393), [sym_assign_call] = STATE(7785), [sym_index_operator] = STATE(2310), [sym_not] = STATE(4372), @@ -159754,8 +159762,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generic_instance_type] = STATE(4372), [sym__dot_call] = STATE(95), [sym_call] = STATE(4372), - [sym_implicit_object_index_operator] = STATE(10298), - [sym_implicit_object_call] = STATE(10485), + [sym_implicit_object_index_operator] = STATE(10311), + [sym_implicit_object_call] = STATE(10393), [sym_assign_call] = STATE(7785), [sym_index_operator] = STATE(2310), [sym_not] = STATE(4372), @@ -168284,7 +168292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(3706), [sym_operator_assign] = STATE(3706), [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(9953), + [sym_block_argument] = STATE(9956), [sym_begin_block] = STATE(3706), [sym_while] = STATE(3706), [sym_until] = STATE(3706), @@ -168411,7 +168419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assign] = STATE(3706), [sym_operator_assign] = STATE(3706), [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(10036), + [sym_block_argument] = STATE(10047), [sym_begin_block] = STATE(3706), [sym_while] = STATE(3706), [sym_until] = STATE(3706), @@ -169025,7 +169033,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generic_instance_type] = STATE(4372), [sym__dot_call] = STATE(95), [sym_call] = STATE(4372), - [sym_implicit_object_index_operator] = STATE(10298), + [sym_implicit_object_index_operator] = STATE(10311), [sym_implicit_object_call] = STATE(9685), [sym_assign_call] = STATE(7785), [sym_index_operator] = STATE(2310), @@ -169152,8 +169160,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generic_instance_type] = STATE(4372), [sym__dot_call] = STATE(95), [sym_call] = STATE(4372), - [sym_implicit_object_index_operator] = STATE(10298), - [sym_implicit_object_call] = STATE(10485), + [sym_implicit_object_index_operator] = STATE(10311), + [sym_implicit_object_call] = STATE(10393), [sym_assign_call] = STATE(7785), [sym_index_operator] = STATE(2310), [sym_not] = STATE(4372), @@ -171309,7 +171317,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pseudo_constant] = STATE(6590), [sym_generic_instance_type] = STATE(6590), [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10432), + [sym_bracket_argument_list] = STATE(10493), [sym_call] = STATE(6590), [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2370), @@ -173200,8 +173208,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generic_instance_type] = STATE(4372), [sym__dot_call] = STATE(125), [sym_call] = STATE(4372), - [sym_implicit_object_index_operator] = STATE(10298), - [sym_implicit_object_call] = STATE(9999), + [sym_implicit_object_index_operator] = STATE(10311), + [sym_implicit_object_call] = STATE(10006), [sym_assign_call] = STATE(7807), [sym_index_operator] = STATE(2320), [sym_not] = STATE(4372), @@ -173341,9 +173349,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_binary_or_operator] = STATE(4372), [sym_equality_operator] = STATE(4372), [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(10367), - [sym_double_splat] = STATE(10367), - [sym_named_expr] = STATE(10367), + [sym_splat] = STATE(10405), + [sym_double_splat] = STATE(10405), + [sym_named_expr] = STATE(10405), [sym_assign] = STATE(4372), [sym_operator_assign] = STATE(4372), [sym_type_declaration] = STATE(4372), @@ -173451,7 +173459,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pseudo_constant] = STATE(6590), [sym_generic_instance_type] = STATE(6590), [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10494), + [sym_bracket_argument_list] = STATE(10458), [sym_call] = STATE(6590), [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2370), @@ -173593,9 +173601,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_binary_or_operator] = STATE(4372), [sym_equality_operator] = STATE(4372), [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(10367), - [sym_double_splat] = STATE(10367), - [sym_named_expr] = STATE(10367), + [sym_splat] = STATE(10405), + [sym_double_splat] = STATE(10405), + [sym_named_expr] = STATE(10405), [sym_assign] = STATE(4372), [sym_operator_assign] = STATE(4372), [sym_type_declaration] = STATE(4372), @@ -173704,8 +173712,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generic_instance_type] = STATE(4372), [sym__dot_call] = STATE(95), [sym_call] = STATE(4372), - [sym_implicit_object_index_operator] = STATE(10298), - [sym_implicit_object_call] = STATE(10485), + [sym_implicit_object_index_operator] = STATE(10311), + [sym_implicit_object_call] = STATE(10393), [sym_assign_call] = STATE(7785), [sym_index_operator] = STATE(2310), [sym_not] = STATE(4372), @@ -174081,7 +174089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pseudo_constant] = STATE(6590), [sym_generic_instance_type] = STATE(6590), [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10431), + [sym_bracket_argument_list] = STATE(10453), [sym_call] = STATE(6590), [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2370), @@ -174333,7 +174341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pseudo_constant] = STATE(6590), [sym_generic_instance_type] = STATE(6590), [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10497), + [sym_bracket_argument_list] = STATE(10402), [sym_call] = STATE(6590), [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2370), @@ -174459,7 +174467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pseudo_constant] = STATE(6590), [sym_generic_instance_type] = STATE(6590), [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10405), + [sym_bracket_argument_list] = STATE(10391), [sym_call] = STATE(6590), [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2370), @@ -174711,7 +174719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pseudo_constant] = STATE(6590), [sym_generic_instance_type] = STATE(6590), [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10473), + [sym_bracket_argument_list] = STATE(10457), [sym_call] = STATE(6590), [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2370), @@ -175089,7 +175097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pseudo_constant] = STATE(6590), [sym_generic_instance_type] = STATE(6590), [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10416), + [sym_bracket_argument_list] = STATE(10441), [sym_call] = STATE(6590), [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2370), @@ -175215,7 +175223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pseudo_constant] = STATE(6590), [sym_generic_instance_type] = STATE(6590), [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10470), + [sym_bracket_argument_list] = STATE(10455), [sym_call] = STATE(6590), [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2370), @@ -175593,7 +175601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pseudo_constant] = STATE(6590), [sym_generic_instance_type] = STATE(6590), [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10457), + [sym_bracket_argument_list] = STATE(10472), [sym_call] = STATE(6590), [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2370), @@ -175845,7 +175853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pseudo_constant] = STATE(6590), [sym_generic_instance_type] = STATE(6590), [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10437), + [sym_bracket_argument_list] = STATE(10456), [sym_call] = STATE(6590), [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2370), @@ -175971,7 +175979,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pseudo_constant] = STATE(6590), [sym_generic_instance_type] = STATE(6590), [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10417), + [sym_bracket_argument_list] = STATE(10442), [sym_call] = STATE(6590), [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2370), @@ -176223,7 +176231,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pseudo_constant] = STATE(6590), [sym_generic_instance_type] = STATE(6590), [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10503), + [sym_bracket_argument_list] = STATE(10399), [sym_call] = STATE(6590), [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2370), @@ -176349,7 +176357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pseudo_constant] = STATE(6590), [sym_generic_instance_type] = STATE(6590), [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10366), + [sym_bracket_argument_list] = STATE(10425), [sym_call] = STATE(6590), [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2370), @@ -176475,7 +176483,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pseudo_constant] = STATE(6590), [sym_generic_instance_type] = STATE(6590), [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10433), + [sym_bracket_argument_list] = STATE(10469), [sym_call] = STATE(6590), [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2370), @@ -176601,7 +176609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pseudo_constant] = STATE(6590), [sym_generic_instance_type] = STATE(6590), [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10428), + [sym_bracket_argument_list] = STATE(10483), [sym_call] = STATE(6590), [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2370), @@ -176727,7 +176735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pseudo_constant] = STATE(6590), [sym_generic_instance_type] = STATE(6590), [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10474), + [sym_bracket_argument_list] = STATE(10423), [sym_call] = STATE(6590), [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2370), @@ -176853,7 +176861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pseudo_constant] = STATE(6590), [sym_generic_instance_type] = STATE(6590), [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10458), + [sym_bracket_argument_list] = STATE(10426), [sym_call] = STATE(6590), [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2370), @@ -176979,7 +176987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pseudo_constant] = STATE(6590), [sym_generic_instance_type] = STATE(6590), [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10396), + [sym_bracket_argument_list] = STATE(10494), [sym_call] = STATE(6590), [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2370), @@ -177105,7 +177113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pseudo_constant] = STATE(6590), [sym_generic_instance_type] = STATE(6590), [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10483), + [sym_bracket_argument_list] = STATE(10468), [sym_call] = STATE(6590), [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2370), @@ -177357,7 +177365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pseudo_constant] = STATE(6590), [sym_generic_instance_type] = STATE(6590), [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10434), + [sym_bracket_argument_list] = STATE(10454), [sym_call] = STATE(6590), [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2370), @@ -177483,7 +177491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pseudo_constant] = STATE(6590), [sym_generic_instance_type] = STATE(6590), [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10505), + [sym_bracket_argument_list] = STATE(10401), [sym_call] = STATE(6590), [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2370), @@ -177609,7 +177617,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pseudo_constant] = STATE(6590), [sym_generic_instance_type] = STATE(6590), [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10442), + [sym_bracket_argument_list] = STATE(10460), [sym_call] = STATE(6590), [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2370), @@ -177735,7 +177743,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pseudo_constant] = STATE(6590), [sym_generic_instance_type] = STATE(6590), [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10500), + [sym_bracket_argument_list] = STATE(10398), [sym_call] = STATE(6590), [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2370), @@ -177861,7 +177869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pseudo_constant] = STATE(6590), [sym_generic_instance_type] = STATE(6590), [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10455), + [sym_bracket_argument_list] = STATE(10466), [sym_call] = STATE(6590), [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2370), @@ -177987,7 +177995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pseudo_constant] = STATE(6590), [sym_generic_instance_type] = STATE(6590), [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10468), + [sym_bracket_argument_list] = STATE(10488), [sym_call] = STATE(6590), [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2370), @@ -178113,7 +178121,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pseudo_constant] = STATE(6590), [sym_generic_instance_type] = STATE(6590), [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10407), + [sym_bracket_argument_list] = STATE(10440), [sym_call] = STATE(6590), [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2370), @@ -178239,7 +178247,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pseudo_constant] = STATE(6590), [sym_generic_instance_type] = STATE(6590), [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10438), + [sym_bracket_argument_list] = STATE(10473), [sym_call] = STATE(6590), [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2370), @@ -178633,9 +178641,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_binary_or_operator] = STATE(4372), [sym_equality_operator] = STATE(4372), [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(10297), - [sym_double_splat] = STATE(10297), - [sym_named_expr] = STATE(10297), + [sym_splat] = STATE(10310), + [sym_double_splat] = STATE(10310), + [sym_named_expr] = STATE(10310), [sym_assign] = STATE(4372), [sym_operator_assign] = STATE(4372), [sym_type_declaration] = STATE(4372), @@ -178744,8 +178752,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generic_instance_type] = STATE(4372), [sym__dot_call] = STATE(95), [sym_call] = STATE(4372), - [sym_implicit_object_index_operator] = STATE(10298), - [sym_implicit_object_call] = STATE(9999), + [sym_implicit_object_index_operator] = STATE(10311), + [sym_implicit_object_call] = STATE(10006), [sym_assign_call] = STATE(7785), [sym_index_operator] = STATE(2310), [sym_not] = STATE(4372), @@ -181649,9 +181657,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_binary_or_operator] = STATE(4372), [sym_equality_operator] = STATE(4372), [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(10367), - [sym_double_splat] = STATE(10367), - [sym_named_expr] = STATE(10367), + [sym_splat] = STATE(10405), + [sym_double_splat] = STATE(10405), + [sym_named_expr] = STATE(10405), [sym_assign] = STATE(4372), [sym_operator_assign] = STATE(4372), [sym_type_declaration] = STATE(4372), @@ -183526,7 +183534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comparison_operator] = STATE(4372), [sym_assign] = STATE(4372), [sym_operator_assign] = STATE(4372), - [sym_lhs_splat] = STATE(10481), + [sym_lhs_splat] = STATE(10505), [sym_type_declaration] = STATE(4372), [sym_begin_block] = STATE(4372), [sym_while] = STATE(4372), @@ -183649,7 +183657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comparison_operator] = STATE(4372), [sym_assign] = STATE(4372), [sym_operator_assign] = STATE(4372), - [sym_lhs_splat] = STATE(10460), + [sym_lhs_splat] = STATE(10476), [sym_type_declaration] = STATE(4372), [sym_begin_block] = STATE(4372), [sym_while] = STATE(4372), @@ -183772,7 +183780,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comparison_operator] = STATE(4372), [sym_assign] = STATE(4372), [sym_operator_assign] = STATE(4372), - [sym_lhs_splat] = STATE(10492), + [sym_lhs_splat] = STATE(10395), [sym_type_declaration] = STATE(4372), [sym_begin_block] = STATE(4372), [sym_while] = STATE(4372), @@ -183986,7 +183994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -184108,7 +184116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10286), + [sym_hash_entry] = STATE(10299), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -184230,7 +184238,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -184352,7 +184360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -184474,7 +184482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -184596,7 +184604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -184840,7 +184848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -184962,7 +184970,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -185206,7 +185214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -185328,7 +185336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -185694,7 +185702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -185938,7 +185946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -186060,7 +186068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -186182,7 +186190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -186304,7 +186312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -186426,7 +186434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -186792,7 +186800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -186914,7 +186922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -187036,7 +187044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -187280,7 +187288,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -187524,7 +187532,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -187768,7 +187776,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -187890,7 +187898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -188012,7 +188020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -188134,7 +188142,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -188256,7 +188264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -189110,7 +189118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10351), + [sym_hash_entry] = STATE(10365), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -189354,7 +189362,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -189598,7 +189606,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10348), + [sym_hash_entry] = STATE(10362), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -189842,7 +189850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10012), + [sym_hash_entry] = STATE(10020), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -190086,7 +190094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -190574,7 +190582,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(9917), + [sym_hash_entry] = STATE(9918), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -190696,7 +190704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(9998), + [sym_hash_entry] = STATE(10005), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -190818,7 +190826,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -191062,7 +191070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10086), + [sym_hash_entry] = STATE(10099), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -191184,7 +191192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10203), + [sym_hash_entry] = STATE(10216), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -191428,7 +191436,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10291), + [sym_hash_entry] = STATE(10304), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -191550,7 +191558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10274), + [sym_hash_entry] = STATE(10287), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -191916,7 +191924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -192282,7 +192290,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -192404,7 +192412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -192526,7 +192534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -192648,7 +192656,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -192770,7 +192778,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -192892,7 +192900,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -193014,7 +193022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -193136,7 +193144,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -193258,7 +193266,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -193380,7 +193388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -193624,7 +193632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10238), + [sym_hash_entry] = STATE(10251), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -193746,7 +193754,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10243), + [sym_hash_entry] = STATE(10256), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -193868,7 +193876,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10250), + [sym_hash_entry] = STATE(10263), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -193990,7 +193998,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10255), + [sym_hash_entry] = STATE(10268), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -194112,7 +194120,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10257), + [sym_hash_entry] = STATE(10270), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -194234,7 +194242,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10358), + [sym_hash_entry] = STATE(10372), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -194356,7 +194364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -194478,7 +194486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10069), + [sym_hash_entry] = STATE(10082), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -206458,7 +206466,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_percent_literal] = STATE(4372), [sym_array] = STATE(4372), [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10406), + [sym_hash_entry] = STATE(10435), [sym_tuple] = STATE(4372), [sym_named_tuple] = STATE(4372), [sym_range] = STATE(4372), @@ -309040,7 +309048,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [2040] = { [sym_heredoc_body] = STATE(2040), - [aux_sym_proc_type_repeat1] = STATE(10300), + [aux_sym_proc_type_repeat1] = STATE(10313), [sym_identifier] = ACTIONS(4743), [anon_sym_SEMI] = ACTIONS(4745), [anon_sym_LPAREN] = ACTIONS(4745), @@ -336604,7 +336612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, STATE(2410), 1, sym_heredoc_body, - STATE(10305), 1, + STATE(10318), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -340974,7 +340982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, STATE(2478), 1, sym_heredoc_body, - STATE(10192), 1, + STATE(10205), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -344379,7 +344387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, STATE(2531), 1, sym_heredoc_body, - STATE(10192), 1, + STATE(10205), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -361069,7 +361077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, STATE(2800), 1, sym_heredoc_body, - STATE(10141), 1, + STATE(10154), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -382000,7 +382008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, STATE(3143), 1, sym_heredoc_body, - STATE(9927), 1, + STATE(9928), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -388517,7 +388525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, STATE(3251), 1, sym_heredoc_body, - STATE(10310), 1, + STATE(10323), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -391525,7 +391533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, STATE(3298), 1, sym_heredoc_body, - STATE(10074), 1, + STATE(10087), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -410943,7 +410951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, STATE(3635), 1, sym_heredoc_body, - STATE(10171), 1, + STATE(10184), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -415606,7 +415614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, STATE(3719), 1, sym_heredoc_body, - STATE(10041), 1, + STATE(10052), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -418477,7 +418485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, STATE(3769), 1, sym_heredoc_body, - STATE(10171), 1, + STATE(10184), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -430865,7 +430873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, STATE(3988), 1, sym_heredoc_body, - STATE(10041), 1, + STATE(10052), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -468636,7 +468644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, STATE(4657), 1, sym_heredoc_body, - STATE(10023), 1, + STATE(10032), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -470053,7 +470061,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_exhaustive_case_repeat1, STATE(9746), 1, sym_when, - STATE(10420), 1, + STATE(10443), 1, sym_in, STATE(11954), 1, sym_else, @@ -470131,7 +470139,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_exhaustive_case_repeat1, STATE(9746), 1, sym_when, - STATE(10420), 1, + STATE(10443), 1, sym_in, STATE(10804), 1, sym_else, @@ -470607,7 +470615,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_exhaustive_case_repeat1, STATE(9746), 1, sym_when, - STATE(10420), 1, + STATE(10443), 1, sym_in, STATE(11935), 1, sym_else, @@ -471055,7 +471063,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_exhaustive_case_repeat1, STATE(9746), 1, sym_when, - STATE(10420), 1, + STATE(10443), 1, sym_in, STATE(11403), 1, sym_else, @@ -471237,7 +471245,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_exhaustive_case_repeat1, STATE(9746), 1, sym_when, - STATE(10420), 1, + STATE(10443), 1, sym_in, STATE(11144), 1, sym_else, @@ -471575,7 +471583,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_exhaustive_case_repeat1, STATE(9746), 1, sym_when, - STATE(10420), 1, + STATE(10443), 1, sym_in, STATE(10732), 1, sym_else, @@ -471778,7 +471786,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_exhaustive_case_repeat1, STATE(9746), 1, sym_when, - STATE(10420), 1, + STATE(10443), 1, sym_in, STATE(11619), 1, sym_else, @@ -472428,7 +472436,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_exhaustive_case_repeat1, STATE(9746), 1, sym_when, - STATE(10420), 1, + STATE(10443), 1, sym_in, STATE(10563), 1, sym_else, @@ -472631,7 +472639,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_exhaustive_case_repeat1, STATE(9746), 1, sym_when, - STATE(10420), 1, + STATE(10443), 1, sym_in, STATE(10823), 1, sym_else, @@ -473386,7 +473394,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_exhaustive_case_repeat1, STATE(9746), 1, sym_when, - STATE(10420), 1, + STATE(10443), 1, sym_in, STATE(11055), 1, sym_else, @@ -473516,7 +473524,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_exhaustive_case_repeat1, STATE(9746), 1, sym_when, - STATE(10420), 1, + STATE(10443), 1, sym_in, STATE(11296), 1, sym_else, @@ -473752,7 +473760,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_exhaustive_case_repeat1, STATE(9746), 1, sym_when, - STATE(10420), 1, + STATE(10443), 1, sym_in, STATE(11581), 1, sym_else, @@ -473830,7 +473838,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_exhaustive_case_repeat1, STATE(9746), 1, sym_when, - STATE(10420), 1, + STATE(10443), 1, sym_in, STATE(11816), 1, sym_else, @@ -474272,7 +474280,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_exhaustive_case_repeat1, STATE(9746), 1, sym_when, - STATE(10420), 1, + STATE(10443), 1, sym_in, STATE(11596), 1, sym_else, @@ -484147,7 +484155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, STATE(4933), 1, sym_heredoc_body, - STATE(10325), 1, + STATE(10338), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -490138,7 +490146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, STATE(5039), 1, sym_heredoc_body, - STATE(9965), 1, + STATE(9969), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -490191,7 +490199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, STATE(5040), 1, sym_heredoc_body, - STATE(10123), 1, + STATE(10136), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -495297,7 +495305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, STATE(5136), 1, sym_heredoc_body, - STATE(10284), 1, + STATE(10297), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -510362,7 +510370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, STATE(5425), 1, sym_heredoc_body, - STATE(9965), 1, + STATE(9969), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -514592,7 +514600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, STATE(5507), 1, sym_heredoc_body, - STATE(10242), 1, + STATE(10255), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -516018,7 +516026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, STATE(5535), 1, sym_heredoc_body, - STATE(10242), 1, + STATE(10255), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -527487,9 +527495,9 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9587), 1, sym__splattable_type, - STATE(10213), 1, + STATE(10226), 1, sym_named_type, - STATE(10410), 1, + STATE(10492), 1, sym__bare_type, STATE(11637), 1, sym_type_instance_param_list, @@ -527760,9 +527768,9 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9587), 1, sym__splattable_type, - STATE(10213), 1, + STATE(10226), 1, sym_named_type, - STATE(10410), 1, + STATE(10492), 1, sym__bare_type, STATE(11094), 1, sym_type_instance_param_list, @@ -528190,9 +528198,9 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9587), 1, sym__splattable_type, - STATE(10213), 1, + STATE(10226), 1, sym_named_type, - STATE(10410), 1, + STATE(10492), 1, sym__bare_type, STATE(11445), 1, sym_type_instance_param_list, @@ -528604,9 +528612,9 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9587), 1, sym__splattable_type, - STATE(10213), 1, + STATE(10226), 1, sym_named_type, - STATE(10410), 1, + STATE(10492), 1, sym__bare_type, STATE(11662), 1, sym_type_instance_param_list, @@ -528908,9 +528916,9 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9587), 1, sym__splattable_type, - STATE(10213), 1, + STATE(10226), 1, sym_named_type, - STATE(10410), 1, + STATE(10492), 1, sym__bare_type, STATE(10513), 1, sym_type_instance_param_list, @@ -528977,9 +528985,9 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9587), 1, sym__splattable_type, - STATE(10213), 1, + STATE(10226), 1, sym_named_type, - STATE(10410), 1, + STATE(10492), 1, sym__bare_type, STATE(11947), 1, sym_type_instance_param_list, @@ -529281,9 +529289,9 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9587), 1, sym__splattable_type, - STATE(10213), 1, + STATE(10226), 1, sym_named_type, - STATE(10410), 1, + STATE(10492), 1, sym__bare_type, STATE(10567), 1, sym_type_instance_param_list, @@ -529444,9 +529452,9 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9587), 1, sym__splattable_type, - STATE(10213), 1, + STATE(10226), 1, sym_named_type, - STATE(10410), 1, + STATE(10492), 1, sym__bare_type, STATE(10647), 1, sym_type_instance_param_list, @@ -529992,9 +530000,9 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9587), 1, sym__splattable_type, - STATE(10213), 1, + STATE(10226), 1, sym_named_type, - STATE(10410), 1, + STATE(10492), 1, sym__bare_type, STATE(10700), 1, sym_type_instance_param_list, @@ -530296,9 +530304,9 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9587), 1, sym__splattable_type, - STATE(10213), 1, + STATE(10226), 1, sym_named_type, - STATE(10410), 1, + STATE(10492), 1, sym__bare_type, STATE(10750), 1, sym_type_instance_param_list, @@ -530412,9 +530420,9 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9587), 1, sym__splattable_type, - STATE(10213), 1, + STATE(10226), 1, sym_named_type, - STATE(10410), 1, + STATE(10492), 1, sym__bare_type, STATE(10805), 1, sym_type_instance_param_list, @@ -530546,9 +530554,9 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9587), 1, sym__splattable_type, - STATE(10213), 1, + STATE(10226), 1, sym_named_type, - STATE(10410), 1, + STATE(10492), 1, sym__bare_type, STATE(10858), 1, sym_type_instance_param_list, @@ -530792,9 +530800,9 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9587), 1, sym__splattable_type, - STATE(10213), 1, + STATE(10226), 1, sym_named_type, - STATE(10410), 1, + STATE(10492), 1, sym__bare_type, STATE(10929), 1, sym_type_instance_param_list, @@ -531809,7 +531817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(5834), 1, sym_heredoc_body, - STATE(10096), 1, + STATE(10109), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -531978,9 +531986,9 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9587), 1, sym__splattable_type, - STATE(10213), 1, + STATE(10226), 1, sym_named_type, - STATE(10410), 1, + STATE(10492), 1, sym__bare_type, STATE(11436), 1, sym_type_instance_param_list, @@ -532605,7 +532613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(5850), 1, sym_heredoc_body, - STATE(9993), 1, + STATE(10000), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -533057,9 +533065,9 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9587), 1, sym__splattable_type, - STATE(10213), 1, + STATE(10226), 1, sym_named_type, - STATE(10410), 1, + STATE(10492), 1, sym__bare_type, STATE(11276), 1, sym_type_instance_param_list, @@ -534789,7 +534797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(5894), 1, sym_heredoc_body, - STATE(10104), 1, + STATE(10117), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -535061,9 +535069,9 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9587), 1, sym__splattable_type, - STATE(10213), 1, + STATE(10226), 1, sym_named_type, - STATE(10410), 1, + STATE(10492), 1, sym__bare_type, STATE(10765), 1, sym_type_instance_param_list, @@ -536441,9 +536449,9 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9587), 1, sym__splattable_type, - STATE(10213), 1, + STATE(10226), 1, sym_named_type, - STATE(10410), 1, + STATE(10492), 1, sym__bare_type, STATE(11364), 1, sym_type_instance_param_list, @@ -536557,9 +536565,9 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9587), 1, sym__splattable_type, - STATE(10213), 1, + STATE(10226), 1, sym_named_type, - STATE(10410), 1, + STATE(10492), 1, sym__bare_type, STATE(11625), 1, sym_type_instance_param_list, @@ -540648,9 +540656,9 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9587), 1, sym__splattable_type, - STATE(10213), 1, + STATE(10226), 1, sym_named_type, - STATE(10410), 1, + STATE(10492), 1, sym__bare_type, STATE(10568), 1, sym_type_instance_param_list, @@ -541087,7 +541095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6016), 1, sym_heredoc_body, - STATE(9937), 1, + STATE(9939), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -541508,9 +541516,9 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9587), 1, sym__splattable_type, - STATE(10213), 1, + STATE(10226), 1, sym_named_type, - STATE(10410), 1, + STATE(10492), 1, sym__bare_type, STATE(11555), 1, sym_type_instance_param_list, @@ -543674,7 +543682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6069), 1, sym_heredoc_body, - STATE(10054), 1, + STATE(10066), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -543873,7 +543881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6072), 1, sym_heredoc_body, - STATE(10013), 1, + STATE(10021), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -544014,9 +544022,9 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9587), 1, sym__splattable_type, - STATE(10213), 1, + STATE(10226), 1, sym_named_type, - STATE(10410), 1, + STATE(10492), 1, sym__bare_type, STATE(11063), 1, sym_type_instance_param_list, @@ -545196,7 +545204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6098), 1, sym_heredoc_body, - STATE(10103), 1, + STATE(10116), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -545476,9 +545484,9 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9587), 1, sym__splattable_type, - STATE(10213), 1, + STATE(10226), 1, sym_named_type, - STATE(10410), 1, + STATE(10492), 1, sym__bare_type, STATE(11311), 1, sym_type_instance_param_list, @@ -546061,7 +546069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6115), 1, sym_heredoc_body, - STATE(10219), 1, + STATE(10232), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -546229,9 +546237,9 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9587), 1, sym__splattable_type, - STATE(10213), 1, + STATE(10226), 1, sym_named_type, - STATE(10410), 1, + STATE(10492), 1, sym__bare_type, STATE(11588), 1, sym_type_instance_param_list, @@ -546874,7 +546882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6131), 1, sym_heredoc_body, - STATE(10344), 1, + STATE(10358), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -549075,9 +549083,9 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9587), 1, sym__splattable_type, - STATE(10213), 1, + STATE(10226), 1, sym_named_type, - STATE(10410), 1, + STATE(10492), 1, sym__bare_type, STATE(11141), 1, sym_type_instance_param_list, @@ -549665,7 +549673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6187), 1, sym_heredoc_body, - STATE(10092), 1, + STATE(10105), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -551963,9 +551971,9 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9587), 1, sym__splattable_type, - STATE(10213), 1, + STATE(10226), 1, sym_named_type, - STATE(10410), 1, + STATE(10492), 1, sym__bare_type, STATE(10829), 1, sym_type_instance_param_list, @@ -554704,7 +554712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(6286), 1, sym_heredoc_body, - STATE(9915), 1, + STATE(9916), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -555647,7 +555655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(6304), 1, sym_heredoc_body, - STATE(10306), 1, + STATE(10319), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -558118,7 +558126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(6354), 1, sym_heredoc_body, - STATE(10106), 1, + STATE(10119), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -558230,7 +558238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6356), 1, sym_heredoc_body, - STATE(10199), 1, + STATE(10212), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -558296,7 +558304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6357), 1, sym_heredoc_body, - STATE(10200), 1, + STATE(10213), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -558428,7 +558436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(6359), 1, sym_heredoc_body, - STATE(10134), 1, + STATE(10147), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -558874,7 +558882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(6367), 1, sym_heredoc_body, - STATE(10133), 1, + STATE(10146), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -558940,7 +558948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6368), 1, sym_heredoc_body, - STATE(10316), 1, + STATE(10329), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -559006,7 +559014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6369), 1, sym_heredoc_body, - STATE(10319), 1, + STATE(10332), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -559576,7 +559584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6378), 1, sym_heredoc_body, - STATE(10338), 1, + STATE(10352), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -560541,7 +560549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6395), 1, sym_heredoc_body, - STATE(9969), 1, + STATE(9973), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -560607,7 +560615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6396), 1, sym_heredoc_body, - STATE(9970), 1, + STATE(9974), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -560735,7 +560743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(6398), 1, sym_heredoc_body, - STATE(10022), 1, + STATE(10031), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -560801,7 +560809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6399), 1, sym_heredoc_body, - STATE(10046), 1, + STATE(10058), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -560867,7 +560875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6400), 1, sym_heredoc_body, - STATE(10048), 1, + STATE(10060), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -560933,7 +560941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(6401), 1, sym_heredoc_body, - STATE(10111), 1, + STATE(10124), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -561047,7 +561055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6403), 1, sym_heredoc_body, - STATE(10155), 1, + STATE(10168), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -561113,7 +561121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6404), 1, sym_heredoc_body, - STATE(10156), 1, + STATE(10169), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -561291,7 +561299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(6407), 1, sym_heredoc_body, - STATE(10225), 1, + STATE(10238), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -561357,7 +561365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6408), 1, sym_heredoc_body, - STATE(10248), 1, + STATE(10261), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -561423,7 +561431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6409), 1, sym_heredoc_body, - STATE(10251), 1, + STATE(10264), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -561489,7 +561497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(6410), 1, sym_heredoc_body, - STATE(10350), 1, + STATE(10364), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -561685,7 +561693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6413), 1, sym_heredoc_body, - STATE(10334), 1, + STATE(10348), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -561751,7 +561759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6414), 1, sym_heredoc_body, - STATE(10336), 1, + STATE(10350), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -562944,7 +562952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6434), 1, sym_heredoc_body, - STATE(9944), 1, + STATE(9946), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -563010,7 +563018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6435), 1, sym_heredoc_body, - STATE(9959), 1, + STATE(9962), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -563123,7 +563131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6437), 1, sym_heredoc_body, - STATE(10033), 1, + STATE(10044), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -563189,7 +563197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6438), 1, sym_heredoc_body, - STATE(10077), 1, + STATE(10090), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -563255,7 +563263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6439), 1, sym_heredoc_body, - STATE(10127), 1, + STATE(10140), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -563321,7 +563329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6440), 1, sym_heredoc_body, - STATE(10146), 1, + STATE(10159), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -563387,7 +563395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6441), 1, sym_heredoc_body, - STATE(10195), 1, + STATE(10208), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -563518,7 +563526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6443), 1, sym_heredoc_body, - STATE(10236), 1, + STATE(10249), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -563676,7 +563684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6446), 1, sym_heredoc_body, - STATE(10290), 1, + STATE(10303), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -563855,7 +563863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6449), 1, sym_heredoc_body, - STATE(10312), 1, + STATE(10325), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -563921,7 +563929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(6450), 1, sym_heredoc_body, - STATE(10326), 1, + STATE(10339), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -571438,7 +571446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(6583), 1, sym_heredoc_body, - STATE(10163), 1, + STATE(10176), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -594530,9 +594538,9 @@ static const uint16_t ts_small_parse_table[] = { sym__splattable_type, STATE(9469), 1, sym_splat_type, - STATE(10216), 1, + STATE(10229), 1, sym__bare_type, - STATE(10372), 1, + STATE(10412), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -595551,7 +595559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9614), 1, sym__splattable_type, - STATE(10451), 1, + STATE(10463), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -596071,7 +596079,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -596435,7 +596443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_splat_type, STATE(9669), 1, sym__bare_type, - STATE(10352), 1, + STATE(10366), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -598565,9 +598573,9 @@ static const uint16_t ts_small_parse_table[] = { sym__splattable_type, STATE(9326), 1, sym_splat_type, - STATE(10070), 1, + STATE(10083), 1, sym__bare_type, - STATE(10352), 1, + STATE(10366), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -602155,7 +602163,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -602415,7 +602423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9604), 1, sym__splattable_type, - STATE(10441), 1, + STATE(10403), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -602571,7 +602579,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -602675,7 +602683,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -602831,7 +602839,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -603143,7 +603151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9605), 1, sym__splattable_type, - STATE(10426), 1, + STATE(10408), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -603247,7 +603255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_splat_type, STATE(9594), 1, sym__bare_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -603351,7 +603359,7 @@ static const uint16_t ts_small_parse_table[] = { sym_splat_type, STATE(9600), 1, sym__bare_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -603611,7 +603619,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -604027,7 +604035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9608), 1, sym__splattable_type, - STATE(10393), 1, + STATE(10417), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -604131,7 +604139,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -604235,7 +604243,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -604339,7 +604347,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -604391,7 +604399,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -604755,7 +604763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9508), 1, sym__splattable_type, - STATE(10452), 1, + STATE(10486), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -604963,7 +604971,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -605119,7 +605127,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -605221,9 +605229,9 @@ static const uint16_t ts_small_parse_table[] = { sym__splattable_type, STATE(9326), 1, sym_splat_type, - STATE(10108), 1, + STATE(10121), 1, sym__bare_type, - STATE(10352), 1, + STATE(10366), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -605275,7 +605283,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -605483,7 +605491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9612), 1, sym__splattable_type, - STATE(10495), 1, + STATE(10397), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -605587,7 +605595,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -605691,7 +605699,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -605795,7 +605803,7 @@ static const uint16_t ts_small_parse_table[] = { sym__splattable_type, STATE(9358), 1, sym_proc_type, - STATE(10362), 1, + STATE(10406), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -606003,7 +606011,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -606263,7 +606271,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -606367,7 +606375,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -606575,7 +606583,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -606939,7 +606947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9616), 1, sym__splattable_type, - STATE(10397), 1, + STATE(10437), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -607043,7 +607051,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -607147,7 +607155,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -607459,7 +607467,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -607823,7 +607831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9617), 1, sym__splattable_type, - STATE(10506), 1, + STATE(10378), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -607927,7 +607935,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -608031,7 +608039,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -608187,7 +608195,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -608499,7 +608507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9621), 1, sym__splattable_type, - STATE(10488), 1, + STATE(10452), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -608603,7 +608611,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -608707,7 +608715,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -608915,7 +608923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_splat_type, STATE(9597), 1, sym__bare_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -609071,7 +609079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9627), 1, sym__splattable_type, - STATE(10496), 1, + STATE(10479), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -609175,7 +609183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_splat_type, STATE(9602), 1, sym__bare_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -609279,7 +609287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_splat_type, STATE(9603), 1, sym__bare_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -609383,7 +609391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_splat_type, STATE(9664), 1, sym__bare_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -609643,7 +609651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9629), 1, sym__splattable_type, - STATE(10446), 1, + STATE(10432), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -609747,7 +609755,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -609851,7 +609859,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -610059,7 +610067,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -610371,7 +610379,7 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9631), 1, sym__splattable_type, - STATE(10398), 1, + STATE(10428), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -610475,7 +610483,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -610579,7 +610587,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -610839,7 +610847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9632), 1, sym__splattable_type, - STATE(10472), 1, + STATE(10496), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -611203,7 +611211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9633), 1, sym__splattable_type, - STATE(10421), 1, + STATE(10448), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -611515,7 +611523,7 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9634), 1, sym__splattable_type, - STATE(10403), 1, + STATE(10459), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -611775,7 +611783,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -611879,7 +611887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9636), 1, sym__splattable_type, - STATE(10504), 1, + STATE(10449), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -612347,7 +612355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9637), 1, sym__splattable_type, - STATE(10448), 1, + STATE(10414), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -612607,7 +612615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9639), 1, sym__splattable_type, - STATE(10476), 1, + STATE(10444), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -612711,7 +612719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9640), 1, sym__splattable_type, - STATE(10392), 1, + STATE(10491), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -612763,7 +612771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9641), 1, sym__splattable_type, - STATE(10482), 1, + STATE(10467), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -612867,7 +612875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9651), 1, sym__splattable_type, - STATE(10447), 1, + STATE(10506), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -613335,7 +613343,7 @@ static const uint16_t ts_small_parse_table[] = { sym__splattable_type, STATE(9358), 1, sym_proc_type, - STATE(10443), 1, + STATE(10477), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -613751,7 +613759,7 @@ static const uint16_t ts_small_parse_table[] = { sym__splattable_type, STATE(9358), 1, sym_proc_type, - STATE(10498), 1, + STATE(10420), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -613855,7 +613863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9584), 1, sym__splattable_type, - STATE(10400), 1, + STATE(10429), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -614479,7 +614487,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -614583,7 +614591,7 @@ static const uint16_t ts_small_parse_table[] = { sym__splattable_type, STATE(9358), 1, sym_proc_type, - STATE(10401), 1, + STATE(10431), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -614791,7 +614799,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -615571,7 +615579,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_type, STATE(9588), 1, sym_splat_type, - STATE(10444), 1, + STATE(10410), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -615985,9 +615993,9 @@ static const uint16_t ts_small_parse_table[] = { sym__splattable_type, STATE(9326), 1, sym_splat_type, - STATE(10204), 1, + STATE(10217), 1, sym__bare_type, - STATE(10352), 1, + STATE(10366), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -616195,7 +616203,7 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9606), 1, sym__splattable_type, - STATE(10493), 1, + STATE(10475), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -616247,7 +616255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9630), 1, sym__splattable_type, - STATE(10501), 1, + STATE(10485), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -616299,7 +616307,7 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9635), 1, sym__splattable_type, - STATE(10363), 1, + STATE(10495), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -616351,7 +616359,7 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9638), 1, sym__splattable_type, - STATE(10368), 1, + STATE(10500), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -616455,7 +616463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9643), 1, sym__splattable_type, - STATE(10369), 1, + STATE(10501), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -616507,7 +616515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9644), 1, sym__splattable_type, - STATE(10370), 1, + STATE(10502), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -616559,7 +616567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9645), 1, sym__splattable_type, - STATE(10371), 1, + STATE(10503), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -616611,7 +616619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9646), 1, sym__splattable_type, - STATE(10374), 1, + STATE(10446), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -616663,7 +616671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9647), 1, sym__splattable_type, - STATE(10375), 1, + STATE(10447), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -617441,9 +617449,9 @@ static const uint16_t ts_small_parse_table[] = { sym__splattable_type, STATE(9469), 1, sym_splat_type, - STATE(10346), 1, + STATE(10360), 1, sym__bare_type, - STATE(10372), 1, + STATE(10412), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, @@ -618223,7 +618231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_proc_type, STATE(9625), 1, sym__splattable_type, - STATE(10391), 1, + STATE(10490), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, @@ -624091,7 +624099,7 @@ static const uint16_t ts_small_parse_table[] = { sym__type, STATE(9205), 1, sym_splat_type, - STATE(9958), 1, + STATE(9961), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, @@ -624187,7 +624195,7 @@ static const uint16_t ts_small_parse_table[] = { sym__type, STATE(9205), 1, sym_splat_type, - STATE(9924), 1, + STATE(9925), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, @@ -624235,7 +624243,7 @@ static const uint16_t ts_small_parse_table[] = { sym__type, STATE(9205), 1, sym_splat_type, - STATE(10226), 1, + STATE(10239), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, @@ -624425,7 +624433,7 @@ static const uint16_t ts_small_parse_table[] = { sym__type, STATE(9205), 1, sym_splat_type, - STATE(10116), 1, + STATE(10129), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, @@ -624521,7 +624529,7 @@ static const uint16_t ts_small_parse_table[] = { sym__type, STATE(9205), 1, sym_splat_type, - STATE(10142), 1, + STATE(10155), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, @@ -624569,7 +624577,7 @@ static const uint16_t ts_small_parse_table[] = { sym__type, STATE(9205), 1, sym_splat_type, - STATE(10281), 1, + STATE(10294), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, @@ -624617,7 +624625,7 @@ static const uint16_t ts_small_parse_table[] = { sym__type, STATE(9205), 1, sym_splat_type, - STATE(10285), 1, + STATE(10298), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, @@ -624713,7 +624721,7 @@ static const uint16_t ts_small_parse_table[] = { sym__type, STATE(9205), 1, sym_splat_type, - STATE(10307), 1, + STATE(10320), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, @@ -624855,7 +624863,7 @@ static const uint16_t ts_small_parse_table[] = { sym__type, STATE(9205), 1, sym_splat_type, - STATE(9963), 1, + STATE(9967), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, @@ -624903,7 +624911,7 @@ static const uint16_t ts_small_parse_table[] = { sym__type, STATE(9205), 1, sym_splat_type, - STATE(10240), 1, + STATE(10253), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, @@ -624951,7 +624959,7 @@ static const uint16_t ts_small_parse_table[] = { sym__type, STATE(9205), 1, sym_splat_type, - STATE(10190), 1, + STATE(10203), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, @@ -625047,7 +625055,7 @@ static const uint16_t ts_small_parse_table[] = { sym__type, STATE(9205), 1, sym_splat_type, - STATE(10323), 1, + STATE(10336), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, @@ -625095,7 +625103,7 @@ static const uint16_t ts_small_parse_table[] = { sym__type, STATE(9205), 1, sym_splat_type, - STATE(10017), 1, + STATE(10025), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, @@ -625143,7 +625151,7 @@ static const uint16_t ts_small_parse_table[] = { sym__type, STATE(9205), 1, sym_splat_type, - STATE(10138), 1, + STATE(10151), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, @@ -625239,7 +625247,7 @@ static const uint16_t ts_small_parse_table[] = { sym__type, STATE(9205), 1, sym_splat_type, - STATE(10135), 1, + STATE(10148), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, @@ -625287,7 +625295,7 @@ static const uint16_t ts_small_parse_table[] = { sym__type, STATE(9205), 1, sym_splat_type, - STATE(10068), 1, + STATE(10081), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, @@ -625335,7 +625343,7 @@ static const uint16_t ts_small_parse_table[] = { sym__type, STATE(9205), 1, sym_splat_type, - STATE(10164), 1, + STATE(10177), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, @@ -625383,7 +625391,7 @@ static const uint16_t ts_small_parse_table[] = { sym__type, STATE(9205), 1, sym_splat_type, - STATE(10038), 1, + STATE(10049), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, @@ -633665,7 +633673,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(9868), 2, sym_instance_var, sym_class_var, - STATE(10309), 3, + STATE(10322), 3, sym_param, sym_splat_param, sym_double_splat_param, @@ -633730,7 +633738,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(9868), 2, sym_instance_var, sym_class_var, - STATE(10309), 3, + STATE(10322), 3, sym_param, sym_splat_param, sym_double_splat_param, @@ -633795,7 +633803,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(9868), 2, sym_instance_var, sym_class_var, - STATE(10309), 3, + STATE(10322), 3, sym_param, sym_splat_param, sym_double_splat_param, @@ -633934,7 +633942,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(9868), 2, sym_instance_var, sym_class_var, - STATE(10309), 3, + STATE(10322), 3, sym_param, sym_splat_param, sym_double_splat_param, @@ -634100,7 +634108,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(9868), 2, sym_instance_var, sym_class_var, - STATE(10309), 3, + STATE(10322), 3, sym_param, sym_splat_param, sym_double_splat_param, @@ -634328,7 +634336,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(9868), 2, sym_instance_var, sym_class_var, - STATE(10309), 3, + STATE(10322), 3, sym_param, sym_splat_param, sym_double_splat_param, @@ -634546,7 +634554,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(9868), 2, sym_instance_var, sym_class_var, - STATE(10309), 3, + STATE(10322), 3, sym_param, sym_splat_param, sym_double_splat_param, @@ -634611,7 +634619,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(9868), 2, sym_instance_var, sym_class_var, - STATE(10309), 3, + STATE(10322), 3, sym_param, sym_splat_param, sym_double_splat_param, @@ -636022,7 +636030,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(9868), 2, sym_instance_var, sym_class_var, - STATE(10414), 3, + STATE(10470), 3, sym_param, sym_splat_param, sym_double_splat_param, @@ -637362,7 +637370,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(9868), 2, sym_instance_var, sym_class_var, - STATE(10414), 3, + STATE(10470), 3, sym_param, sym_splat_param, sym_double_splat_param, @@ -639097,7 +639105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, STATE(8086), 1, sym_heredoc_body, - STATE(10234), 1, + STATE(10247), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -639759,7 +639767,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(9868), 2, sym_instance_var, sym_class_var, - STATE(10414), 3, + STATE(10470), 3, sym_param, sym_splat_param, sym_double_splat_param, @@ -644001,7 +644009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8323), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -644025,7 +644033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8324), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -644093,7 +644101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8327), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -644117,7 +644125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8328), 1, sym_heredoc_body, - STATE(10464), 1, + STATE(10409), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -644161,7 +644169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8330), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -644209,7 +644217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8332), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -644233,7 +644241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8333), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -644293,7 +644301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8336), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -644361,7 +644369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8339), 1, sym_heredoc_body, - STATE(10464), 1, + STATE(10409), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -644385,7 +644393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8340), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -644409,7 +644417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(8341), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -644478,7 +644486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, STATE(9144), 1, aux_sym_param_repeat1, - STATE(9952), 1, + STATE(9955), 1, sym_param, STATE(10895), 1, sym_proc_param_list, @@ -644521,7 +644529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8346), 1, sym_heredoc_body, - STATE(10464), 1, + STATE(10409), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -644581,7 +644589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8349), 1, sym_heredoc_body, - STATE(10464), 1, + STATE(10409), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -644607,7 +644615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, STATE(9144), 1, aux_sym_param_repeat1, - STATE(9952), 1, + STATE(9955), 1, sym_param, STATE(10822), 1, sym_proc_param_list, @@ -644674,7 +644682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8353), 1, sym_heredoc_body, - STATE(10464), 1, + STATE(10409), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -644718,7 +644726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8355), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -644742,7 +644750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8356), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -644766,7 +644774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8357), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -644790,7 +644798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8358), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -644816,7 +644824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, STATE(9144), 1, aux_sym_param_repeat1, - STATE(9952), 1, + STATE(9955), 1, sym_param, STATE(11037), 1, sym_proc_param_list, @@ -644857,7 +644865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8361), 1, sym_heredoc_body, - STATE(10464), 1, + STATE(10409), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -644881,7 +644889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8362), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -644905,7 +644913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8363), 1, sym_heredoc_body, - STATE(10464), 1, + STATE(10409), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -644931,7 +644939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, STATE(9144), 1, aux_sym_param_repeat1, - STATE(9952), 1, + STATE(9955), 1, sym_param, STATE(11072), 1, sym_proc_param_list, @@ -644990,7 +644998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8367), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -645034,7 +645042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8369), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -645058,7 +645066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8370), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -645082,7 +645090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8371), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -645126,7 +645134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8373), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -645150,7 +645158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8374), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -645194,7 +645202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, STATE(9144), 1, aux_sym_param_repeat1, - STATE(9952), 1, + STATE(9955), 1, sym_param, STATE(11521), 1, sym_proc_param_list, @@ -645237,7 +645245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8378), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -645261,7 +645269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8379), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -645285,7 +645293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(8380), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -645329,7 +645337,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, STATE(9144), 1, aux_sym_param_repeat1, - STATE(9952), 1, + STATE(9955), 1, sym_param, STATE(11107), 1, sym_proc_param_list, @@ -645352,7 +645360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8383), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -645412,7 +645420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8386), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -645454,7 +645462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8388), 1, sym_heredoc_body, - STATE(10464), 1, + STATE(10409), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -645480,7 +645488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, STATE(9144), 1, aux_sym_param_repeat1, - STATE(9952), 1, + STATE(9955), 1, sym_param, STATE(10931), 1, sym_proc_param_list, @@ -645521,7 +645529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8391), 1, sym_heredoc_body, - STATE(10464), 1, + STATE(10409), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -645545,7 +645553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8392), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -645571,7 +645579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, STATE(9144), 1, aux_sym_param_repeat1, - STATE(9952), 1, + STATE(9955), 1, sym_param, STATE(10859), 1, sym_proc_param_list, @@ -645612,7 +645620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8395), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -645672,7 +645680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8398), 1, sym_heredoc_body, - STATE(10464), 1, + STATE(10409), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -645714,7 +645722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8400), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -645738,7 +645746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8401), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -645782,7 +645790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, STATE(9144), 1, aux_sym_param_repeat1, - STATE(9952), 1, + STATE(9955), 1, sym_param, STATE(11142), 1, sym_proc_param_list, @@ -645805,7 +645813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8404), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -645867,7 +645875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8407), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -645909,7 +645917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8409), 1, sym_heredoc_body, - STATE(10464), 1, + STATE(10409), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -645933,7 +645941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8410), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -646029,7 +646037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8415), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -646053,7 +646061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8416), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -646077,7 +646085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8417), 1, sym_heredoc_body, - STATE(10464), 1, + STATE(10409), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -646173,7 +646181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8422), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -646197,7 +646205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8423), 1, sym_heredoc_body, - STATE(10464), 1, + STATE(10409), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -646221,7 +646229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8424), 1, sym_heredoc_body, - STATE(10464), 1, + STATE(10409), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -646245,7 +646253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8425), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -646305,7 +646313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8428), 1, sym_heredoc_body, - STATE(10464), 1, + STATE(10409), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -646347,7 +646355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8430), 1, sym_heredoc_body, - STATE(10464), 1, + STATE(10409), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -646371,7 +646379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8431), 1, sym_heredoc_body, - STATE(10464), 1, + STATE(10409), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -646413,7 +646421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8433), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -646455,7 +646463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8435), 1, sym_heredoc_body, - STATE(10464), 1, + STATE(10409), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -646481,7 +646489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, STATE(9144), 1, aux_sym_param_repeat1, - STATE(9952), 1, + STATE(9955), 1, sym_param, STATE(10967), 1, sym_proc_param_list, @@ -646546,7 +646554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8439), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -646570,7 +646578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8440), 1, sym_heredoc_body, - STATE(10464), 1, + STATE(10409), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -646594,7 +646602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8441), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -646636,7 +646644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8443), 1, sym_heredoc_body, - STATE(10464), 1, + STATE(10409), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -646660,7 +646668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8444), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -646720,7 +646728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8447), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -646780,7 +646788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8450), 1, sym_heredoc_body, - STATE(10464), 1, + STATE(10409), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -646822,7 +646830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8452), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -646882,7 +646890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8455), 1, sym_heredoc_body, - STATE(10464), 1, + STATE(10409), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -646906,7 +646914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8456), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -646966,7 +646974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8459), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -646990,7 +646998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8460), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -647014,7 +647022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8461), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -647040,7 +647048,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, STATE(9144), 1, aux_sym_param_repeat1, - STATE(9952), 1, + STATE(9955), 1, sym_param, STATE(11002), 1, sym_proc_param_list, @@ -647063,7 +647071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8463), 1, sym_heredoc_body, - STATE(10464), 1, + STATE(10409), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -647087,7 +647095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8464), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -647188,7 +647196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8469), 1, sym_heredoc_body, - STATE(10464), 1, + STATE(10409), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -647214,7 +647222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, STATE(9144), 1, aux_sym_param_repeat1, - STATE(9952), 1, + STATE(9955), 1, sym_param, STATE(10734), 1, sym_proc_param_list, @@ -647257,7 +647265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8472), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -647281,7 +647289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8473), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -647305,7 +647313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8474), 1, sym_heredoc_body, - STATE(10464), 1, + STATE(10409), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -647347,7 +647355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8476), 1, sym_heredoc_body, - STATE(10464), 1, + STATE(10409), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -647395,7 +647403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8478), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -647480,7 +647488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8482), 1, sym_heredoc_body, - STATE(10464), 1, + STATE(10409), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -647504,7 +647512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8483), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -647585,7 +647593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, STATE(9144), 1, aux_sym_param_repeat1, - STATE(9952), 1, + STATE(9955), 1, sym_param, STATE(11216), 1, sym_proc_param_list, @@ -647629,7 +647637,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, STATE(9144), 1, aux_sym_param_repeat1, - STATE(9952), 1, + STATE(9955), 1, sym_param, STATE(10785), 1, sym_proc_param_list, @@ -647652,7 +647660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8490), 1, sym_heredoc_body, - STATE(10464), 1, + STATE(10409), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -647715,7 +647723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(8493), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -647767,7 +647775,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10222), 1, + STATE(10235), 1, sym_else, STATE(11548), 1, sym_ensure, @@ -647791,7 +647799,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10231), 1, + STATE(10244), 1, sym_else, STATE(11579), 1, sym_ensure, @@ -647996,7 +648004,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(8506), 1, sym_heredoc_body, - STATE(10359), 1, + STATE(10373), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -648058,7 +648066,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(9928), 1, + STATE(9929), 1, sym_else, STATE(11469), 1, sym_ensure, @@ -648105,7 +648113,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(9930), 1, + STATE(9931), 1, sym_else, STATE(11476), 1, sym_ensure, @@ -648129,7 +648137,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(9974), 1, + STATE(9978), 1, sym_else, STATE(11514), 1, sym_ensure, @@ -648315,7 +648323,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(9926), 1, + STATE(9927), 1, sym_else, STATE(10745), 1, sym_ensure, @@ -648396,7 +648404,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10266), 1, + STATE(10279), 1, sym_else, STATE(11689), 1, sym_ensure, @@ -648496,7 +648504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(8530), 1, sym_heredoc_body, - STATE(10072), 1, + STATE(10085), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -648548,7 +648556,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10276), 1, + STATE(10289), 1, sym_else, STATE(11712), 1, sym_ensure, @@ -648647,7 +648655,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(9984), 1, + STATE(9989), 1, sym_else, STATE(11386), 1, sym_ensure, @@ -648766,7 +648774,7 @@ static const uint16_t ts_small_parse_table[] = { sym__string_percent_literal_start, STATE(8543), 1, sym_heredoc_body, - STATE(10191), 1, + STATE(10204), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -648794,7 +648802,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10278), 1, + STATE(10291), 1, sym_else, STATE(11738), 1, sym_ensure, @@ -648818,7 +648826,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(9979), 1, + STATE(9984), 1, sym_else, STATE(11624), 1, sym_ensure, @@ -648911,7 +648919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(8550), 1, sym_heredoc_body, - STATE(10349), 1, + STATE(10363), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -649094,7 +649102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(8559), 1, sym_heredoc_body, - STATE(10016), 1, + STATE(10024), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -649170,7 +649178,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(9991), 1, + STATE(9997), 1, sym_else, STATE(11562), 1, sym_ensure, @@ -649194,7 +649202,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(9994), 1, + STATE(10001), 1, sym_else, STATE(11582), 1, sym_ensure, @@ -649218,7 +649226,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10004), 1, + STATE(10011), 1, sym_else, STATE(11592), 1, sym_ensure, @@ -649348,7 +649356,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(9923), 1, + STATE(9924), 1, sym_else, STATE(11370), 1, sym_ensure, @@ -649413,7 +649421,7 @@ static const uint16_t ts_small_parse_table[] = { sym__string_percent_literal_start, STATE(8573), 1, sym_heredoc_body, - STATE(10289), 1, + STATE(10302), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -649611,7 +649619,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10029), 1, + STATE(10039), 1, sym_else, STATE(11677), 1, sym_ensure, @@ -649821,7 +649829,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10064), 1, sym_else, STATE(11813), 1, sym_ensure, @@ -649845,7 +649853,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10059), 1, + STATE(10072), 1, sym_else, STATE(11920), 1, sym_ensure, @@ -650055,7 +650063,7 @@ static const uint16_t ts_small_parse_table[] = { sym__string_percent_literal_start, STATE(8603), 1, sym_heredoc_body, - STATE(10235), 1, + STATE(10248), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -650098,7 +650106,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, STATE(9144), 1, aux_sym_param_repeat1, - STATE(10364), 1, + STATE(10436), 1, sym_param, ACTIONS(5), 2, sym__line_continuation, @@ -650225,7 +650233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(8612), 1, sym_heredoc_body, - STATE(9919), 1, + STATE(9920), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -650271,7 +650279,7 @@ static const uint16_t ts_small_parse_table[] = { sym__string_percent_literal_start, STATE(8614), 1, sym_heredoc_body, - STATE(9964), 1, + STATE(9968), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -650339,7 +650347,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(8617), 1, sym_heredoc_body, - STATE(10000), 1, + STATE(10007), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -650431,7 +650439,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(9954), 1, + STATE(9957), 1, sym_else, STATE(10813), 1, sym_ensure, @@ -650455,7 +650463,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(9956), 1, + STATE(9959), 1, sym_else, STATE(10818), 1, sym_ensure, @@ -650479,7 +650487,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10303), 1, + STATE(10316), 1, sym_else, STATE(10935), 1, sym_ensure, @@ -650514,7 +650522,7 @@ static const uint16_t ts_small_parse_table[] = { sym__string_percent_literal_start, STATE(8625), 1, sym_heredoc_body, - STATE(10039), 1, + STATE(10050), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -650542,7 +650550,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10333), 1, + STATE(10347), 1, sym_else, STATE(11088), 1, sym_ensure, @@ -650625,7 +650633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(8630), 1, sym_heredoc_body, - STATE(10087), 1, + STATE(10100), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -650701,7 +650709,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10224), 1, + STATE(10237), 1, sym_else, STATE(11539), 1, sym_ensure, @@ -650749,7 +650757,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(9966), 1, + STATE(9970), 1, sym_else, STATE(10849), 1, sym_ensure, @@ -650773,7 +650781,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(9968), 1, + STATE(9972), 1, sym_else, STATE(10853), 1, sym_ensure, @@ -650821,7 +650829,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(9971), 1, + STATE(9975), 1, sym_else, STATE(10860), 1, sym_ensure, @@ -650883,7 +650891,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(9972), 1, + STATE(9976), 1, sym_else, STATE(10864), 1, sym_ensure, @@ -650925,7 +650933,7 @@ static const uint16_t ts_small_parse_table[] = { sym__string_percent_literal_start, STATE(8643), 1, sym_heredoc_body, - STATE(10144), 1, + STATE(10157), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -651004,7 +651012,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(9955), 1, + STATE(9958), 1, sym_else, STATE(10786), 1, sym_ensure, @@ -651039,7 +651047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(8649), 1, sym_heredoc_body, - STATE(10205), 1, + STATE(10218), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -651067,7 +651075,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(9978), 1, + STATE(9983), 1, sym_else, STATE(10887), 1, sym_ensure, @@ -651125,7 +651133,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(9980), 1, + STATE(9985), 1, sym_else, STATE(10897), 1, sym_ensure, @@ -651149,7 +651157,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(9936), 1, + STATE(9938), 1, sym_else, STATE(10771), 1, sym_ensure, @@ -651231,7 +651239,7 @@ static const uint16_t ts_small_parse_table[] = { sym__string_percent_literal_start, STATE(8658), 1, sym_heredoc_body, - STATE(10241), 1, + STATE(10254), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -651283,7 +651291,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(9985), 1, + STATE(9991), 1, sym_else, STATE(10921), 1, sym_ensure, @@ -651330,7 +651338,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(9986), 1, + STATE(9992), 1, sym_else, STATE(10925), 1, sym_ensure, @@ -651354,7 +651362,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(9987), 1, + STATE(9993), 1, sym_else, STATE(10928), 1, sym_ensure, @@ -651424,7 +651432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(8667), 1, sym_heredoc_body, - STATE(10293), 1, + STATE(10306), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -651476,7 +651484,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10294), 1, + STATE(10307), 1, sym_else, STATE(11807), 1, sym_ensure, @@ -651541,7 +651549,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9339), 1, sym_rescue_block, - STATE(10152), 1, + STATE(10165), 1, sym_else, STATE(10682), 1, sym_ensure, @@ -651600,7 +651608,7 @@ static const uint16_t ts_small_parse_table[] = { sym__string_percent_literal_start, STATE(8675), 1, sym_heredoc_body, - STATE(10189), 1, + STATE(10202), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -651652,7 +651660,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(9911), 1, + STATE(9912), 1, sym_else, STATE(11347), 1, sym_ensure, @@ -651710,7 +651718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(8680), 1, sym_heredoc_body, - STATE(10280), 1, + STATE(10293), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -651738,7 +651746,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10259), 1, + STATE(10272), 1, sym_else, STATE(11641), 1, sym_ensure, @@ -651870,7 +651878,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10026), 1, + STATE(10036), 1, sym_else, STATE(11041), 1, sym_ensure, @@ -651894,7 +651902,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10028), 1, + STATE(10038), 1, sym_else, STATE(11048), 1, sym_ensure, @@ -651935,7 +651943,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10007), 1, + STATE(10015), 1, sym_else, STATE(10985), 1, sym_ensure, @@ -651959,7 +651967,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10021), 1, + STATE(10030), 1, sym_else, STATE(11019), 1, sym_ensure, @@ -652026,7 +652034,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10043), 1, + STATE(10054), 1, sym_else, STATE(11087), 1, sym_ensure, @@ -652050,7 +652058,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(9914), 1, + STATE(9915), 1, sym_else, STATE(10708), 1, sym_ensure, @@ -652074,7 +652082,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10044), 1, + STATE(10056), 1, sym_else, STATE(11092), 1, sym_ensure, @@ -652098,7 +652106,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10034), 1, + STATE(10045), 1, sym_else, STATE(11059), 1, sym_ensure, @@ -652122,7 +652130,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10049), 1, + STATE(10061), 1, sym_else, STATE(11099), 1, sym_ensure, @@ -652146,7 +652154,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10056), 1, + STATE(10068), 1, sym_else, STATE(11114), 1, sym_ensure, @@ -652170,7 +652178,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10050), 1, + STATE(10062), 1, sym_else, STATE(11103), 1, sym_ensure, @@ -652217,7 +652225,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10271), 1, + STATE(10284), 1, sym_else, STATE(10764), 1, sym_ensure, @@ -652235,7 +652243,7 @@ static const uint16_t ts_small_parse_table[] = { sym__string_percent_literal_start, STATE(8703), 1, sym_heredoc_body, - STATE(9925), 1, + STATE(9926), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -652291,7 +652299,7 @@ static const uint16_t ts_small_parse_table[] = { sym__string_percent_literal_start, STATE(8706), 1, sym_heredoc_body, - STATE(10020), 1, + STATE(10028), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -652319,7 +652327,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10057), 1, + STATE(10070), 1, sym_else, STATE(11127), 1, sym_ensure, @@ -652343,7 +652351,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10360), 1, + STATE(10374), 1, sym_else, STATE(11136), 1, sym_ensure, @@ -652361,7 +652369,7 @@ static const uint16_t ts_small_parse_table[] = { sym__string_percent_literal_start, STATE(8709), 1, sym_heredoc_body, - STATE(10071), 1, + STATE(10084), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -652413,7 +652421,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10063), 1, + STATE(10076), 1, sym_else, STATE(11159), 1, sym_ensure, @@ -652437,7 +652445,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10066), 1, + STATE(10079), 1, sym_else, STATE(11164), 1, sym_ensure, @@ -652461,7 +652469,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10067), 1, + STATE(10080), 1, sym_else, STATE(11167), 1, sym_ensure, @@ -652503,7 +652511,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10131), 1, + STATE(10144), 1, sym_else, STATE(10545), 1, sym_ensure, @@ -652521,7 +652529,7 @@ static const uint16_t ts_small_parse_table[] = { sym__string_percent_literal_start, STATE(8716), 1, sym_heredoc_body, - STATE(10118), 1, + STATE(10131), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -652624,7 +652632,7 @@ static const uint16_t ts_small_parse_table[] = { sym__string_percent_literal_start, STATE(8721), 1, sym_heredoc_body, - STATE(10139), 1, + STATE(10152), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -652663,7 +652671,7 @@ static const uint16_t ts_small_parse_table[] = { sym__string_percent_literal_start, STATE(8723), 1, sym_heredoc_body, - STATE(10168), 1, + STATE(10181), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -652691,7 +652699,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10153), 1, + STATE(10166), 1, sym_else, STATE(10694), 1, sym_ensure, @@ -652715,7 +652723,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10207), 1, + STATE(10220), 1, sym_else, STATE(10720), 1, sym_ensure, @@ -652733,7 +652741,7 @@ static const uint16_t ts_small_parse_table[] = { sym__string_percent_literal_start, STATE(8726), 1, sym_heredoc_body, - STATE(10233), 1, + STATE(10246), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -652813,7 +652821,7 @@ static const uint16_t ts_small_parse_table[] = { sym__string_percent_literal_start, STATE(8730), 1, sym_heredoc_body, - STATE(10282), 1, + STATE(10295), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -652853,7 +652861,7 @@ static const uint16_t ts_small_parse_table[] = { sym__string_percent_literal_start, STATE(8732), 1, sym_heredoc_body, - STATE(10308), 1, + STATE(10321), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -652875,7 +652883,7 @@ static const uint16_t ts_small_parse_table[] = { sym__string_percent_literal_start, STATE(8733), 1, sym_heredoc_body, - STATE(10324), 1, + STATE(10337), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -652963,7 +652971,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10120), 1, + STATE(10133), 1, sym_else, STATE(11286), 1, sym_ensure, @@ -652987,7 +652995,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10121), 1, + STATE(10134), 1, sym_else, STATE(11292), 1, sym_ensure, @@ -653011,7 +653019,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10304), 1, + STATE(10317), 1, sym_else, STATE(10844), 1, sym_ensure, @@ -653035,7 +653043,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10150), 1, + STATE(10163), 1, sym_else, STATE(11359), 1, sym_ensure, @@ -653059,7 +653067,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10154), 1, + STATE(10167), 1, sym_else, STATE(11369), 1, sym_ensure, @@ -653083,7 +653091,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10311), 1, + STATE(10324), 1, sym_else, STATE(10857), 1, sym_ensure, @@ -653118,7 +653126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(8744), 1, sym_heredoc_body, - STATE(10320), 1, + STATE(10333), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -653146,7 +653154,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10157), 1, + STATE(10170), 1, sym_else, STATE(11375), 1, sym_ensure, @@ -653170,7 +653178,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10161), 1, + STATE(10174), 1, sym_else, STATE(11385), 1, sym_ensure, @@ -653194,7 +653202,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10283), 1, + STATE(10296), 1, sym_else, STATE(11768), 1, sym_ensure, @@ -653218,7 +653226,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10321), 1, + STATE(10334), 1, sym_else, STATE(10908), 1, sym_ensure, @@ -653242,7 +653250,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10327), 1, + STATE(10340), 1, sym_else, STATE(10951), 1, sym_ensure, @@ -653347,7 +653355,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10170), 1, + STATE(10183), 1, sym_else, STATE(11412), 1, sym_ensure, @@ -653395,7 +653403,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10173), 1, + STATE(10186), 1, sym_else, STATE(11422), 1, sym_ensure, @@ -653552,7 +653560,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10184), 1, + STATE(10197), 1, sym_else, STATE(11449), 1, sym_ensure, @@ -653576,7 +653584,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10185), 1, + STATE(10198), 1, sym_else, STATE(11453), 1, sym_ensure, @@ -653600,7 +653608,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10186), 1, + STATE(10199), 1, sym_else, STATE(11456), 1, sym_ensure, @@ -653641,7 +653649,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10341), 1, + STATE(10355), 1, sym_else, STATE(11130), 1, sym_ensure, @@ -653713,7 +653721,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10355), 1, + STATE(10369), 1, sym_else, STATE(11174), 1, sym_ensure, @@ -653754,7 +653762,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(9947), 1, + STATE(9949), 1, sym_else, STATE(10793), 1, sym_ensure, @@ -653778,7 +653786,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(9960), 1, + STATE(9963), 1, sym_else, STATE(10832), 1, sym_ensure, @@ -653853,7 +653861,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10140), 1, + STATE(10153), 1, sym_else, STATE(11338), 1, sym_ensure, @@ -653911,7 +653919,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10159), 1, + STATE(10172), 1, sym_else, STATE(11373), 1, sym_ensure, @@ -654021,7 +654029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_annotation, STATE(9144), 1, aux_sym_param_repeat1, - STATE(10364), 1, + STATE(10436), 1, sym_param, ACTIONS(5), 2, sym__line_continuation, @@ -654157,7 +654165,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10110), 1, + STATE(10123), 1, sym_else, STATE(11259), 1, sym_ensure, @@ -654181,7 +654189,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10122), 1, + STATE(10135), 1, sym_else, STATE(11285), 1, sym_ensure, @@ -654264,7 +654272,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10165), 1, + STATE(10178), 1, sym_else, STATE(11397), 1, sym_ensure, @@ -654305,7 +654313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(8800), 1, sym_heredoc_body, - STATE(10288), 1, + STATE(10301), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -654388,7 +654396,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10229), 1, + STATE(10242), 1, sym_else, STATE(11572), 1, sym_ensure, @@ -654436,7 +654444,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10230), 1, + STATE(10243), 1, sym_else, STATE(11577), 1, sym_ensure, @@ -654460,7 +654468,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10187), 1, + STATE(10200), 1, sym_else, STATE(11451), 1, sym_ensure, @@ -654582,7 +654590,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10245), 1, + STATE(10258), 1, sym_else, STATE(11609), 1, sym_ensure, @@ -654606,7 +654614,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10246), 1, + STATE(10259), 1, sym_else, STATE(11615), 1, sym_ensure, @@ -654654,7 +654662,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10253), 1, + STATE(10266), 1, sym_else, STATE(11623), 1, sym_ensure, @@ -654678,7 +654686,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10254), 1, + STATE(10267), 1, sym_else, STATE(11629), 1, sym_ensure, @@ -654760,7 +654768,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10220), 1, + STATE(10233), 1, sym_else, STATE(11527), 1, sym_ensure, @@ -654818,7 +654826,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9339), 1, sym_rescue_block, - STATE(10193), 1, + STATE(10206), 1, sym_else, STATE(11475), 1, sym_ensure, @@ -654842,7 +654850,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10263), 1, + STATE(10276), 1, sym_else, STATE(11674), 1, sym_ensure, @@ -654866,7 +654874,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(9990), 1, + STATE(9996), 1, sym_else, STATE(10947), 1, sym_ensure, @@ -654890,7 +654898,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10264), 1, + STATE(10277), 1, sym_else, STATE(11683), 1, sym_ensure, @@ -654914,7 +654922,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10196), 1, + STATE(10209), 1, sym_else, STATE(11483), 1, sym_ensure, @@ -654938,7 +654946,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10292), 1, + STATE(10305), 1, sym_else, STATE(11767), 1, sym_ensure, @@ -654979,7 +654987,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(9992), 1, + STATE(9999), 1, sym_else, STATE(10952), 1, sym_ensure, @@ -655075,7 +655083,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10272), 1, + STATE(10285), 1, sym_else, STATE(11710), 1, sym_ensure, @@ -655093,7 +655101,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(8836), 1, sym_heredoc_body, - STATE(10464), 1, + STATE(10409), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, @@ -655121,7 +655129,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10273), 1, + STATE(10286), 1, sym_else, STATE(11717), 1, sym_ensure, @@ -655162,7 +655170,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10275), 1, + STATE(10288), 1, sym_else, STATE(11724), 1, sym_ensure, @@ -655311,7 +655319,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(9995), 1, + STATE(10002), 1, sym_else, STATE(10960), 1, sym_ensure, @@ -655369,7 +655377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9339), 1, sym_rescue_block, - STATE(10202), 1, + STATE(10215), 1, sym_else, STATE(11497), 1, sym_ensure, @@ -655440,7 +655448,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10206), 1, + STATE(10219), 1, sym_else, STATE(11504), 1, sym_ensure, @@ -655540,7 +655548,7 @@ static const uint16_t ts_small_parse_table[] = { sym__string_percent_literal_start, STATE(8857), 1, sym_heredoc_body, - STATE(9981), 1, + STATE(9986), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, @@ -655753,7 +655761,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10003), 1, + STATE(10010), 1, sym_else, STATE(11848), 1, sym_ensure, @@ -655874,7 +655882,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10302), 1, + STATE(10315), 1, sym_else, STATE(11966), 1, sym_ensure, @@ -655898,7 +655906,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10058), 1, + STATE(10071), 1, sym_else, STATE(11444), 1, sym_ensure, @@ -656041,7 +656049,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10194), 1, + STATE(10207), 1, sym_else, STATE(11479), 1, sym_ensure, @@ -656065,7 +656073,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10313), 1, + STATE(10326), 1, sym_else, STATE(11401), 1, sym_ensure, @@ -656089,7 +656097,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_def_repeat1, STATE(9339), 1, sym_rescue_block, - STATE(10332), 1, + STATE(10346), 1, sym_else, STATE(11496), 1, sym_ensure, @@ -656161,7 +656169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9339), 1, sym_rescue_block, - STATE(10342), 1, + STATE(10356), 1, sym_else, STATE(10534), 1, sym_ensure, @@ -656861,7 +656869,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10480), 3, + STATE(10504), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, @@ -658060,7 +658068,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9997), 2, + STATE(10004), 2, sym_constant, sym_type_param_splat, [392928] = 9, @@ -658456,7 +658464,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10095), 2, + STATE(10108), 2, sym_do_end_block, sym_brace_block, ACTIONS(5510), 3, @@ -658479,7 +658487,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10480), 3, + STATE(10504), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, @@ -660762,7 +660770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9144), 1, aux_sym_param_repeat1, - STATE(10364), 1, + STATE(10436), 1, sym_param, ACTIONS(5), 2, sym__line_continuation, @@ -661096,7 +661104,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10404), 2, + STATE(10390), 2, sym_constant, sym_type_param_splat, [397253] = 9, @@ -661154,7 +661162,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10404), 2, + STATE(10390), 2, sym_constant, sym_type_param_splat, [397336] = 4, @@ -661646,7 +661654,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10480), 3, + STATE(10504), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, @@ -663267,7 +663275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, STATE(9244), 1, sym_heredoc_body, - STATE(10088), 1, + STATE(10101), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -664108,7 +664116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, STATE(9295), 1, sym_heredoc_body, - STATE(10147), 1, + STATE(10160), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -664232,7 +664240,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10404), 2, + STATE(10390), 2, sym_constant, sym_type_param_splat, [401686] = 7, @@ -664606,7 +664614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9375), 1, aux_sym_exhaustive_case_repeat1, - STATE(10420), 1, + STATE(10443), 1, sym_in, ACTIONS(5), 2, sym__line_continuation, @@ -664680,7 +664688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9430), 1, aux_sym_string_array_percent_literal_repeat1, - STATE(10463), 1, + STATE(10481), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -664725,7 +664733,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9336), 1, aux_sym_string_array_percent_literal_repeat1, - STATE(10463), 1, + STATE(10481), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -664741,7 +664749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9337), 1, aux_sym_symbol_array_percent_literal_repeat1, - STATE(10412), 1, + STATE(10433), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -664771,7 +664779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9459), 1, aux_sym_string_array_percent_literal_repeat1, - STATE(10463), 1, + STATE(10481), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -664787,7 +664795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9462), 1, aux_sym_symbol_array_percent_literal_repeat1, - STATE(10412), 1, + STATE(10433), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -664832,7 +664840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9375), 1, aux_sym_exhaustive_case_repeat1, - STATE(10420), 1, + STATE(10443), 1, sym_in, ACTIONS(5), 2, sym__line_continuation, @@ -664863,7 +664871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9375), 1, aux_sym_exhaustive_case_repeat1, - STATE(10420), 1, + STATE(10443), 1, sym_in, ACTIONS(5), 2, sym__line_continuation, @@ -664924,7 +664932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9474), 1, aux_sym_symbol_array_percent_literal_repeat1, - STATE(10412), 1, + STATE(10433), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -664968,7 +664976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9375), 1, aux_sym_exhaustive_case_repeat1, - STATE(10420), 1, + STATE(10443), 1, sym_in, ACTIONS(5), 2, sym__line_continuation, @@ -665012,7 +665020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9356), 1, aux_sym_string_array_percent_literal_repeat1, - STATE(10463), 1, + STATE(10481), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -665028,7 +665036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9357), 1, aux_sym_symbol_array_percent_literal_repeat1, - STATE(10412), 1, + STATE(10433), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -665070,7 +665078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9459), 1, aux_sym_string_array_percent_literal_repeat1, - STATE(10463), 1, + STATE(10481), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -665086,7 +665094,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9462), 1, aux_sym_symbol_array_percent_literal_repeat1, - STATE(10412), 1, + STATE(10433), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -665263,7 +665271,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9393), 1, aux_sym_string_array_percent_literal_repeat1, - STATE(10463), 1, + STATE(10481), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -665279,7 +665287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9394), 1, aux_sym_symbol_array_percent_literal_repeat1, - STATE(10412), 1, + STATE(10433), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -665295,7 +665303,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9375), 1, aux_sym_exhaustive_case_repeat1, - STATE(10420), 1, + STATE(10443), 1, sym_in, ACTIONS(5), 2, sym__line_continuation, @@ -665339,7 +665347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_end, ACTIONS(11887), 1, anon_sym_in, - STATE(10420), 1, + STATE(10443), 1, sym_in, ACTIONS(5), 2, sym__line_continuation, @@ -665373,7 +665381,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_exhaustive_case_repeat1, STATE(9377), 1, sym_heredoc_body, - STATE(10420), 1, + STATE(10443), 1, sym_in, ACTIONS(5), 2, sym__line_continuation, @@ -665627,7 +665635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9459), 1, aux_sym_string_array_percent_literal_repeat1, - STATE(10463), 1, + STATE(10481), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -665643,7 +665651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9462), 1, aux_sym_symbol_array_percent_literal_repeat1, - STATE(10412), 1, + STATE(10433), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -665919,7 +665927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9417), 1, aux_sym_string_array_percent_literal_repeat1, - STATE(10463), 1, + STATE(10481), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -665935,7 +665943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9418), 1, aux_sym_symbol_array_percent_literal_repeat1, - STATE(10412), 1, + STATE(10433), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -665977,7 +665985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9459), 1, aux_sym_string_array_percent_literal_repeat1, - STATE(10463), 1, + STATE(10481), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -665993,7 +666001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9462), 1, aux_sym_symbol_array_percent_literal_repeat1, - STATE(10412), 1, + STATE(10433), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -666158,7 +666166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9459), 1, aux_sym_string_array_percent_literal_repeat1, - STATE(10463), 1, + STATE(10481), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -666481,7 +666489,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_exhaustive_case_repeat1, STATE(9454), 1, sym_heredoc_body, - STATE(10420), 1, + STATE(10443), 1, sym_in, ACTIONS(5), 2, sym__line_continuation, @@ -666549,7 +666557,7 @@ static const uint16_t ts_small_parse_table[] = { sym__percent_literal_end, ACTIONS(11948), 1, sym__delimited_array_element_start, - STATE(10463), 1, + STATE(10481), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -666592,7 +666600,7 @@ static const uint16_t ts_small_parse_table[] = { sym__percent_literal_end, ACTIONS(11953), 1, sym__delimited_array_element_start, - STATE(10412), 1, + STATE(10433), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -666624,7 +666632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9467), 1, aux_sym_string_array_percent_literal_repeat1, - STATE(10463), 1, + STATE(10481), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -666640,7 +666648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9468), 1, aux_sym_symbol_array_percent_literal_repeat1, - STATE(10412), 1, + STATE(10433), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -666656,7 +666664,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_exhaustive_case_repeat1, STATE(9466), 1, sym_heredoc_body, - STATE(10420), 1, + STATE(10443), 1, sym_in, ACTIONS(5), 2, sym__line_continuation, @@ -666672,7 +666680,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_array_percent_literal_repeat1, STATE(9467), 1, sym_heredoc_body, - STATE(10463), 1, + STATE(10481), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -666688,7 +666696,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_symbol_array_percent_literal_repeat1, STATE(9468), 1, sym_heredoc_body, - STATE(10412), 1, + STATE(10433), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -666732,7 +666740,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_exhaustive_case_repeat1, STATE(9471), 1, sym_heredoc_body, - STATE(10420), 1, + STATE(10443), 1, sym_in, ACTIONS(5), 2, sym__line_continuation, @@ -666778,7 +666786,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_symbol_array_percent_literal_repeat1, STATE(9474), 1, sym_heredoc_body, - STATE(10412), 1, + STATE(10433), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -666810,7 +666818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9486), 1, aux_sym_string_array_percent_literal_repeat1, - STATE(10463), 1, + STATE(10481), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -666826,7 +666834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9487), 1, aux_sym_symbol_array_percent_literal_repeat1, - STATE(10412), 1, + STATE(10433), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -666968,7 +666976,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_array_percent_literal_repeat1, STATE(9486), 1, sym_heredoc_body, - STATE(10463), 1, + STATE(10481), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -666984,7 +666992,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_symbol_array_percent_literal_repeat1, STATE(9487), 1, sym_heredoc_body, - STATE(10412), 1, + STATE(10433), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -667190,7 +667198,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_exhaustive_case_repeat1, STATE(9500), 1, sym_heredoc_body, - STATE(10420), 1, + STATE(10443), 1, sym_in, ACTIONS(5), 2, sym__line_continuation, @@ -667362,7 +667370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9513), 1, aux_sym_string_array_percent_literal_repeat1, - STATE(10463), 1, + STATE(10481), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -667394,7 +667402,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_array_percent_literal_repeat1, STATE(9513), 1, sym_heredoc_body, - STATE(10463), 1, + STATE(10481), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -667410,7 +667418,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_symbol_array_percent_literal_repeat1, STATE(9514), 1, sym_heredoc_body, - STATE(10412), 1, + STATE(10433), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -667583,7 +667591,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_exhaustive_case_repeat1, STATE(9525), 1, sym_heredoc_body, - STATE(10420), 1, + STATE(10443), 1, sym_in, ACTIONS(5), 2, sym__line_continuation, @@ -667643,7 +667651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9537), 1, aux_sym_string_array_percent_literal_repeat1, - STATE(10463), 1, + STATE(10481), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -667659,7 +667667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9538), 1, aux_sym_symbol_array_percent_literal_repeat1, - STATE(10412), 1, + STATE(10433), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -667768,7 +667776,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_array_percent_literal_repeat1, STATE(9537), 1, sym_heredoc_body, - STATE(10463), 1, + STATE(10481), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -667784,7 +667792,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_symbol_array_percent_literal_repeat1, STATE(9538), 1, sym_heredoc_body, - STATE(10412), 1, + STATE(10433), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -667816,7 +667824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9543), 1, aux_sym_string_array_percent_literal_repeat1, - STATE(10463), 1, + STATE(10481), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -667832,7 +667840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9544), 1, aux_sym_symbol_array_percent_literal_repeat1, - STATE(10412), 1, + STATE(10433), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -667864,7 +667872,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_array_percent_literal_repeat1, STATE(9543), 1, sym_heredoc_body, - STATE(10463), 1, + STATE(10481), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -667880,7 +667888,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_symbol_array_percent_literal_repeat1, STATE(9544), 1, sym_heredoc_body, - STATE(10412), 1, + STATE(10433), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -668019,7 +668027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9620), 1, aux_sym_string_array_percent_literal_repeat1, - STATE(10463), 1, + STATE(10481), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -668099,7 +668107,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_exhaustive_case_repeat1, STATE(9558), 1, sym_heredoc_body, - STATE(10420), 1, + STATE(10443), 1, sym_in, ACTIONS(5), 2, sym__line_continuation, @@ -668451,7 +668459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9622), 1, aux_sym_symbol_array_percent_literal_repeat1, - STATE(10412), 1, + STATE(10433), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -668527,7 +668535,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_exhaustive_case_repeat1, STATE(9585), 1, sym_heredoc_body, - STATE(10420), 1, + STATE(10443), 1, sym_in, ACTIONS(5), 2, sym__line_continuation, @@ -668587,7 +668595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9591), 1, aux_sym_string_array_percent_literal_repeat1, - STATE(10463), 1, + STATE(10481), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -668603,7 +668611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9592), 1, aux_sym_symbol_array_percent_literal_repeat1, - STATE(10412), 1, + STATE(10433), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -668619,7 +668627,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_array_percent_literal_repeat1, STATE(9591), 1, sym_heredoc_body, - STATE(10463), 1, + STATE(10481), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -668635,7 +668643,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_symbol_array_percent_literal_repeat1, STATE(9592), 1, sym_heredoc_body, - STATE(10412), 1, + STATE(10433), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -668723,7 +668731,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_exhaustive_case_repeat1, STATE(9598), 1, sym_heredoc_body, - STATE(10420), 1, + STATE(10443), 1, sym_in, ACTIONS(5), 2, sym__line_continuation, @@ -668924,7 +668932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9618), 1, aux_sym_string_array_percent_literal_repeat1, - STATE(10463), 1, + STATE(10481), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -668956,7 +668964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9619), 1, aux_sym_symbol_array_percent_literal_repeat1, - STATE(10412), 1, + STATE(10433), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -669033,7 +669041,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_array_percent_literal_repeat1, STATE(9618), 1, sym_heredoc_body, - STATE(10463), 1, + STATE(10481), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -669049,7 +669057,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_symbol_array_percent_literal_repeat1, STATE(9619), 1, sym_heredoc_body, - STATE(10412), 1, + STATE(10433), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -669065,7 +669073,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_array_percent_literal_repeat1, STATE(9620), 1, sym_heredoc_body, - STATE(10463), 1, + STATE(10481), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -669097,7 +669105,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_symbol_array_percent_literal_repeat1, STATE(9622), 1, sym_heredoc_body, - STATE(10412), 1, + STATE(10433), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -669128,7 +669136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9665), 1, aux_sym_string_array_percent_literal_repeat1, - STATE(10463), 1, + STATE(10481), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -669160,7 +669168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_body, STATE(9666), 1, aux_sym_symbol_array_percent_literal_repeat1, - STATE(10412), 1, + STATE(10433), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -669781,7 +669789,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_array_percent_literal_repeat1, STATE(9665), 1, sym_heredoc_body, - STATE(10463), 1, + STATE(10481), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -669797,7 +669805,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_symbol_array_percent_literal_repeat1, STATE(9666), 1, sym_heredoc_body, - STATE(10412), 1, + STATE(10433), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -669813,7 +669821,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_symbol_array_percent_literal_repeat1, STATE(9667), 1, sym_heredoc_body, - STATE(10412), 1, + STATE(10433), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, @@ -669964,7 +669972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9678), 1, sym_heredoc_body, - STATE(9933), 1, + STATE(9934), 1, aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -669992,7 +670000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9680), 1, sym_heredoc_body, - STATE(10062), 1, + STATE(10075), 1, aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -670034,7 +670042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9683), 1, sym_heredoc_body, - STATE(9988), 1, + STATE(9994), 1, aux_sym__block_body_nested_param_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -670060,7 +670068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9685), 1, sym_heredoc_body, - STATE(10322), 1, + STATE(10335), 1, aux_sym_implicit_object_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -670282,7 +670290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9701), 1, sym_heredoc_body, - STATE(10318), 1, + STATE(10331), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -670518,7 +670526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9718), 1, sym_heredoc_body, - STATE(10318), 1, + STATE(10331), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -670642,7 +670650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9727), 1, sym_heredoc_body, - STATE(10002), 1, + STATE(10009), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -670726,7 +670734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9733), 1, sym_heredoc_body, - STATE(9933), 1, + STATE(9934), 1, aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -670740,7 +670748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9734), 1, sym_heredoc_body, - STATE(10002), 1, + STATE(10009), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -670818,7 +670826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9740), 1, sym_heredoc_body, - STATE(10062), 1, + STATE(10075), 1, aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -670926,7 +670934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9748), 1, sym_heredoc_body, - STATE(10002), 1, + STATE(10009), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -670994,7 +671002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9753), 1, sym_heredoc_body, - STATE(9933), 1, + STATE(9934), 1, aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -671008,7 +671016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9754), 1, sym_heredoc_body, - STATE(9933), 1, + STATE(9934), 1, aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -671092,7 +671100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, STATE(9760), 1, sym_heredoc_body, - STATE(10014), 1, + STATE(10022), 1, aux_sym_block_param_list_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -671145,7 +671153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9764), 1, sym_heredoc_body, - STATE(10318), 1, + STATE(10331), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -671173,7 +671181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9766), 1, sym_heredoc_body, - STATE(9996), 1, + STATE(10003), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -671187,7 +671195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9767), 1, sym_heredoc_body, - STATE(10062), 1, + STATE(10075), 1, aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -671215,7 +671223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9769), 1, sym_heredoc_body, - STATE(10001), 1, + STATE(10008), 1, aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -671462,7 +671470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9787), 1, sym_heredoc_body, - STATE(10318), 1, + STATE(10331), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -671546,7 +671554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9793), 1, sym_heredoc_body, - STATE(10002), 1, + STATE(10009), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -671742,7 +671750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9807), 1, sym_heredoc_body, - STATE(10318), 1, + STATE(10331), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -671877,7 +671885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9817), 1, sym_heredoc_body, - STATE(10002), 1, + STATE(10009), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -671905,7 +671913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9819), 1, sym_heredoc_body, - STATE(10008), 1, + STATE(10016), 1, aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -672041,7 +672049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9829), 1, sym_heredoc_body, - STATE(10338), 1, + STATE(10352), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -672081,7 +672089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9832), 1, sym_heredoc_body, - STATE(10002), 1, + STATE(10009), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -672135,7 +672143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9836), 1, sym_heredoc_body, - STATE(9933), 1, + STATE(9934), 1, aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -672163,7 +672171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9838), 1, sym_heredoc_body, - STATE(10062), 1, + STATE(10075), 1, aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -672177,7 +672185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9839), 1, sym_heredoc_body, - STATE(9920), 1, + STATE(9921), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -672191,7 +672199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9840), 1, sym_heredoc_body, - STATE(9921), 1, + STATE(9922), 1, aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -672457,7 +672465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9859), 1, sym_heredoc_body, - STATE(10318), 1, + STATE(10331), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -672485,7 +672493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9861), 1, sym_heredoc_body, - STATE(10318), 1, + STATE(10331), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -672583,7 +672591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9868), 1, sym_heredoc_body, - STATE(10002), 1, + STATE(10009), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -672653,7 +672661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9873), 1, sym_heredoc_body, - STATE(10318), 1, + STATE(10331), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -672681,7 +672689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9875), 1, sym_heredoc_body, - STATE(10318), 1, + STATE(10331), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -672835,7 +672843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9886), 1, sym_heredoc_body, - STATE(10318), 1, + STATE(10331), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -672905,7 +672913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9891), 1, sym_heredoc_body, - STATE(10318), 1, + STATE(10331), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -672933,7 +672941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9893), 1, sym_heredoc_body, - STATE(10318), 1, + STATE(10331), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -672989,7 +672997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9897), 1, sym_heredoc_body, - STATE(10318), 1, + STATE(10331), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -673017,7 +673025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9899), 1, sym_heredoc_body, - STATE(10318), 1, + STATE(10331), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -673101,7 +673109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9905), 1, sym_heredoc_body, - STATE(10318), 1, + STATE(10331), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -673129,7 +673137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9907), 1, sym_heredoc_body, - STATE(10318), 1, + STATE(10331), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -673149,6 +673157,20 @@ static const uint16_t ts_small_parse_table[] = { sym__line_continuation, sym_comment, [414278] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(12727), 1, + aux_sym_char_token1, + STATE(9909), 1, + sym_heredoc_body, + ACTIONS(12729), 2, + sym__char_comment, + sym_char_escape_sequence, + [414298] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(9303), 1, @@ -673157,12 +673179,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, STATE(9280), 1, sym_constant, - STATE(9909), 1, + STATE(9910), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414298] = 6, + [414318] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(8038), 1, @@ -673171,349 +673193,363 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, STATE(9698), 1, sym_constant, - STATE(9910), 1, + STATE(9911), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414318] = 6, + [414338] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12727), 1, + ACTIONS(12731), 1, anon_sym_end, - STATE(9911), 1, + STATE(9912), 1, sym_heredoc_body, STATE(11361), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414338] = 6, + [414358] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10330), 1, anon_sym_RBRACE, - ACTIONS(12729), 1, + ACTIONS(12733), 1, anon_sym_COMMA, - STATE(9912), 1, + STATE(9913), 1, sym_heredoc_body, - STATE(10062), 1, + STATE(10075), 1, aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414358] = 6, + [414378] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10213), 1, anon_sym_def, - ACTIONS(12731), 1, + ACTIONS(12735), 1, anon_sym_abstract, STATE(150), 1, sym__base_method_def, - STATE(9913), 1, + STATE(9914), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414378] = 6, + [414398] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12733), 1, + ACTIONS(12737), 1, anon_sym_end, - STATE(9914), 1, + STATE(9915), 1, sym_heredoc_body, STATE(10835), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414398] = 6, + [414418] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3985), 1, anon_sym_RBRACK, - ACTIONS(12735), 1, + ACTIONS(12739), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(9915), 1, + STATE(9916), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414418] = 6, + [414438] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12737), 1, + ACTIONS(12741), 1, anon_sym_end, - STATE(9916), 1, + STATE(9917), 1, sym_heredoc_body, STATE(11473), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414438] = 6, + [414458] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12739), 1, + ACTIONS(12743), 1, anon_sym_RBRACE, - ACTIONS(12741), 1, + ACTIONS(12745), 1, anon_sym_COMMA, - STATE(9917), 1, + STATE(9918), 1, sym_heredoc_body, - STATE(9938), 1, + STATE(9940), 1, aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414458] = 6, + [414478] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10996), 1, sym_identifier, ACTIONS(12286), 1, anon_sym_RPAREN, - STATE(9918), 1, + STATE(9919), 1, sym_heredoc_body, - STATE(10408), 1, + STATE(10375), 1, sym_block_body_param, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414478] = 6, + [414498] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12743), 1, + ACTIONS(12747), 1, anon_sym_RBRACE, - ACTIONS(12745), 1, + ACTIONS(12749), 1, anon_sym_COMMA, - STATE(9919), 1, + STATE(9920), 1, sym_heredoc_body, - STATE(9939), 1, + STATE(9941), 1, aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414498] = 6, + [414518] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(9655), 1, anon_sym_RBRACE, - ACTIONS(12747), 1, + ACTIONS(12751), 1, anon_sym_COMMA, - STATE(9920), 1, + STATE(9921), 1, sym_heredoc_body, - STATE(10002), 1, + STATE(10009), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414518] = 6, + [414538] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10290), 1, anon_sym_RBRACE, - ACTIONS(12749), 1, + ACTIONS(12753), 1, anon_sym_COMMA, STATE(9335), 1, aux_sym_named_tuple_type_repeat1, - STATE(9921), 1, + STATE(9922), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414538] = 6, + [414558] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(8765), 1, anon_sym_RPAREN, ACTIONS(8767), 1, anon_sym_COMMA, - STATE(9922), 1, + STATE(9923), 1, sym_heredoc_body, - STATE(9944), 1, + STATE(9946), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414558] = 6, + [414578] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12751), 1, + ACTIONS(12755), 1, anon_sym_end, - STATE(9923), 1, + STATE(9924), 1, sym_heredoc_body, STATE(11617), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414578] = 6, + [414598] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12753), 1, + ACTIONS(12757), 1, anon_sym_RBRACE, - ACTIONS(12755), 1, + ACTIONS(12759), 1, anon_sym_COMMA, - STATE(9924), 1, + STATE(9925), 1, sym_heredoc_body, - STATE(9967), 1, + STATE(9971), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414598] = 6, + [414618] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12757), 1, + ACTIONS(12761), 1, anon_sym_RBRACE, - ACTIONS(12759), 1, + ACTIONS(12763), 1, anon_sym_COMMA, - STATE(9925), 1, + STATE(9926), 1, sym_heredoc_body, - STATE(9973), 1, + STATE(9977), 1, aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414618] = 6, + [414638] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12761), 1, + ACTIONS(12765), 1, anon_sym_end, - STATE(9926), 1, + STATE(9927), 1, sym_heredoc_body, STATE(10893), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414638] = 6, + [414658] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4747), 1, anon_sym_COMMA, - ACTIONS(12763), 1, + ACTIONS(12767), 1, anon_sym_DASH_GT, STATE(9452), 1, aux_sym_proc_type_repeat1, - STATE(9927), 1, + STATE(9928), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414658] = 6, + [414678] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12765), 1, + ACTIONS(12769), 1, anon_sym_end, - STATE(9928), 1, + STATE(9929), 1, sym_heredoc_body, STATE(11511), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414678] = 5, + [414698] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12767), 1, + ACTIONS(12771), 1, anon_sym_COMMA, - ACTIONS(12770), 1, + ACTIONS(12774), 1, anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9929), 2, + STATE(9930), 2, sym_heredoc_body, aux_sym_block_param_list_repeat1, - [414696] = 6, + [414716] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12772), 1, + ACTIONS(12776), 1, anon_sym_end, - STATE(9930), 1, + STATE(9931), 1, sym_heredoc_body, STATE(11517), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414716] = 6, + [414736] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10793), 1, anon_sym_RPAREN, - ACTIONS(12774), 1, + ACTIONS(12778), 1, anon_sym_COMMA, - STATE(9931), 1, + STATE(9932), 1, sym_heredoc_body, - STATE(10019), 1, + STATE(10027), 1, aux_sym_proc_param_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414736] = 6, + [414756] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12776), 1, + ACTIONS(12780), 1, anon_sym_end, - STATE(9932), 1, + STATE(9933), 1, sym_heredoc_body, STATE(10817), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414756] = 5, + [414776] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12778), 1, + ACTIONS(12782), 1, anon_sym_RBRACE, - ACTIONS(12780), 1, + ACTIONS(12784), 1, anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9933), 2, + STATE(9934), 2, sym_heredoc_body, aux_sym_hash_repeat1, - [414774] = 6, + [414794] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(12787), 1, + aux_sym_char_token1, + STATE(9935), 1, + sym_heredoc_body, + ACTIONS(12789), 2, + sym__char_comment, + sym_char_escape_sequence, + [414814] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(8038), 1, sym__constant_segment, ACTIONS(8040), 1, anon_sym_COLON_COLON, - STATE(9934), 1, + STATE(9936), 1, sym_heredoc_body, - STATE(10083), 1, + STATE(10096), 1, sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414794] = 4, + [414834] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9935), 1, + STATE(9937), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -673522,66 +673558,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [414810] = 6, + [414850] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12783), 1, + ACTIONS(12791), 1, anon_sym_end, - STATE(9936), 1, + STATE(9938), 1, sym_heredoc_body, STATE(10934), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414830] = 6, + [414870] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4017), 1, anon_sym_RBRACE, - ACTIONS(12785), 1, + ACTIONS(12793), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(9937), 1, + STATE(9939), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414850] = 6, + [414890] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3827), 1, anon_sym_RBRACE, - ACTIONS(12787), 1, + ACTIONS(12795), 1, anon_sym_COMMA, - STATE(9933), 1, + STATE(9934), 1, aux_sym_hash_repeat1, - STATE(9938), 1, + STATE(9940), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414870] = 6, + [414910] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10278), 1, anon_sym_RBRACE, - ACTIONS(12789), 1, + ACTIONS(12797), 1, anon_sym_COMMA, - STATE(9939), 1, + STATE(9941), 1, sym_heredoc_body, - STATE(10062), 1, + STATE(10075), 1, aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414890] = 4, + [414930] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9940), 1, + STATE(9942), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -673590,10 +673626,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [414906] = 4, + [414946] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9941), 1, + STATE(9943), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -673602,24 +673638,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [414922] = 6, + [414962] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3881), 1, anon_sym_RBRACE, - ACTIONS(12791), 1, + ACTIONS(12799), 1, anon_sym_COMMA, - STATE(9933), 1, + STATE(9934), 1, aux_sym_hash_repeat1, - STATE(9942), 1, + STATE(9944), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414942] = 4, + [414982] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9943), 1, + STATE(9945), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -673628,24 +673664,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [414958] = 6, + [414998] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3344), 1, anon_sym_RPAREN, - ACTIONS(12793), 1, + ACTIONS(12801), 1, anon_sym_COMMA, - STATE(9944), 1, + STATE(9946), 1, sym_heredoc_body, - STATE(10318), 1, + STATE(10331), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414978] = 4, + [415018] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9945), 1, + STATE(9947), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -673654,38 +673690,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [414994] = 6, + [415034] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12795), 1, + ACTIONS(12803), 1, anon_sym_end, - STATE(9946), 1, + STATE(9948), 1, sym_heredoc_body, STATE(10852), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415014] = 6, + [415054] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12797), 1, + ACTIONS(12805), 1, anon_sym_end, - STATE(9947), 1, + STATE(9949), 1, sym_heredoc_body, STATE(10938), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415034] = 4, + [415074] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9948), 1, + STATE(9950), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -673694,10 +673730,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [415050] = 4, + [415090] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9949), 1, + STATE(9951), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -673706,52 +673742,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [415066] = 6, + [415106] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(8684), 1, anon_sym_RPAREN, ACTIONS(8686), 1, anon_sym_COMMA, - STATE(9950), 1, + STATE(9952), 1, sym_heredoc_body, - STATE(9969), 1, + STATE(9973), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415086] = 6, + [415126] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(12807), 1, + aux_sym_char_token1, + STATE(9953), 1, + sym_heredoc_body, + ACTIONS(12809), 2, + sym__char_comment, + sym_char_escape_sequence, + [415146] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10322), 1, anon_sym_RPAREN, - ACTIONS(12799), 1, + ACTIONS(12811), 1, anon_sym_COMMA, STATE(9335), 1, aux_sym_named_tuple_type_repeat1, - STATE(9951), 1, + STATE(9954), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415106] = 6, + [415166] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12801), 1, + ACTIONS(12813), 1, anon_sym_RPAREN, - ACTIONS(12803), 1, + ACTIONS(12815), 1, anon_sym_COMMA, - STATE(9931), 1, + STATE(9932), 1, aux_sym_proc_param_list_repeat1, - STATE(9952), 1, + STATE(9955), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415126] = 4, + [415186] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9953), 1, + STATE(9956), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -673760,639 +673810,695 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [415142] = 6, + [415202] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12805), 1, + ACTIONS(12817), 1, anon_sym_end, - STATE(9954), 1, + STATE(9957), 1, sym_heredoc_body, STATE(10863), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415162] = 6, + [415222] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12807), 1, + ACTIONS(12819), 1, anon_sym_end, - STATE(9955), 1, + STATE(9958), 1, sym_heredoc_body, STATE(11143), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415182] = 6, + [415242] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12809), 1, + ACTIONS(12821), 1, anon_sym_end, - STATE(9956), 1, + STATE(9959), 1, sym_heredoc_body, STATE(10867), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415202] = 6, + [415262] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(8038), 1, sym__constant_segment, ACTIONS(8040), 1, anon_sym_COLON_COLON, - STATE(9957), 1, + STATE(9960), 1, sym_heredoc_body, - STATE(10435), 1, + STATE(10421), 1, sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415222] = 6, + [415282] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12811), 1, + ACTIONS(12823), 1, anon_sym_RBRACE, - ACTIONS(12813), 1, + ACTIONS(12825), 1, anon_sym_COMMA, STATE(9832), 1, aux_sym_proc_type_repeat1, - STATE(9958), 1, + STATE(9961), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415242] = 6, + [415302] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4019), 1, anon_sym_RPAREN, - ACTIONS(12815), 1, + ACTIONS(12827), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(9959), 1, + STATE(9962), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415262] = 6, + [415322] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12817), 1, + ACTIONS(12829), 1, anon_sym_end, - STATE(9960), 1, + STATE(9963), 1, sym_heredoc_body, STATE(10942), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415282] = 6, + [415342] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12819), 1, + ACTIONS(12831), 1, anon_sym_end, - STATE(9961), 1, + STATE(9964), 1, sym_heredoc_body, STATE(11748), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415302] = 6, + [415362] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(7377), 1, anon_sym_else, - ACTIONS(12821), 1, + ACTIONS(12833), 1, anon_sym_end, - STATE(9962), 1, + STATE(9965), 1, sym_heredoc_body, STATE(10876), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415322] = 6, + [415382] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12823), 1, + ACTIONS(12835), 1, + aux_sym_char_token1, + STATE(9966), 1, + sym_heredoc_body, + ACTIONS(12837), 2, + sym__char_comment, + sym_char_escape_sequence, + [415402] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(12839), 1, anon_sym_RBRACE, - ACTIONS(12825), 1, + ACTIONS(12841), 1, anon_sym_COMMA, - STATE(9963), 1, + STATE(9967), 1, sym_heredoc_body, - STATE(9975), 1, + STATE(9980), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415342] = 6, + [415422] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12827), 1, + ACTIONS(12843), 1, anon_sym_RBRACE, - ACTIONS(12829), 1, + ACTIONS(12845), 1, anon_sym_COMMA, - STATE(9964), 1, + STATE(9968), 1, sym_heredoc_body, - STATE(9977), 1, + STATE(9982), 1, aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415362] = 6, + [415442] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4747), 1, anon_sym_COMMA, - ACTIONS(12831), 1, + ACTIONS(12847), 1, anon_sym_DASH_GT, STATE(9452), 1, aux_sym_proc_type_repeat1, - STATE(9965), 1, + STATE(9969), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415382] = 6, + [415462] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12833), 1, + ACTIONS(12849), 1, anon_sym_end, - STATE(9966), 1, + STATE(9970), 1, sym_heredoc_body, STATE(10886), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415402] = 6, + [415482] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(9689), 1, anon_sym_RBRACE, - ACTIONS(12835), 1, + ACTIONS(12851), 1, anon_sym_COMMA, - STATE(9967), 1, + STATE(9971), 1, sym_heredoc_body, - STATE(10002), 1, + STATE(10009), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415422] = 6, + [415502] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12837), 1, + ACTIONS(12853), 1, anon_sym_end, - STATE(9968), 1, + STATE(9972), 1, sym_heredoc_body, STATE(10889), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415442] = 6, + [415522] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3302), 1, anon_sym_RPAREN, - ACTIONS(12839), 1, + ACTIONS(12855), 1, anon_sym_COMMA, - STATE(9969), 1, + STATE(9973), 1, sym_heredoc_body, - STATE(10318), 1, + STATE(10331), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415462] = 6, + [415542] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4085), 1, anon_sym_RPAREN, - ACTIONS(12841), 1, + ACTIONS(12857), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(9970), 1, + STATE(9974), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415482] = 6, + [415562] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12843), 1, + ACTIONS(12859), 1, anon_sym_end, - STATE(9971), 1, + STATE(9975), 1, sym_heredoc_body, STATE(10896), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415502] = 6, + [415582] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12845), 1, + ACTIONS(12861), 1, anon_sym_end, - STATE(9972), 1, + STATE(9976), 1, sym_heredoc_body, STATE(10899), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415522] = 6, + [415602] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10340), 1, anon_sym_RBRACE, - ACTIONS(12847), 1, + ACTIONS(12863), 1, anon_sym_COMMA, STATE(9335), 1, aux_sym_named_tuple_type_repeat1, - STATE(9973), 1, + STATE(9977), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415542] = 6, + [415622] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12849), 1, + ACTIONS(12865), 1, anon_sym_end, - STATE(9974), 1, + STATE(9978), 1, sym_heredoc_body, STATE(11551), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415562] = 6, + [415642] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(12867), 1, + aux_sym_char_token1, + STATE(9979), 1, + sym_heredoc_body, + ACTIONS(12869), 2, + sym__char_comment, + sym_char_escape_sequence, + [415662] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(9499), 1, anon_sym_RBRACE, - ACTIONS(12851), 1, + ACTIONS(12871), 1, anon_sym_COMMA, - STATE(9975), 1, + STATE(9980), 1, sym_heredoc_body, - STATE(10002), 1, + STATE(10009), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415582] = 6, + [415682] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12853), 1, + ACTIONS(12873), 1, anon_sym_end, - STATE(9976), 1, + STATE(9981), 1, sym_heredoc_body, STATE(10950), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415602] = 6, + [415702] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10306), 1, anon_sym_RBRACE, - ACTIONS(12855), 1, + ACTIONS(12875), 1, anon_sym_COMMA, STATE(9335), 1, aux_sym_named_tuple_type_repeat1, - STATE(9977), 1, + STATE(9982), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415622] = 6, + [415722] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12857), 1, + ACTIONS(12877), 1, anon_sym_end, - STATE(9978), 1, + STATE(9983), 1, sym_heredoc_body, STATE(10916), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415642] = 6, + [415742] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12859), 1, + ACTIONS(12879), 1, anon_sym_end, - STATE(9979), 1, + STATE(9984), 1, sym_heredoc_body, STATE(11900), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415662] = 6, + [415762] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12861), 1, + ACTIONS(12881), 1, anon_sym_end, - STATE(9980), 1, + STATE(9985), 1, sym_heredoc_body, STATE(10918), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415682] = 6, + [415782] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12863), 1, + ACTIONS(12883), 1, anon_sym_RBRACE, - ACTIONS(12865), 1, + ACTIONS(12885), 1, anon_sym_COMMA, STATE(9699), 1, aux_sym_named_tuple_type_repeat1, - STATE(9981), 1, + STATE(9986), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415702] = 6, + [415802] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10996), 1, sym_identifier, - ACTIONS(12867), 1, + ACTIONS(12887), 1, anon_sym_RPAREN, - STATE(9982), 1, + STATE(9987), 1, sym_heredoc_body, - STATE(10408), 1, + STATE(10375), 1, sym_block_body_param, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415722] = 6, + [415822] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12869), 1, + ACTIONS(12889), 1, anon_sym_end, - STATE(9983), 1, + STATE(9988), 1, sym_heredoc_body, STATE(10924), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415742] = 6, + [415842] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12871), 1, + ACTIONS(12891), 1, anon_sym_end, - STATE(9984), 1, + STATE(9989), 1, sym_heredoc_body, STATE(11093), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415762] = 6, + [415862] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(12893), 1, + aux_sym_char_token1, + STATE(9990), 1, + sym_heredoc_body, + ACTIONS(12895), 2, + sym__char_comment, + sym_char_escape_sequence, + [415882] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12873), 1, + ACTIONS(12897), 1, anon_sym_end, - STATE(9985), 1, + STATE(9991), 1, sym_heredoc_body, STATE(10927), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415782] = 6, + [415902] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12875), 1, + ACTIONS(12899), 1, anon_sym_end, - STATE(9986), 1, + STATE(9992), 1, sym_heredoc_body, STATE(10930), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415802] = 6, + [415922] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12877), 1, + ACTIONS(12901), 1, anon_sym_end, - STATE(9987), 1, + STATE(9993), 1, sym_heredoc_body, STATE(10932), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415822] = 5, + [415942] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12879), 1, + ACTIONS(12903), 1, anon_sym_RPAREN, - ACTIONS(12881), 1, + ACTIONS(12905), 1, anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9988), 2, + STATE(9994), 2, sym_heredoc_body, aux_sym__block_body_nested_param_repeat1, - [415840] = 6, + [415960] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12884), 1, + ACTIONS(12908), 1, anon_sym_end, - STATE(9989), 1, + STATE(9995), 1, sym_heredoc_body, STATE(11580), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415860] = 6, + [415980] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12886), 1, + ACTIONS(12910), 1, anon_sym_end, - STATE(9990), 1, + STATE(9996), 1, sym_heredoc_body, STATE(10959), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415880] = 6, + [416000] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12888), 1, + ACTIONS(12912), 1, anon_sym_end, - STATE(9991), 1, + STATE(9997), 1, sym_heredoc_body, STATE(11586), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415900] = 6, + [416020] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(12914), 1, + aux_sym_char_token1, + STATE(9998), 1, + sym_heredoc_body, + ACTIONS(12916), 2, + sym__char_comment, + sym_char_escape_sequence, + [416040] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12890), 1, + ACTIONS(12918), 1, anon_sym_end, - STATE(9992), 1, + STATE(9999), 1, sym_heredoc_body, STATE(10962), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415920] = 6, + [416060] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3909), 1, anon_sym_RBRACE, - ACTIONS(12892), 1, + ACTIONS(12920), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(9993), 1, + STATE(10000), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415940] = 6, + [416080] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12894), 1, + ACTIONS(12922), 1, anon_sym_end, - STATE(9994), 1, + STATE(10001), 1, sym_heredoc_body, STATE(11600), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415960] = 6, + [416100] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12896), 1, + ACTIONS(12924), 1, anon_sym_end, - STATE(9995), 1, + STATE(10002), 1, sym_heredoc_body, STATE(10966), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415980] = 6, + [416120] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(9647), 1, anon_sym_RBRACE, - ACTIONS(12898), 1, + ACTIONS(12926), 1, anon_sym_COMMA, - STATE(9996), 1, + STATE(10003), 1, sym_heredoc_body, - STATE(10002), 1, + STATE(10009), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416000] = 6, + [416140] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12900), 1, + ACTIONS(12928), 1, anon_sym_RPAREN, - ACTIONS(12902), 1, + ACTIONS(12930), 1, anon_sym_COMMA, - STATE(9997), 1, + STATE(10004), 1, sym_heredoc_body, - STATE(10201), 1, + STATE(10214), 1, aux_sym_type_param_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416020] = 6, + [416160] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12904), 1, + ACTIONS(12932), 1, anon_sym_RBRACE, - ACTIONS(12906), 1, + ACTIONS(12934), 1, anon_sym_COMMA, - STATE(9998), 1, + STATE(10005), 1, sym_heredoc_body, - STATE(10015), 1, + STATE(10023), 1, aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416040] = 4, + [416180] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9999), 1, + STATE(10006), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -674401,93 +674507,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [416056] = 6, + [416196] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12908), 1, + ACTIONS(12936), 1, anon_sym_RBRACE, - ACTIONS(12910), 1, + ACTIONS(12938), 1, anon_sym_COMMA, - STATE(10000), 1, + STATE(10007), 1, sym_heredoc_body, - STATE(10018), 1, + STATE(10026), 1, aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416076] = 6, + [416216] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10370), 1, anon_sym_RBRACE, - ACTIONS(12912), 1, + ACTIONS(12940), 1, anon_sym_COMMA, STATE(9335), 1, aux_sym_named_tuple_type_repeat1, - STATE(10001), 1, + STATE(10008), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416096] = 5, + [416236] = 5, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(11935), 1, anon_sym_RBRACE, - ACTIONS(12914), 1, + ACTIONS(12942), 1, anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10002), 2, + STATE(10009), 2, sym_heredoc_body, aux_sym_proc_type_repeat1, - [416114] = 6, + [416254] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12917), 1, + ACTIONS(12945), 1, anon_sym_end, - STATE(10003), 1, + STATE(10010), 1, sym_heredoc_body, STATE(11640), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416134] = 6, + [416274] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12919), 1, + ACTIONS(12947), 1, anon_sym_end, - STATE(10004), 1, + STATE(10011), 1, sym_heredoc_body, STATE(11602), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416154] = 6, + [416294] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12921), 1, + ACTIONS(12949), 1, anon_sym_end, - STATE(10005), 1, + STATE(10012), 1, sym_heredoc_body, STATE(11800), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416174] = 4, + [416314] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10006), 1, + ACTIONS(12951), 1, + aux_sym_char_token1, + STATE(10013), 1, + sym_heredoc_body, + ACTIONS(12953), 2, + sym__char_comment, + sym_char_escape_sequence, + [416334] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(10014), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -674496,289 +674616,317 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [416190] = 6, + [416350] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12923), 1, + ACTIONS(12955), 1, anon_sym_end, - STATE(10007), 1, + STATE(10015), 1, sym_heredoc_body, STATE(11190), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416210] = 6, + [416370] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3759), 1, anon_sym_RBRACE, - ACTIONS(12925), 1, + ACTIONS(12957), 1, anon_sym_COMMA, - STATE(9933), 1, + STATE(9934), 1, aux_sym_hash_repeat1, - STATE(10008), 1, + STATE(10016), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416230] = 6, + [416390] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12927), 1, + ACTIONS(12959), 1, anon_sym_end, - STATE(10009), 1, + STATE(10017), 1, sym_heredoc_body, STATE(11047), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416250] = 6, + [416410] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12929), 1, + ACTIONS(12961), 1, anon_sym_end, - STATE(10010), 1, + STATE(10018), 1, sym_heredoc_body, STATE(11665), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416270] = 6, + [416430] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12931), 1, + ACTIONS(12963), 1, anon_sym_end, - STATE(10011), 1, + STATE(10019), 1, sym_heredoc_body, STATE(11931), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416290] = 6, + [416450] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12933), 1, + ACTIONS(12965), 1, anon_sym_RBRACE, - ACTIONS(12935), 1, + ACTIONS(12967), 1, anon_sym_COMMA, - STATE(10012), 1, + STATE(10020), 1, sym_heredoc_body, - STATE(10109), 1, + STATE(10122), 1, aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416310] = 6, + [416470] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4249), 1, anon_sym_RBRACE, - ACTIONS(12937), 1, + ACTIONS(12969), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(10013), 1, + STATE(10021), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416330] = 6, + [416490] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(11002), 1, anon_sym_PIPE, - ACTIONS(12939), 1, + ACTIONS(12971), 1, anon_sym_COMMA, - STATE(9929), 1, + STATE(9930), 1, aux_sym_block_param_list_repeat1, - STATE(10014), 1, + STATE(10022), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416350] = 6, + [416510] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3687), 1, anon_sym_RBRACE, - ACTIONS(12941), 1, + ACTIONS(12973), 1, anon_sym_COMMA, - STATE(9933), 1, + STATE(9934), 1, aux_sym_hash_repeat1, - STATE(10015), 1, + STATE(10023), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416370] = 6, + [416530] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12943), 1, + ACTIONS(12975), 1, anon_sym_RBRACE, - ACTIONS(12945), 1, + ACTIONS(12977), 1, anon_sym_COMMA, - STATE(10016), 1, + STATE(10024), 1, sym_heredoc_body, - STATE(10128), 1, + STATE(10141), 1, aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416390] = 6, + [416550] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12947), 1, + ACTIONS(12979), 1, anon_sym_RBRACE, - ACTIONS(12949), 1, + ACTIONS(12981), 1, anon_sym_COMMA, - STATE(10017), 1, + STATE(10025), 1, sym_heredoc_body, - STATE(10042), 1, + STATE(10053), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416410] = 6, + [416570] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10362), 1, anon_sym_RBRACE, - ACTIONS(12951), 1, + ACTIONS(12983), 1, anon_sym_COMMA, - STATE(10018), 1, + STATE(10026), 1, sym_heredoc_body, - STATE(10062), 1, + STATE(10075), 1, aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416430] = 5, + [416590] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12953), 1, + ACTIONS(12985), 1, anon_sym_RPAREN, - ACTIONS(12955), 1, + ACTIONS(12987), 1, anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10019), 2, + STATE(10027), 2, sym_heredoc_body, aux_sym_proc_param_list_repeat1, - [416448] = 6, + [416608] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12958), 1, + ACTIONS(12990), 1, anon_sym_RBRACE, - ACTIONS(12960), 1, + ACTIONS(12992), 1, anon_sym_COMMA, - STATE(10020), 1, + STATE(10028), 1, sym_heredoc_body, - STATE(10051), 1, + STATE(10063), 1, aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416468] = 6, + [416628] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(12994), 1, + aux_sym_char_token1, + STATE(10029), 1, + sym_heredoc_body, + ACTIONS(12996), 2, + sym__char_comment, + sym_char_escape_sequence, + [416648] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12962), 1, + ACTIONS(12998), 1, anon_sym_end, - STATE(10021), 1, + STATE(10030), 1, sym_heredoc_body, STATE(11224), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416488] = 6, + [416668] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4269), 1, anon_sym_RBRACK, - ACTIONS(12964), 1, + ACTIONS(13000), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(10022), 1, + STATE(10031), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416508] = 6, + [416688] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4747), 1, anon_sym_COMMA, - ACTIONS(12966), 1, + ACTIONS(13002), 1, anon_sym_DASH_GT, STATE(9452), 1, aux_sym_proc_type_repeat1, - STATE(10023), 1, + STATE(10032), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416528] = 6, + [416708] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12968), 1, + ACTIONS(13004), 1, anon_sym_end, - STATE(10024), 1, + STATE(10033), 1, sym_heredoc_body, STATE(11090), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416548] = 6, + [416728] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(8696), 1, anon_sym_RPAREN, ACTIONS(8698), 1, anon_sym_COMMA, - STATE(10025), 1, + STATE(10034), 1, sym_heredoc_body, - STATE(10046), 1, + STATE(10058), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416568] = 6, + [416748] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(13006), 1, + aux_sym_char_token1, + STATE(10035), 1, + sym_heredoc_body, + ACTIONS(13008), 2, + sym__char_comment, + sym_char_escape_sequence, + [416768] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12970), 1, + ACTIONS(13010), 1, anon_sym_end, - STATE(10026), 1, + STATE(10036), 1, sym_heredoc_body, STATE(11102), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416588] = 4, + [416788] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10027), 1, + STATE(10037), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -674787,38 +674935,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [416604] = 6, + [416804] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12972), 1, + ACTIONS(13012), 1, anon_sym_end, - STATE(10028), 1, + STATE(10038), 1, sym_heredoc_body, STATE(11105), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416624] = 6, + [416824] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12974), 1, + ACTIONS(13014), 1, anon_sym_end, - STATE(10029), 1, + STATE(10039), 1, sym_heredoc_body, STATE(11911), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416644] = 4, + [416844] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10030), 1, + STATE(10040), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -674827,10 +674975,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [416660] = 4, + [416860] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10031), 1, + ACTIONS(13016), 1, + aux_sym_char_token1, + STATE(10041), 1, + sym_heredoc_body, + ACTIONS(13018), 2, + sym__char_comment, + sym_char_escape_sequence, + [416880] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(10042), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -674839,10 +675001,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [416676] = 4, + [416896] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10032), 1, + STATE(10043), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -674851,38 +675013,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [416692] = 6, + [416912] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4043), 1, anon_sym_RPAREN, - ACTIONS(12976), 1, + ACTIONS(13020), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(10033), 1, + STATE(10044), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416712] = 6, + [416932] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12978), 1, + ACTIONS(13022), 1, anon_sym_end, - STATE(10034), 1, + STATE(10045), 1, sym_heredoc_body, STATE(11231), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416732] = 4, + [416952] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10035), 1, + STATE(10046), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -674891,10 +675053,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [416748] = 4, + [416968] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10036), 1, + STATE(10047), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -674903,52 +675065,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [416764] = 6, + [416984] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(7377), 1, anon_sym_else, - ACTIONS(12980), 1, + ACTIONS(13024), 1, anon_sym_end, - STATE(10037), 1, + STATE(10048), 1, sym_heredoc_body, STATE(11113), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416784] = 6, + [417004] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12982), 1, + ACTIONS(13026), 1, anon_sym_RBRACE, - ACTIONS(12984), 1, + ACTIONS(13028), 1, anon_sym_COMMA, - STATE(10038), 1, + STATE(10049), 1, sym_heredoc_body, - STATE(10053), 1, + STATE(10065), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416804] = 6, + [417024] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12986), 1, + ACTIONS(13030), 1, anon_sym_RBRACE, - ACTIONS(12988), 1, + ACTIONS(13032), 1, anon_sym_COMMA, - STATE(10039), 1, + STATE(10050), 1, sym_heredoc_body, - STATE(10055), 1, + STATE(10067), 1, aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416824] = 4, + [417044] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10040), 1, + STATE(10051), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -674957,66 +675119,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [416840] = 6, + [417060] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4747), 1, anon_sym_COMMA, - ACTIONS(12990), 1, + ACTIONS(13034), 1, anon_sym_DASH_GT, STATE(9452), 1, aux_sym_proc_type_repeat1, - STATE(10041), 1, + STATE(10052), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416860] = 6, + [417080] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(9507), 1, anon_sym_RBRACE, - ACTIONS(12992), 1, + ACTIONS(13036), 1, anon_sym_COMMA, - STATE(10002), 1, + STATE(10009), 1, aux_sym_proc_type_repeat1, - STATE(10042), 1, + STATE(10053), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416880] = 6, + [417100] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12994), 1, + ACTIONS(13038), 1, anon_sym_end, - STATE(10043), 1, + STATE(10054), 1, sym_heredoc_body, STATE(11125), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416900] = 6, + [417120] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(13040), 1, + aux_sym_char_token1, + STATE(10055), 1, + sym_heredoc_body, + ACTIONS(13042), 2, + sym__char_comment, + sym_char_escape_sequence, + [417140] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(12996), 1, + ACTIONS(13044), 1, anon_sym_end, - STATE(10044), 1, + STATE(10056), 1, sym_heredoc_body, STATE(11129), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416920] = 4, + [417160] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10045), 1, + STATE(10057), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -675025,260 +675201,274 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [416936] = 6, + [417176] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3308), 1, anon_sym_RPAREN, - ACTIONS(12998), 1, + ACTIONS(13046), 1, anon_sym_COMMA, - STATE(10046), 1, + STATE(10058), 1, sym_heredoc_body, - STATE(10318), 1, + STATE(10331), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416956] = 6, + [417196] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3783), 1, anon_sym_RBRACE, - ACTIONS(13000), 1, + ACTIONS(13048), 1, anon_sym_COMMA, - STATE(9933), 1, + STATE(9934), 1, aux_sym_hash_repeat1, - STATE(10047), 1, + STATE(10059), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416976] = 6, + [417216] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4009), 1, anon_sym_RPAREN, - ACTIONS(13002), 1, + ACTIONS(13050), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(10048), 1, + STATE(10060), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416996] = 6, + [417236] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13004), 1, + ACTIONS(13052), 1, anon_sym_end, - STATE(10049), 1, + STATE(10061), 1, sym_heredoc_body, STATE(11135), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417016] = 6, + [417256] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13006), 1, + ACTIONS(13054), 1, anon_sym_end, - STATE(10050), 1, + STATE(10062), 1, sym_heredoc_body, STATE(11138), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417036] = 6, + [417276] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10414), 1, anon_sym_RBRACE, - ACTIONS(13008), 1, + ACTIONS(13056), 1, anon_sym_COMMA, STATE(9335), 1, aux_sym_named_tuple_type_repeat1, - STATE(10051), 1, + STATE(10063), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417056] = 6, + [417296] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13010), 1, + ACTIONS(13058), 1, anon_sym_end, - STATE(10052), 1, + STATE(10064), 1, sym_heredoc_body, STATE(10516), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417076] = 6, + [417316] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(9679), 1, anon_sym_RBRACE, - ACTIONS(13012), 1, + ACTIONS(13060), 1, anon_sym_COMMA, - STATE(10002), 1, + STATE(10009), 1, aux_sym_proc_type_repeat1, - STATE(10053), 1, + STATE(10065), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417096] = 6, + [417336] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3406), 1, anon_sym_RBRACE, - ACTIONS(13014), 1, + ACTIONS(13062), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(10054), 1, + STATE(10066), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417116] = 6, + [417356] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10402), 1, anon_sym_RBRACE, - ACTIONS(13016), 1, + ACTIONS(13064), 1, anon_sym_COMMA, STATE(9335), 1, aux_sym_named_tuple_type_repeat1, - STATE(10055), 1, + STATE(10067), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417136] = 6, + [417376] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13018), 1, + ACTIONS(13066), 1, anon_sym_end, - STATE(10056), 1, + STATE(10068), 1, sym_heredoc_body, STATE(11240), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417156] = 6, + [417396] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(13068), 1, + aux_sym_char_token1, + STATE(10069), 1, + sym_heredoc_body, + ACTIONS(13070), 2, + sym__char_comment, + sym_char_escape_sequence, + [417416] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13020), 1, + ACTIONS(13072), 1, anon_sym_end, - STATE(10057), 1, + STATE(10070), 1, sym_heredoc_body, STATE(11152), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417176] = 6, + [417436] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13022), 1, + ACTIONS(13074), 1, anon_sym_end, - STATE(10058), 1, + STATE(10071), 1, sym_heredoc_body, STATE(10766), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417196] = 6, + [417456] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13024), 1, + ACTIONS(13076), 1, anon_sym_end, - STATE(10059), 1, + STATE(10072), 1, sym_heredoc_body, STATE(10523), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417216] = 5, + [417476] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13026), 1, + ACTIONS(13078), 1, anon_sym_RPAREN, - ACTIONS(13028), 1, + ACTIONS(13080), 1, anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10060), 2, + STATE(10073), 2, sym_heredoc_body, aux_sym_param_list_repeat1, - [417234] = 6, + [417494] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13031), 1, + ACTIONS(13083), 1, anon_sym_end, - STATE(10061), 1, + STATE(10074), 1, sym_heredoc_body, STATE(11163), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417254] = 5, + [417514] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13033), 1, + ACTIONS(13085), 1, anon_sym_RBRACE, - ACTIONS(13035), 1, + ACTIONS(13087), 1, anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10062), 2, + STATE(10075), 2, sym_heredoc_body, aux_sym_named_tuple_repeat1, - [417272] = 6, + [417532] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13038), 1, + ACTIONS(13090), 1, anon_sym_end, - STATE(10063), 1, + STATE(10076), 1, sym_heredoc_body, STATE(11166), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417292] = 4, + [417552] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10064), 1, + STATE(10077), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -675287,162 +675477,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [417308] = 6, + [417568] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13040), 1, + ACTIONS(13092), 1, anon_sym_end, - STATE(10065), 1, + STATE(10078), 1, sym_heredoc_body, STATE(10562), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417328] = 6, + [417588] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13042), 1, + ACTIONS(13094), 1, anon_sym_end, - STATE(10066), 1, + STATE(10079), 1, sym_heredoc_body, STATE(11169), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417348] = 6, + [417608] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13044), 1, + ACTIONS(13096), 1, anon_sym_end, - STATE(10067), 1, + STATE(10080), 1, sym_heredoc_body, STATE(11170), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417368] = 6, + [417628] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13046), 1, + ACTIONS(13098), 1, anon_sym_RBRACE, - ACTIONS(13048), 1, + ACTIONS(13100), 1, anon_sym_COMMA, - STATE(10068), 1, + STATE(10081), 1, sym_heredoc_body, - STATE(10080), 1, + STATE(10093), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417388] = 6, + [417648] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13050), 1, + ACTIONS(13102), 1, anon_sym_RBRACE, - ACTIONS(13052), 1, + ACTIONS(13104), 1, anon_sym_COMMA, - STATE(10069), 1, + STATE(10082), 1, sym_heredoc_body, - STATE(10097), 1, + STATE(10110), 1, aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417408] = 5, + [417668] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13056), 1, + ACTIONS(13108), 1, anon_sym_EQ, - STATE(10070), 1, + STATE(10083), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13054), 2, + ACTIONS(13106), 2, anon_sym_RPAREN, anon_sym_COMMA, - [417426] = 6, + [417686] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13058), 1, + ACTIONS(13110), 1, anon_sym_RBRACE, - ACTIONS(13060), 1, + ACTIONS(13112), 1, anon_sym_COMMA, - STATE(10071), 1, + STATE(10084), 1, sym_heredoc_body, - STATE(10085), 1, + STATE(10098), 1, aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417446] = 6, + [417706] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13062), 1, + ACTIONS(13114), 1, anon_sym_RBRACE, - ACTIONS(13064), 1, + ACTIONS(13116), 1, anon_sym_COMMA, - STATE(10072), 1, + STATE(10085), 1, sym_heredoc_body, - STATE(10101), 1, + STATE(10114), 1, aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417466] = 5, + [417726] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13068), 1, + ACTIONS(13120), 1, aux_sym__base_method_def_token1, - STATE(10073), 1, + STATE(10086), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13066), 2, + ACTIONS(13118), 2, anon_sym_RPAREN, anon_sym_COMMA, - [417484] = 6, + [417744] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4747), 1, anon_sym_COMMA, - ACTIONS(13070), 1, + ACTIONS(13122), 1, anon_sym_DASH_GT, STATE(9452), 1, aux_sym_proc_type_repeat1, - STATE(10074), 1, + STATE(10087), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417504] = 6, + [417764] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13072), 1, + ACTIONS(13124), 1, anon_sym_end, - STATE(10075), 1, + STATE(10088), 1, sym_heredoc_body, STATE(11278), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417524] = 4, + [417784] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10076), 1, + STATE(10089), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -675451,66 +675641,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [417540] = 6, + [417800] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4059), 1, anon_sym_RPAREN, - ACTIONS(13074), 1, + ACTIONS(13126), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(10077), 1, + STATE(10090), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417560] = 6, + [417820] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13076), 1, + ACTIONS(13128), 1, anon_sym_RBRACE, - ACTIONS(13078), 1, + ACTIONS(13130), 1, anon_sym_COMMA, - STATE(10078), 1, + STATE(10091), 1, sym_heredoc_body, - STATE(10125), 1, + STATE(10138), 1, aux_sym_implicit_object_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417580] = 6, + [417840] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13080), 1, + ACTIONS(13132), 1, anon_sym_end, - STATE(10079), 1, + STATE(10092), 1, sym_heredoc_body, STATE(10713), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417600] = 6, + [417860] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(9527), 1, anon_sym_RBRACE, - ACTIONS(13082), 1, + ACTIONS(13134), 1, anon_sym_COMMA, - STATE(10002), 1, + STATE(10009), 1, aux_sym_proc_type_repeat1, - STATE(10080), 1, + STATE(10093), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417620] = 4, + [417880] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10081), 1, + STATE(10094), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -675519,10 +675709,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [417636] = 4, + [417896] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10082), 1, + STATE(10095), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -675531,94 +675721,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [417652] = 6, + [417912] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12312), 1, anon_sym_LPAREN, - ACTIONS(13084), 1, + ACTIONS(13136), 1, anon_sym_RBRACK, - STATE(10083), 1, + STATE(10096), 1, sym_heredoc_body, STATE(11275), 1, sym_annotation_argument_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417672] = 6, + [417932] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10374), 1, anon_sym_RBRACE, - ACTIONS(13086), 1, + ACTIONS(13138), 1, anon_sym_COMMA, - STATE(10062), 1, + STATE(10075), 1, aux_sym_named_tuple_repeat1, - STATE(10084), 1, + STATE(10097), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417692] = 6, + [417952] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10437), 1, anon_sym_RBRACE, - ACTIONS(13088), 1, + ACTIONS(13140), 1, anon_sym_COMMA, STATE(9335), 1, aux_sym_named_tuple_type_repeat1, - STATE(10085), 1, + STATE(10098), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417712] = 6, + [417972] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13090), 1, + ACTIONS(13142), 1, anon_sym_RBRACE, - ACTIONS(13092), 1, + ACTIONS(13144), 1, anon_sym_COMMA, - STATE(10086), 1, + STATE(10099), 1, sym_heredoc_body, - STATE(10105), 1, + STATE(10118), 1, aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417732] = 6, + [417992] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13094), 1, + ACTIONS(13146), 1, anon_sym_RBRACE, - ACTIONS(13096), 1, + ACTIONS(13148), 1, anon_sym_COMMA, - STATE(10087), 1, + STATE(10100), 1, sym_heredoc_body, - STATE(10107), 1, + STATE(10120), 1, aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417752] = 6, + [418012] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4747), 1, anon_sym_COMMA, - ACTIONS(13098), 1, + ACTIONS(13150), 1, anon_sym_DASH_GT, STATE(9452), 1, aux_sym_proc_type_repeat1, - STATE(10088), 1, + STATE(10101), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417772] = 4, + [418032] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10089), 1, + STATE(10102), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -675627,10 +675817,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [417788] = 4, + [418048] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10090), 1, + STATE(10103), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -675639,52 +675829,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [417804] = 6, + [418064] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13100), 1, + ACTIONS(13152), 1, anon_sym_end, - STATE(10091), 1, + STATE(10104), 1, sym_heredoc_body, STATE(11371), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417824] = 6, + [418084] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4263), 1, anon_sym_RBRACE, - ACTIONS(13102), 1, + ACTIONS(13154), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(10092), 1, + STATE(10105), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417844] = 6, + [418104] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12312), 1, anon_sym_LPAREN, - ACTIONS(13104), 1, + ACTIONS(13156), 1, anon_sym_RBRACK, - STATE(10093), 1, + STATE(10106), 1, sym_heredoc_body, STATE(11376), 1, sym_annotation_argument_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417864] = 4, + [418124] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10094), 1, + STATE(10107), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -675693,10 +675883,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [417880] = 4, + [418140] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10095), 1, + STATE(10108), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -675705,91 +675895,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [417896] = 6, + [418156] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4241), 1, anon_sym_RBRACE, - ACTIONS(13106), 1, + ACTIONS(13158), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(10096), 1, + STATE(10109), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417916] = 6, + [418176] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3689), 1, anon_sym_RBRACE, - ACTIONS(13108), 1, + ACTIONS(13160), 1, anon_sym_COMMA, - STATE(9933), 1, + STATE(9934), 1, aux_sym_hash_repeat1, - STATE(10097), 1, + STATE(10110), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417936] = 4, + [418196] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10098), 1, + STATE(10111), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13110), 3, + ACTIONS(13162), 3, anon_sym_end, anon_sym_elsif, anon_sym_else, - [417952] = 6, + [418212] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13112), 1, + ACTIONS(13164), 1, anon_sym_end, - STATE(10099), 1, + STATE(10112), 1, sym_heredoc_body, STATE(11291), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417972] = 5, + [418232] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13116), 1, + ACTIONS(13168), 1, aux_sym__base_method_def_token1, - STATE(10100), 1, + STATE(10113), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13114), 2, + ACTIONS(13166), 2, anon_sym_RPAREN, anon_sym_COMMA, - [417990] = 6, + [418250] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10342), 1, anon_sym_RBRACE, - ACTIONS(13118), 1, + ACTIONS(13170), 1, anon_sym_COMMA, - STATE(10062), 1, + STATE(10075), 1, aux_sym_named_tuple_repeat1, - STATE(10101), 1, + STATE(10114), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418010] = 4, + [418270] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10102), 1, + STATE(10115), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -675798,132 +675988,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [418026] = 6, + [418286] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3895), 1, anon_sym_RBRACE, - ACTIONS(13120), 1, + ACTIONS(13172), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(10103), 1, + STATE(10116), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418046] = 6, + [418306] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3901), 1, anon_sym_RBRACE, - ACTIONS(13122), 1, + ACTIONS(13174), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(10104), 1, + STATE(10117), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418066] = 6, + [418326] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3703), 1, anon_sym_RBRACE, - ACTIONS(13124), 1, + ACTIONS(13176), 1, anon_sym_COMMA, - STATE(9933), 1, + STATE(9934), 1, aux_sym_hash_repeat1, - STATE(10105), 1, + STATE(10118), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418086] = 6, + [418346] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4257), 1, anon_sym_RBRACK, - ACTIONS(13126), 1, + ACTIONS(13178), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(10106), 1, + STATE(10119), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418106] = 6, + [418366] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10272), 1, anon_sym_RBRACE, - ACTIONS(13128), 1, + ACTIONS(13180), 1, anon_sym_COMMA, - STATE(10062), 1, + STATE(10075), 1, aux_sym_named_tuple_repeat1, - STATE(10107), 1, + STATE(10120), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418126] = 5, + [418386] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13132), 1, + ACTIONS(13184), 1, anon_sym_EQ, - STATE(10108), 1, + STATE(10121), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13130), 2, + ACTIONS(13182), 2, anon_sym_RPAREN, anon_sym_COMMA, - [418144] = 6, + [418404] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3691), 1, anon_sym_RBRACE, - ACTIONS(13134), 1, + ACTIONS(13186), 1, anon_sym_COMMA, - STATE(9933), 1, + STATE(9934), 1, aux_sym_hash_repeat1, - STATE(10109), 1, + STATE(10122), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418164] = 6, + [418424] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13136), 1, + ACTIONS(13188), 1, anon_sym_end, - STATE(10110), 1, + STATE(10123), 1, sym_heredoc_body, STATE(11433), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418184] = 6, + [418444] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3917), 1, anon_sym_RBRACK, - ACTIONS(13138), 1, + ACTIONS(13190), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(10111), 1, + STATE(10124), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418204] = 6, + [418464] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(8563), 1, @@ -675932,99 +676122,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9859), 1, aux_sym_annotation_argument_list_repeat1, - STATE(10112), 1, + STATE(10125), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418224] = 6, + [418484] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13140), 1, + ACTIONS(13192), 1, anon_sym_end, - STATE(10113), 1, + STATE(10126), 1, sym_heredoc_body, STATE(11480), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418244] = 6, + [418504] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13142), 1, + ACTIONS(13194), 1, anon_sym_end, - STATE(10114), 1, + STATE(10127), 1, sym_heredoc_body, STATE(11368), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418264] = 6, + [418524] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(7377), 1, anon_sym_else, - ACTIONS(13144), 1, + ACTIONS(13196), 1, anon_sym_end, - STATE(10115), 1, + STATE(10128), 1, sym_heredoc_body, STATE(10878), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418284] = 6, + [418544] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13146), 1, + ACTIONS(13198), 1, anon_sym_RBRACE, - ACTIONS(13148), 1, + ACTIONS(13200), 1, anon_sym_COMMA, - STATE(10116), 1, - sym_heredoc_body, STATE(10129), 1, + sym_heredoc_body, + STATE(10142), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418304] = 6, + [418564] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(8710), 1, anon_sym_RPAREN, ACTIONS(8712), 1, anon_sym_COMMA, - STATE(10117), 1, + STATE(10130), 1, sym_heredoc_body, - STATE(10155), 1, + STATE(10168), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418324] = 6, + [418584] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13150), 1, + ACTIONS(13202), 1, anon_sym_RBRACE, - ACTIONS(13152), 1, + ACTIONS(13204), 1, anon_sym_COMMA, - STATE(10118), 1, + STATE(10131), 1, sym_heredoc_body, - STATE(10130), 1, + STATE(10143), 1, aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418344] = 4, + [418604] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10119), 1, + STATE(10132), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -676033,694 +676223,694 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [418360] = 6, + [418620] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13154), 1, + ACTIONS(13206), 1, anon_sym_end, - STATE(10120), 1, + STATE(10133), 1, sym_heredoc_body, STATE(11384), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418380] = 6, + [418640] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13156), 1, + ACTIONS(13208), 1, anon_sym_end, - STATE(10121), 1, + STATE(10134), 1, sym_heredoc_body, STATE(11388), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418400] = 6, + [418660] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13158), 1, + ACTIONS(13210), 1, anon_sym_end, - STATE(10122), 1, + STATE(10135), 1, sym_heredoc_body, STATE(11461), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418420] = 6, + [418680] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4747), 1, anon_sym_COMMA, - ACTIONS(13160), 1, + ACTIONS(13212), 1, anon_sym_DASH_GT, STATE(9452), 1, aux_sym_proc_type_repeat1, - STATE(10123), 1, + STATE(10136), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418440] = 6, + [418700] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(8610), 1, anon_sym_RPAREN, ACTIONS(8612), 1, anon_sym_COMMA, - STATE(10124), 1, + STATE(10137), 1, sym_heredoc_body, - STATE(10199), 1, + STATE(10212), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418460] = 6, + [418720] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3408), 1, anon_sym_RBRACE, - ACTIONS(13162), 1, + ACTIONS(13214), 1, anon_sym_COMMA, STATE(9808), 1, aux_sym_implicit_object_tuple_repeat1, - STATE(10125), 1, + STATE(10138), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418480] = 6, + [418740] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10376), 1, anon_sym_RBRACE, - ACTIONS(13164), 1, + ACTIONS(13216), 1, anon_sym_COMMA, - STATE(10062), 1, + STATE(10075), 1, aux_sym_named_tuple_repeat1, - STATE(10126), 1, + STATE(10139), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418500] = 6, + [418760] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4081), 1, anon_sym_RPAREN, - ACTIONS(13166), 1, + ACTIONS(13218), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(10127), 1, + STATE(10140), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418520] = 6, + [418780] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10400), 1, anon_sym_RBRACE, - ACTIONS(13168), 1, + ACTIONS(13220), 1, anon_sym_COMMA, - STATE(10062), 1, + STATE(10075), 1, aux_sym_named_tuple_repeat1, - STATE(10128), 1, + STATE(10141), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418540] = 6, + [418800] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(9629), 1, anon_sym_RBRACE, - ACTIONS(13170), 1, + ACTIONS(13222), 1, anon_sym_COMMA, - STATE(10002), 1, + STATE(10009), 1, aux_sym_proc_type_repeat1, - STATE(10129), 1, + STATE(10142), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418560] = 6, + [418820] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10310), 1, anon_sym_RBRACE, - ACTIONS(13172), 1, + ACTIONS(13224), 1, anon_sym_COMMA, STATE(9335), 1, aux_sym_named_tuple_type_repeat1, - STATE(10130), 1, + STATE(10143), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418580] = 6, + [418840] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13174), 1, + ACTIONS(13226), 1, anon_sym_end, - STATE(10131), 1, + STATE(10144), 1, sym_heredoc_body, STATE(11568), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418600] = 6, + [418860] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13176), 1, + ACTIONS(13228), 1, anon_sym_end, - STATE(10132), 1, + STATE(10145), 1, sym_heredoc_body, STATE(10522), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418620] = 6, + [418880] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4237), 1, anon_sym_RBRACK, - ACTIONS(13178), 1, + ACTIONS(13230), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(10133), 1, + STATE(10146), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418640] = 6, + [418900] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3983), 1, anon_sym_RBRACK, - ACTIONS(13180), 1, + ACTIONS(13232), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(10134), 1, + STATE(10147), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418660] = 6, + [418920] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13182), 1, + ACTIONS(13234), 1, anon_sym_RBRACE, - ACTIONS(13184), 1, + ACTIONS(13236), 1, anon_sym_COMMA, STATE(9734), 1, aux_sym_proc_type_repeat1, - STATE(10135), 1, + STATE(10148), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418680] = 6, + [418940] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13186), 1, + ACTIONS(13238), 1, anon_sym_end, - STATE(10136), 1, + STATE(10149), 1, sym_heredoc_body, STATE(11540), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418700] = 6, + [418960] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(7377), 1, anon_sym_else, - ACTIONS(13188), 1, + ACTIONS(13240), 1, anon_sym_end, - STATE(10137), 1, + STATE(10150), 1, sym_heredoc_body, STATE(11395), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418720] = 6, + [418980] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13190), 1, + ACTIONS(13242), 1, anon_sym_RBRACE, - ACTIONS(13192), 1, + ACTIONS(13244), 1, anon_sym_COMMA, - STATE(10138), 1, + STATE(10151), 1, sym_heredoc_body, - STATE(10148), 1, + STATE(10161), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418740] = 6, + [419000] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13194), 1, + ACTIONS(13246), 1, anon_sym_RBRACE, - ACTIONS(13196), 1, + ACTIONS(13248), 1, anon_sym_COMMA, - STATE(10139), 1, + STATE(10152), 1, sym_heredoc_body, - STATE(10149), 1, + STATE(10162), 1, aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418760] = 6, + [419020] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13198), 1, + ACTIONS(13250), 1, anon_sym_end, - STATE(10140), 1, + STATE(10153), 1, sym_heredoc_body, STATE(11503), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418780] = 6, + [419040] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4747), 1, anon_sym_COMMA, - ACTIONS(13200), 1, + ACTIONS(13252), 1, anon_sym_DASH_GT, STATE(9452), 1, aux_sym_proc_type_repeat1, - STATE(10141), 1, + STATE(10154), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418800] = 6, + [419060] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13202), 1, + ACTIONS(13254), 1, anon_sym_RBRACE, - ACTIONS(13204), 1, + ACTIONS(13256), 1, anon_sym_COMMA, - STATE(10142), 1, + STATE(10155), 1, sym_heredoc_body, - STATE(10166), 1, + STATE(10179), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418820] = 6, + [419080] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13206), 1, + ACTIONS(13258), 1, anon_sym_end, - STATE(10143), 1, + STATE(10156), 1, sym_heredoc_body, STATE(10856), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418840] = 6, + [419100] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13208), 1, + ACTIONS(13260), 1, anon_sym_RBRACE, - ACTIONS(13210), 1, + ACTIONS(13262), 1, anon_sym_COMMA, - STATE(10144), 1, + STATE(10157), 1, sym_heredoc_body, - STATE(10167), 1, + STATE(10180), 1, aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418860] = 4, + [419120] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10145), 1, + STATE(10158), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13212), 3, + ACTIONS(13264), 3, anon_sym_end, anon_sym_else, anon_sym_when, - [418876] = 6, + [419136] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4091), 1, anon_sym_RPAREN, - ACTIONS(13214), 1, + ACTIONS(13266), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(10146), 1, + STATE(10159), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418896] = 6, + [419156] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4747), 1, anon_sym_COMMA, - ACTIONS(13216), 1, + ACTIONS(13268), 1, anon_sym_DASH_GT, STATE(9452), 1, aux_sym_proc_type_repeat1, - STATE(10147), 1, + STATE(10160), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418916] = 6, + [419176] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(9691), 1, anon_sym_RBRACE, - ACTIONS(13218), 1, + ACTIONS(13270), 1, anon_sym_COMMA, - STATE(10002), 1, + STATE(10009), 1, aux_sym_proc_type_repeat1, - STATE(10148), 1, + STATE(10161), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418936] = 6, + [419196] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10352), 1, anon_sym_RBRACE, - ACTIONS(13220), 1, + ACTIONS(13272), 1, anon_sym_COMMA, STATE(9335), 1, aux_sym_named_tuple_type_repeat1, - STATE(10149), 1, + STATE(10162), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418956] = 6, + [419216] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13222), 1, + ACTIONS(13274), 1, anon_sym_end, - STATE(10150), 1, + STATE(10163), 1, sym_heredoc_body, STATE(11411), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418976] = 6, + [419236] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(8642), 1, anon_sym_RPAREN, ACTIONS(8644), 1, anon_sym_COMMA, - STATE(10151), 1, + STATE(10164), 1, sym_heredoc_body, - STATE(10316), 1, + STATE(10329), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418996] = 6, + [419256] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13224), 1, + ACTIONS(13276), 1, anon_sym_end, - STATE(10152), 1, + STATE(10165), 1, sym_heredoc_body, STATE(10661), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419016] = 6, + [419276] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13226), 1, + ACTIONS(13278), 1, anon_sym_end, - STATE(10153), 1, + STATE(10166), 1, sym_heredoc_body, STATE(10926), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419036] = 6, + [419296] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13228), 1, + ACTIONS(13280), 1, anon_sym_end, - STATE(10154), 1, + STATE(10167), 1, sym_heredoc_body, STATE(11414), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419056] = 6, + [419316] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3314), 1, anon_sym_RPAREN, - ACTIONS(13230), 1, + ACTIONS(13282), 1, anon_sym_COMMA, - STATE(10155), 1, + STATE(10168), 1, sym_heredoc_body, - STATE(10318), 1, + STATE(10331), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419076] = 6, + [419336] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3965), 1, anon_sym_RPAREN, - ACTIONS(13232), 1, + ACTIONS(13284), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(10156), 1, + STATE(10169), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419096] = 6, + [419356] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13234), 1, + ACTIONS(13286), 1, anon_sym_end, - STATE(10157), 1, + STATE(10170), 1, sym_heredoc_body, STATE(11420), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419116] = 6, + [419376] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13236), 1, + ACTIONS(13288), 1, anon_sym_end, - STATE(10158), 1, + STATE(10171), 1, sym_heredoc_body, STATE(11647), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419136] = 6, + [419396] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13238), 1, + ACTIONS(13290), 1, anon_sym_end, - STATE(10159), 1, + STATE(10172), 1, sym_heredoc_body, STATE(11507), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419156] = 6, + [419416] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(8038), 1, sym__constant_segment, ACTIONS(8040), 1, anon_sym_COLON_COLON, - STATE(10160), 1, + STATE(10173), 1, sym_heredoc_body, STATE(11179), 1, sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419176] = 6, + [419436] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13240), 1, + ACTIONS(13292), 1, anon_sym_end, - STATE(10161), 1, + STATE(10174), 1, sym_heredoc_body, STATE(11424), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419196] = 6, + [419456] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(8038), 1, sym__constant_segment, ACTIONS(8040), 1, anon_sym_COLON_COLON, - STATE(10162), 1, + STATE(10175), 1, sym_heredoc_body, STATE(11227), 1, sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419216] = 6, + [419476] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4077), 1, anon_sym_RBRACK, - ACTIONS(13242), 1, + ACTIONS(13294), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(10163), 1, + STATE(10176), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419236] = 6, + [419496] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13244), 1, + ACTIONS(13296), 1, anon_sym_RBRACE, - ACTIONS(13246), 1, + ACTIONS(13298), 1, anon_sym_COMMA, - STATE(10164), 1, + STATE(10177), 1, sym_heredoc_body, - STATE(10197), 1, + STATE(10210), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419256] = 6, + [419516] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13248), 1, + ACTIONS(13300), 1, anon_sym_end, - STATE(10165), 1, + STATE(10178), 1, sym_heredoc_body, STATE(11964), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419276] = 6, + [419536] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(9621), 1, anon_sym_RBRACE, - ACTIONS(13250), 1, + ACTIONS(13302), 1, anon_sym_COMMA, - STATE(10002), 1, + STATE(10009), 1, aux_sym_proc_type_repeat1, - STATE(10166), 1, + STATE(10179), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419296] = 6, + [419556] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10286), 1, anon_sym_RBRACE, - ACTIONS(13252), 1, + ACTIONS(13304), 1, anon_sym_COMMA, STATE(9335), 1, aux_sym_named_tuple_type_repeat1, - STATE(10167), 1, + STATE(10180), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419316] = 6, + [419576] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13254), 1, + ACTIONS(13306), 1, anon_sym_RBRACE, - ACTIONS(13256), 1, + ACTIONS(13308), 1, anon_sym_COMMA, - STATE(10168), 1, + STATE(10181), 1, sym_heredoc_body, - STATE(10198), 1, + STATE(10211), 1, aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419336] = 4, + [419596] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10169), 1, + STATE(10182), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -676729,38 +676919,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [419352] = 6, + [419612] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13258), 1, + ACTIONS(13310), 1, anon_sym_end, - STATE(10170), 1, + STATE(10183), 1, sym_heredoc_body, STATE(11441), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419372] = 6, + [419632] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4747), 1, anon_sym_COMMA, - ACTIONS(13260), 1, + ACTIONS(13312), 1, anon_sym_DASH_GT, STATE(9452), 1, aux_sym_proc_type_repeat1, - STATE(10171), 1, + STATE(10184), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419392] = 4, + [419652] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10172), 1, + STATE(10185), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -676769,24 +676959,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [419408] = 6, + [419668] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13262), 1, + ACTIONS(13314), 1, anon_sym_end, - STATE(10173), 1, + STATE(10186), 1, sym_heredoc_body, STATE(11446), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419428] = 4, + [419688] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10174), 1, + STATE(10187), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -676795,10 +676985,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [419444] = 4, + [419704] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10175), 1, + STATE(10188), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -676807,10 +676997,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [419460] = 4, + [419720] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10176), 1, + STATE(10189), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -676819,10 +677009,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [419476] = 4, + [419736] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10177), 1, + STATE(10190), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -676831,10 +677021,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [419492] = 4, + [419752] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10178), 1, + STATE(10191), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -676843,10 +677033,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [419508] = 4, + [419768] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10179), 1, + STATE(10192), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -676855,24 +677045,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [419524] = 6, + [419784] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13264), 1, + ACTIONS(13316), 1, anon_sym_end, - STATE(10180), 1, + STATE(10193), 1, sym_heredoc_body, STATE(11452), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419544] = 4, + [419804] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10181), 1, + STATE(10194), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -676881,10 +677071,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [419560] = 4, + [419820] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10182), 1, + STATE(10195), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -676893,10 +677083,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [419576] = 4, + [419836] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10183), 1, + STATE(10196), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -676905,368 +677095,368 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [419592] = 6, + [419852] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13266), 1, + ACTIONS(13318), 1, anon_sym_end, - STATE(10184), 1, + STATE(10197), 1, sym_heredoc_body, STATE(11455), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419612] = 6, + [419872] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13268), 1, + ACTIONS(13320), 1, anon_sym_end, - STATE(10185), 1, + STATE(10198), 1, sym_heredoc_body, STATE(11458), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419632] = 6, + [419892] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13270), 1, + ACTIONS(13322), 1, anon_sym_end, - STATE(10186), 1, + STATE(10199), 1, sym_heredoc_body, STATE(11459), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419652] = 6, + [419912] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13272), 1, + ACTIONS(13324), 1, anon_sym_end, - STATE(10187), 1, + STATE(10200), 1, sym_heredoc_body, STATE(11467), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419672] = 6, + [419932] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(7377), 1, anon_sym_else, - ACTIONS(13274), 1, + ACTIONS(13326), 1, anon_sym_end, - STATE(10188), 1, + STATE(10201), 1, sym_heredoc_body, STATE(11526), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419692] = 6, + [419952] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13276), 1, + ACTIONS(13328), 1, anon_sym_RBRACE, - ACTIONS(13278), 1, + ACTIONS(13330), 1, anon_sym_COMMA, STATE(9756), 1, aux_sym_named_tuple_type_repeat1, - STATE(10189), 1, + STATE(10202), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419712] = 6, + [419972] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13280), 1, + ACTIONS(13332), 1, anon_sym_RBRACE, - ACTIONS(13282), 1, + ACTIONS(13334), 1, anon_sym_COMMA, - STATE(10190), 1, + STATE(10203), 1, sym_heredoc_body, - STATE(10215), 1, + STATE(10228), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419732] = 6, + [419992] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13284), 1, + ACTIONS(13336), 1, anon_sym_RBRACE, - ACTIONS(13286), 1, + ACTIONS(13338), 1, anon_sym_COMMA, - STATE(10191), 1, + STATE(10204), 1, sym_heredoc_body, - STATE(10217), 1, + STATE(10230), 1, aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419752] = 6, + [420012] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4747), 1, anon_sym_COMMA, - ACTIONS(13288), 1, + ACTIONS(13340), 1, anon_sym_DASH_GT, STATE(9452), 1, aux_sym_proc_type_repeat1, - STATE(10192), 1, + STATE(10205), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419772] = 6, + [420032] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13290), 1, + ACTIONS(13342), 1, anon_sym_end, - STATE(10193), 1, + STATE(10206), 1, sym_heredoc_body, STATE(11547), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419792] = 6, + [420052] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13292), 1, + ACTIONS(13344), 1, anon_sym_end, - STATE(10194), 1, + STATE(10207), 1, sym_heredoc_body, STATE(10953), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419812] = 6, + [420072] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4099), 1, anon_sym_RPAREN, - ACTIONS(13294), 1, + ACTIONS(13346), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(10195), 1, + STATE(10208), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419832] = 6, + [420092] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13296), 1, + ACTIONS(13348), 1, anon_sym_end, - STATE(10196), 1, + STATE(10209), 1, sym_heredoc_body, STATE(11552), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419852] = 6, + [420112] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(9625), 1, anon_sym_RBRACE, - ACTIONS(13298), 1, + ACTIONS(13350), 1, anon_sym_COMMA, - STATE(10002), 1, + STATE(10009), 1, aux_sym_proc_type_repeat1, - STATE(10197), 1, + STATE(10210), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419872] = 6, + [420132] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10288), 1, anon_sym_RBRACE, - ACTIONS(13300), 1, + ACTIONS(13352), 1, anon_sym_COMMA, STATE(9335), 1, aux_sym_named_tuple_type_repeat1, - STATE(10198), 1, + STATE(10211), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419892] = 6, + [420152] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3268), 1, anon_sym_RPAREN, - ACTIONS(13302), 1, + ACTIONS(13354), 1, anon_sym_COMMA, - STATE(10199), 1, + STATE(10212), 1, sym_heredoc_body, - STATE(10318), 1, + STATE(10331), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419912] = 6, + [420172] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4005), 1, anon_sym_RPAREN, - ACTIONS(13304), 1, + ACTIONS(13356), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(10200), 1, + STATE(10213), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419932] = 6, + [420192] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(11390), 1, anon_sym_RPAREN, - ACTIONS(13306), 1, + ACTIONS(13358), 1, anon_sym_COMMA, STATE(9776), 1, aux_sym_type_param_list_repeat1, - STATE(10201), 1, + STATE(10214), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419952] = 6, + [420212] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13308), 1, + ACTIONS(13360), 1, anon_sym_end, - STATE(10202), 1, + STATE(10215), 1, sym_heredoc_body, STATE(11575), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419972] = 6, + [420232] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13310), 1, + ACTIONS(13362), 1, anon_sym_RBRACE, - ACTIONS(13312), 1, + ACTIONS(13364), 1, anon_sym_COMMA, - STATE(10203), 1, + STATE(10216), 1, sym_heredoc_body, - STATE(10221), 1, + STATE(10234), 1, aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419992] = 5, + [420252] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13316), 1, + ACTIONS(13368), 1, anon_sym_EQ, - STATE(10204), 1, + STATE(10217), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13314), 2, + ACTIONS(13366), 2, anon_sym_RPAREN, anon_sym_COMMA, - [420010] = 6, + [420270] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13318), 1, + ACTIONS(13370), 1, anon_sym_RBRACE, - ACTIONS(13320), 1, + ACTIONS(13372), 1, anon_sym_COMMA, - STATE(10205), 1, + STATE(10218), 1, sym_heredoc_body, - STATE(10223), 1, + STATE(10236), 1, aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420030] = 6, + [420290] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13322), 1, + ACTIONS(13374), 1, anon_sym_end, - STATE(10206), 1, + STATE(10219), 1, sym_heredoc_body, STATE(11583), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420050] = 6, + [420310] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13324), 1, + ACTIONS(13376), 1, anon_sym_end, - STATE(10207), 1, + STATE(10220), 1, sym_heredoc_body, STATE(10961), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420070] = 5, + [420330] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13328), 1, + ACTIONS(13380), 1, aux_sym__base_method_def_token1, - STATE(10208), 1, + STATE(10221), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13326), 2, + ACTIONS(13378), 2, anon_sym_RPAREN, anon_sym_COMMA, - [420088] = 5, + [420348] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13332), 1, + ACTIONS(13384), 1, aux_sym__base_method_def_token1, - STATE(10209), 1, + STATE(10222), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13330), 2, + ACTIONS(13382), 2, anon_sym_RPAREN, anon_sym_COMMA, - [420106] = 6, + [420366] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(8626), 1, @@ -677275,87 +677465,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9701), 1, aux_sym_annotation_argument_list_repeat1, - STATE(10210), 1, + STATE(10223), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420126] = 6, + [420386] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10062), 1, anon_sym_RPAREN, - ACTIONS(13334), 1, + ACTIONS(13386), 1, anon_sym_COMMA, - STATE(10060), 1, + STATE(10073), 1, aux_sym_param_list_repeat1, - STATE(10211), 1, + STATE(10224), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420146] = 6, + [420406] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13336), 1, + ACTIONS(13388), 1, anon_sym_end, - STATE(10212), 1, + STATE(10225), 1, sym_heredoc_body, STATE(10725), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420166] = 6, + [420426] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13338), 1, + ACTIONS(13390), 1, anon_sym_RPAREN, - ACTIONS(13340), 1, + ACTIONS(13392), 1, anon_sym_COMMA, - STATE(9951), 1, + STATE(9954), 1, aux_sym_named_tuple_type_repeat1, - STATE(10213), 1, + STATE(10226), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420186] = 6, + [420446] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13342), 1, + ACTIONS(13394), 1, anon_sym_end, - STATE(10214), 1, + STATE(10227), 1, sym_heredoc_body, STATE(11576), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420206] = 6, + [420466] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(9661), 1, anon_sym_RBRACE, - ACTIONS(13344), 1, + ACTIONS(13396), 1, anon_sym_COMMA, - STATE(10002), 1, + STATE(10009), 1, aux_sym_proc_type_repeat1, - STATE(10215), 1, + STATE(10228), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420226] = 5, + [420486] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(292), 1, sym__terminator, - STATE(10216), 1, + STATE(10229), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -677363,260 +677553,260 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1409), 2, sym__line_break, anon_sym_SEMI, - [420244] = 6, + [420504] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10364), 1, anon_sym_RBRACE, - ACTIONS(13346), 1, + ACTIONS(13398), 1, anon_sym_COMMA, STATE(9335), 1, aux_sym_named_tuple_type_repeat1, - STATE(10217), 1, + STATE(10230), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420264] = 4, + [420524] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10218), 1, + STATE(10231), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13348), 3, + ACTIONS(13400), 3, sym_identifier, sym_instance_var, sym_class_var, - [420280] = 6, + [420540] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4023), 1, anon_sym_RBRACE, - ACTIONS(13350), 1, + ACTIONS(13402), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(10219), 1, + STATE(10232), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420300] = 6, + [420560] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13352), 1, + ACTIONS(13404), 1, anon_sym_end, - STATE(10220), 1, + STATE(10233), 1, sym_heredoc_body, STATE(10593), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420320] = 6, + [420580] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3735), 1, anon_sym_RBRACE, - ACTIONS(13354), 1, + ACTIONS(13406), 1, anon_sym_COMMA, - STATE(9933), 1, + STATE(9934), 1, aux_sym_hash_repeat1, - STATE(10221), 1, + STATE(10234), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420340] = 6, + [420600] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13356), 1, + ACTIONS(13408), 1, anon_sym_end, - STATE(10222), 1, + STATE(10235), 1, sym_heredoc_body, STATE(11626), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420360] = 6, + [420620] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10354), 1, anon_sym_RBRACE, - ACTIONS(13358), 1, + ACTIONS(13410), 1, anon_sym_COMMA, - STATE(10062), 1, + STATE(10075), 1, aux_sym_named_tuple_repeat1, - STATE(10223), 1, + STATE(10236), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420380] = 6, + [420640] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13360), 1, + ACTIONS(13412), 1, anon_sym_end, - STATE(10224), 1, + STATE(10237), 1, sym_heredoc_body, STATE(10738), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420400] = 6, + [420660] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4067), 1, anon_sym_RBRACK, - ACTIONS(13362), 1, + ACTIONS(13414), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(10225), 1, + STATE(10238), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420420] = 6, + [420680] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13364), 1, + ACTIONS(13416), 1, anon_sym_RBRACE, - ACTIONS(13366), 1, + ACTIONS(13418), 1, anon_sym_COMMA, - STATE(10226), 1, + STATE(10239), 1, sym_heredoc_body, - STATE(10260), 1, + STATE(10273), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420440] = 6, + [420700] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13368), 1, + ACTIONS(13420), 1, anon_sym_end, - STATE(10227), 1, + STATE(10240), 1, sym_heredoc_body, STATE(11614), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420460] = 6, + [420720] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(8725), 1, anon_sym_RPAREN, ACTIONS(8727), 1, anon_sym_COMMA, - STATE(10228), 1, + STATE(10241), 1, sym_heredoc_body, - STATE(10248), 1, + STATE(10261), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420480] = 6, + [420740] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13370), 1, + ACTIONS(13422), 1, anon_sym_end, - STATE(10229), 1, + STATE(10242), 1, sym_heredoc_body, STATE(11627), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420500] = 6, + [420760] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13372), 1, + ACTIONS(13424), 1, anon_sym_end, - STATE(10230), 1, + STATE(10243), 1, sym_heredoc_body, STATE(11632), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420520] = 6, + [420780] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13374), 1, + ACTIONS(13426), 1, anon_sym_end, - STATE(10231), 1, + STATE(10244), 1, sym_heredoc_body, STATE(11672), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420540] = 6, + [420800] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13376), 1, + ACTIONS(13428), 1, anon_sym_end, - STATE(10232), 1, + STATE(10245), 1, sym_heredoc_body, STATE(11490), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420560] = 6, + [420820] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13378), 1, + ACTIONS(13430), 1, anon_sym_RBRACE, - ACTIONS(13380), 1, + ACTIONS(13432), 1, anon_sym_COMMA, - STATE(10233), 1, + STATE(10246), 1, sym_heredoc_body, - STATE(10265), 1, + STATE(10278), 1, aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420580] = 6, + [420840] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4747), 1, anon_sym_COMMA, - ACTIONS(13382), 1, + ACTIONS(13434), 1, anon_sym_DASH_GT, STATE(9452), 1, aux_sym_proc_type_repeat1, - STATE(10234), 1, + STATE(10247), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420600] = 4, + [420860] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10235), 1, + STATE(10248), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -677625,441 +677815,441 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [420616] = 6, + [420876] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4229), 1, anon_sym_RPAREN, - ACTIONS(13384), 1, + ACTIONS(13436), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(10236), 1, + STATE(10249), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420636] = 6, + [420896] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(7377), 1, anon_sym_else, - ACTIONS(13386), 1, + ACTIONS(13438), 1, anon_sym_end, - STATE(10237), 1, + STATE(10250), 1, sym_heredoc_body, STATE(11664), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420656] = 6, + [420916] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13388), 1, + ACTIONS(13440), 1, anon_sym_RBRACE, - ACTIONS(13390), 1, + ACTIONS(13442), 1, anon_sym_COMMA, - STATE(10238), 1, + STATE(10251), 1, sym_heredoc_body, - STATE(10239), 1, + STATE(10252), 1, aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420676] = 6, + [420936] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3851), 1, anon_sym_RBRACE, - ACTIONS(13392), 1, + ACTIONS(13444), 1, anon_sym_COMMA, - STATE(9933), 1, + STATE(9934), 1, aux_sym_hash_repeat1, - STATE(10239), 1, + STATE(10252), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420696] = 6, + [420956] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13394), 1, + ACTIONS(13446), 1, anon_sym_RBRACE, - ACTIONS(13396), 1, + ACTIONS(13448), 1, anon_sym_COMMA, - STATE(10240), 1, + STATE(10253), 1, sym_heredoc_body, - STATE(10261), 1, + STATE(10274), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420716] = 6, + [420976] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13398), 1, + ACTIONS(13450), 1, anon_sym_RBRACE, - ACTIONS(13400), 1, + ACTIONS(13452), 1, anon_sym_COMMA, - STATE(10241), 1, + STATE(10254), 1, sym_heredoc_body, - STATE(10262), 1, + STATE(10275), 1, aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420736] = 6, + [420996] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4747), 1, anon_sym_COMMA, - ACTIONS(13402), 1, + ACTIONS(13454), 1, anon_sym_DASH_GT, STATE(9452), 1, aux_sym_proc_type_repeat1, - STATE(10242), 1, + STATE(10255), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420756] = 6, + [421016] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13404), 1, + ACTIONS(13456), 1, anon_sym_RBRACE, - ACTIONS(13406), 1, + ACTIONS(13458), 1, anon_sym_COMMA, - STATE(10243), 1, + STATE(10256), 1, sym_heredoc_body, - STATE(10244), 1, + STATE(10257), 1, aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420776] = 6, + [421036] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3855), 1, anon_sym_RBRACE, - ACTIONS(13408), 1, + ACTIONS(13460), 1, anon_sym_COMMA, - STATE(9933), 1, + STATE(9934), 1, aux_sym_hash_repeat1, - STATE(10244), 1, + STATE(10257), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420796] = 6, + [421056] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13410), 1, + ACTIONS(13462), 1, anon_sym_end, - STATE(10245), 1, + STATE(10258), 1, sym_heredoc_body, STATE(11673), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420816] = 6, + [421076] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13412), 1, + ACTIONS(13464), 1, anon_sym_end, - STATE(10246), 1, + STATE(10259), 1, sym_heredoc_body, STATE(11676), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420836] = 6, + [421096] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13414), 1, + ACTIONS(13466), 1, anon_sym_end, - STATE(10247), 1, + STATE(10260), 1, sym_heredoc_body, STATE(11695), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420856] = 6, + [421116] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3320), 1, anon_sym_RPAREN, - ACTIONS(13416), 1, + ACTIONS(13468), 1, anon_sym_COMMA, - STATE(10248), 1, + STATE(10261), 1, sym_heredoc_body, - STATE(10318), 1, + STATE(10331), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420876] = 6, + [421136] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13418), 1, + ACTIONS(13470), 1, anon_sym_end, - STATE(10249), 1, + STATE(10262), 1, sym_heredoc_body, STATE(10588), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420896] = 6, + [421156] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13420), 1, + ACTIONS(13472), 1, anon_sym_RBRACE, - ACTIONS(13422), 1, + ACTIONS(13474), 1, anon_sym_COMMA, - STATE(10250), 1, + STATE(10263), 1, sym_heredoc_body, - STATE(10252), 1, + STATE(10265), 1, aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420916] = 6, + [421176] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4255), 1, anon_sym_RPAREN, - ACTIONS(13424), 1, + ACTIONS(13476), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(10251), 1, + STATE(10264), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420936] = 6, + [421196] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3859), 1, anon_sym_RBRACE, - ACTIONS(13426), 1, + ACTIONS(13478), 1, anon_sym_COMMA, - STATE(9933), 1, + STATE(9934), 1, aux_sym_hash_repeat1, - STATE(10252), 1, + STATE(10265), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420956] = 6, + [421216] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13428), 1, + ACTIONS(13480), 1, anon_sym_end, - STATE(10253), 1, + STATE(10266), 1, sym_heredoc_body, STATE(11682), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420976] = 6, + [421236] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13430), 1, + ACTIONS(13482), 1, anon_sym_end, - STATE(10254), 1, + STATE(10267), 1, sym_heredoc_body, STATE(11685), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420996] = 6, + [421256] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13432), 1, + ACTIONS(13484), 1, anon_sym_RBRACE, - ACTIONS(13434), 1, + ACTIONS(13486), 1, anon_sym_COMMA, - STATE(10255), 1, + STATE(10268), 1, sym_heredoc_body, - STATE(10256), 1, + STATE(10269), 1, aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421016] = 6, + [421276] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3863), 1, anon_sym_RBRACE, - ACTIONS(13436), 1, + ACTIONS(13488), 1, anon_sym_COMMA, - STATE(9933), 1, + STATE(9934), 1, aux_sym_hash_repeat1, - STATE(10256), 1, + STATE(10269), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421036] = 6, + [421296] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13438), 1, + ACTIONS(13490), 1, anon_sym_RBRACE, - ACTIONS(13440), 1, + ACTIONS(13492), 1, anon_sym_COMMA, - STATE(10257), 1, + STATE(10270), 1, sym_heredoc_body, - STATE(10258), 1, + STATE(10271), 1, aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421056] = 6, + [421316] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3867), 1, anon_sym_RBRACE, - ACTIONS(13442), 1, + ACTIONS(13494), 1, anon_sym_COMMA, - STATE(9933), 1, + STATE(9934), 1, aux_sym_hash_repeat1, - STATE(10258), 1, + STATE(10271), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421076] = 6, + [421336] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13444), 1, + ACTIONS(13496), 1, anon_sym_end, - STATE(10259), 1, + STATE(10272), 1, sym_heredoc_body, STATE(11943), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421096] = 6, + [421356] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(9641), 1, anon_sym_RBRACE, - ACTIONS(13446), 1, + ACTIONS(13498), 1, anon_sym_COMMA, - STATE(10002), 1, + STATE(10009), 1, aux_sym_proc_type_repeat1, - STATE(10260), 1, + STATE(10273), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421116] = 6, + [421376] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(9637), 1, anon_sym_RBRACE, - ACTIONS(13448), 1, + ACTIONS(13500), 1, anon_sym_COMMA, - STATE(10002), 1, + STATE(10009), 1, aux_sym_proc_type_repeat1, - STATE(10261), 1, + STATE(10274), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421136] = 6, + [421396] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10378), 1, anon_sym_RBRACE, - ACTIONS(13450), 1, + ACTIONS(13502), 1, anon_sym_COMMA, STATE(9335), 1, aux_sym_named_tuple_type_repeat1, - STATE(10262), 1, + STATE(10275), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421156] = 6, + [421416] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13452), 1, + ACTIONS(13504), 1, anon_sym_end, - STATE(10263), 1, + STATE(10276), 1, sym_heredoc_body, STATE(11696), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421176] = 6, + [421436] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13454), 1, + ACTIONS(13506), 1, anon_sym_end, - STATE(10264), 1, + STATE(10277), 1, sym_heredoc_body, STATE(11702), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421196] = 6, + [421456] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10398), 1, anon_sym_RBRACE, - ACTIONS(13456), 1, + ACTIONS(13508), 1, anon_sym_COMMA, STATE(9335), 1, aux_sym_named_tuple_type_repeat1, - STATE(10265), 1, + STATE(10278), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421216] = 6, + [421476] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13458), 1, + ACTIONS(13510), 1, anon_sym_end, - STATE(10266), 1, + STATE(10279), 1, sym_heredoc_body, STATE(11734), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421236] = 6, + [421496] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(9303), 1, @@ -678068,138 +678258,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, STATE(9218), 1, sym_constant, - STATE(10267), 1, + STATE(10280), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421256] = 6, + [421516] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13460), 1, + ACTIONS(13512), 1, anon_sym_end, - STATE(10268), 1, + STATE(10281), 1, sym_heredoc_body, STATE(11716), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421276] = 6, + [421536] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(8038), 1, sym__constant_segment, ACTIONS(8040), 1, anon_sym_COLON_COLON, - STATE(10269), 1, + STATE(10282), 1, sym_heredoc_body, STATE(10728), 1, sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421296] = 6, + [421556] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(8038), 1, sym__constant_segment, ACTIONS(8040), 1, anon_sym_COLON_COLON, - STATE(10270), 1, + STATE(10283), 1, sym_heredoc_body, STATE(10740), 1, sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421316] = 6, + [421576] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13462), 1, + ACTIONS(13514), 1, anon_sym_end, - STATE(10271), 1, + STATE(10284), 1, sym_heredoc_body, STATE(10727), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421336] = 6, + [421596] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13464), 1, + ACTIONS(13516), 1, anon_sym_end, - STATE(10272), 1, + STATE(10285), 1, sym_heredoc_body, STATE(11720), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421356] = 6, + [421616] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13466), 1, + ACTIONS(13518), 1, anon_sym_end, - STATE(10273), 1, + STATE(10286), 1, sym_heredoc_body, STATE(11726), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421376] = 6, + [421636] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13468), 1, + ACTIONS(13520), 1, anon_sym_RBRACE, - ACTIONS(13470), 1, + ACTIONS(13522), 1, anon_sym_COMMA, STATE(9678), 1, aux_sym_hash_repeat1, - STATE(10274), 1, + STATE(10287), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421396] = 6, + [421656] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13472), 1, + ACTIONS(13524), 1, anon_sym_end, - STATE(10275), 1, + STATE(10288), 1, sym_heredoc_body, STATE(11730), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421416] = 6, + [421676] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13474), 1, + ACTIONS(13526), 1, anon_sym_end, - STATE(10276), 1, + STATE(10289), 1, sym_heredoc_body, STATE(11740), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421436] = 6, + [421696] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(8513), 1, @@ -678208,276 +678398,276 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9764), 1, aux_sym_annotation_argument_list_repeat1, - STATE(10277), 1, + STATE(10290), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421456] = 6, + [421716] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13476), 1, + ACTIONS(13528), 1, anon_sym_end, - STATE(10278), 1, + STATE(10291), 1, sym_heredoc_body, STATE(11745), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421476] = 6, + [421736] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(7377), 1, anon_sym_else, - ACTIONS(13478), 1, + ACTIONS(13530), 1, anon_sym_end, - STATE(10279), 1, + STATE(10292), 1, sym_heredoc_body, STATE(11091), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421496] = 6, + [421756] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13480), 1, + ACTIONS(13532), 1, anon_sym_RBRACE, - ACTIONS(13482), 1, + ACTIONS(13534), 1, anon_sym_COMMA, STATE(9680), 1, aux_sym_named_tuple_repeat1, - STATE(10280), 1, + STATE(10293), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421516] = 6, + [421776] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13484), 1, + ACTIONS(13536), 1, anon_sym_RBRACE, - ACTIONS(13486), 1, + ACTIONS(13538), 1, anon_sym_COMMA, - STATE(10281), 1, + STATE(10294), 1, sym_heredoc_body, - STATE(10299), 1, + STATE(10312), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421536] = 6, + [421796] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13488), 1, + ACTIONS(13540), 1, anon_sym_RBRACE, - ACTIONS(13490), 1, + ACTIONS(13542), 1, anon_sym_COMMA, - STATE(10282), 1, + STATE(10295), 1, sym_heredoc_body, - STATE(10301), 1, + STATE(10314), 1, aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421556] = 6, + [421816] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13492), 1, + ACTIONS(13544), 1, anon_sym_end, - STATE(10283), 1, + STATE(10296), 1, sym_heredoc_body, STATE(11934), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421576] = 6, + [421836] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4747), 1, anon_sym_COMMA, - ACTIONS(13494), 1, + ACTIONS(13546), 1, anon_sym_DASH_GT, STATE(9452), 1, aux_sym_proc_type_repeat1, - STATE(10284), 1, + STATE(10297), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421596] = 6, + [421856] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13496), 1, + ACTIONS(13548), 1, anon_sym_RBRACE, - ACTIONS(13498), 1, + ACTIONS(13550), 1, anon_sym_COMMA, - STATE(10285), 1, + STATE(10298), 1, sym_heredoc_body, - STATE(10339), 1, + STATE(10353), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421616] = 6, + [421876] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13500), 1, + ACTIONS(13552), 1, anon_sym_RBRACE, - ACTIONS(13502), 1, + ACTIONS(13554), 1, anon_sym_COMMA, STATE(9753), 1, aux_sym_hash_repeat1, - STATE(10286), 1, + STATE(10299), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421636] = 4, + [421896] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10287), 1, + STATE(10300), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13504), 3, + ACTIONS(13556), 3, sym_identifier, sym_instance_var, sym_class_var, - [421652] = 6, + [421912] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13506), 1, + ACTIONS(13558), 1, anon_sym_RBRACE, - ACTIONS(13508), 1, + ACTIONS(13560), 1, anon_sym_COMMA, - STATE(9912), 1, + STATE(9913), 1, aux_sym_named_tuple_repeat1, - STATE(10288), 1, + STATE(10301), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421672] = 6, + [421932] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13510), 1, + ACTIONS(13562), 1, anon_sym_RBRACE, - ACTIONS(13512), 1, + ACTIONS(13564), 1, anon_sym_COMMA, - STATE(10289), 1, + STATE(10302), 1, sym_heredoc_body, - STATE(10340), 1, + STATE(10354), 1, aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421692] = 6, + [421952] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4247), 1, anon_sym_RPAREN, - ACTIONS(13514), 1, + ACTIONS(13566), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(10290), 1, + STATE(10303), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421712] = 6, + [421972] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13516), 1, + ACTIONS(13568), 1, anon_sym_RBRACE, - ACTIONS(13518), 1, + ACTIONS(13570), 1, anon_sym_COMMA, - STATE(10291), 1, + STATE(10304), 1, sym_heredoc_body, - STATE(10345), 1, + STATE(10359), 1, aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421732] = 6, + [421992] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13520), 1, + ACTIONS(13572), 1, anon_sym_end, - STATE(10292), 1, + STATE(10305), 1, sym_heredoc_body, STATE(11822), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421752] = 6, + [422012] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13522), 1, + ACTIONS(13574), 1, anon_sym_RBRACE, - ACTIONS(13524), 1, + ACTIONS(13576), 1, anon_sym_COMMA, - STATE(10293), 1, + STATE(10306), 1, sym_heredoc_body, - STATE(10347), 1, + STATE(10361), 1, aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421772] = 6, + [422032] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13526), 1, + ACTIONS(13578), 1, anon_sym_end, - STATE(10294), 1, + STATE(10307), 1, sym_heredoc_body, STATE(11509), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421792] = 6, + [422052] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10213), 1, anon_sym_def, - ACTIONS(13528), 1, + ACTIONS(13580), 1, anon_sym_abstract, STATE(199), 1, sym__base_method_def, - STATE(10295), 1, + STATE(10308), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421812] = 6, + [422072] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13530), 1, + ACTIONS(13582), 1, anon_sym_end, - STATE(10296), 1, + STATE(10309), 1, sym_heredoc_body, STATE(11186), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421832] = 6, + [422092] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(8618), 1, @@ -678486,15 +678676,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9875), 1, aux_sym_annotation_argument_list_repeat1, - STATE(10297), 1, + STATE(10310), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421852] = 4, + [422112] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10298), 1, + STATE(10311), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -678503,328 +678693,328 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [421868] = 6, + [422128] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(9539), 1, anon_sym_RBRACE, - ACTIONS(13532), 1, + ACTIONS(13584), 1, anon_sym_COMMA, - STATE(10002), 1, + STATE(10009), 1, aux_sym_proc_type_repeat1, - STATE(10299), 1, + STATE(10312), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421888] = 6, + [422148] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4747), 1, anon_sym_COMMA, - ACTIONS(13534), 1, + ACTIONS(13586), 1, anon_sym_DASH_GT, STATE(9452), 1, aux_sym_proc_type_repeat1, - STATE(10300), 1, + STATE(10313), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421908] = 6, + [422168] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10418), 1, anon_sym_RBRACE, - ACTIONS(13536), 1, + ACTIONS(13588), 1, anon_sym_COMMA, STATE(9335), 1, aux_sym_named_tuple_type_repeat1, - STATE(10301), 1, + STATE(10314), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421928] = 6, + [422188] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13538), 1, + ACTIONS(13590), 1, anon_sym_end, - STATE(10302), 1, + STATE(10315), 1, sym_heredoc_body, STATE(10632), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421948] = 6, + [422208] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13540), 1, + ACTIONS(13592), 1, anon_sym_end, - STATE(10303), 1, + STATE(10316), 1, sym_heredoc_body, STATE(10525), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421968] = 6, + [422228] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13542), 1, + ACTIONS(13594), 1, anon_sym_end, - STATE(10304), 1, + STATE(10317), 1, sym_heredoc_body, STATE(11126), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421988] = 6, + [422248] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4747), 1, anon_sym_COMMA, - ACTIONS(13544), 1, + ACTIONS(13596), 1, anon_sym_DASH_GT, STATE(9452), 1, aux_sym_proc_type_repeat1, - STATE(10305), 1, + STATE(10318), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422008] = 6, + [422268] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4231), 1, anon_sym_RBRACK, - ACTIONS(13546), 1, + ACTIONS(13598), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(10306), 1, + STATE(10319), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422028] = 6, + [422288] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13548), 1, + ACTIONS(13600), 1, anon_sym_RBRACE, - ACTIONS(13550), 1, + ACTIONS(13602), 1, anon_sym_COMMA, - STATE(10307), 1, + STATE(10320), 1, sym_heredoc_body, - STATE(10315), 1, + STATE(10328), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422048] = 6, + [422308] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13552), 1, + ACTIONS(13604), 1, anon_sym_RBRACE, - ACTIONS(13554), 1, + ACTIONS(13606), 1, anon_sym_COMMA, - STATE(10308), 1, + STATE(10321), 1, sym_heredoc_body, - STATE(10317), 1, + STATE(10330), 1, aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422068] = 6, + [422328] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13556), 1, + ACTIONS(13608), 1, anon_sym_RPAREN, - ACTIONS(13558), 1, + ACTIONS(13610), 1, anon_sym_COMMA, - STATE(10211), 1, + STATE(10224), 1, aux_sym_param_list_repeat1, - STATE(10309), 1, + STATE(10322), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422088] = 6, + [422348] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4747), 1, anon_sym_COMMA, - ACTIONS(13560), 1, + ACTIONS(13612), 1, anon_sym_DASH_GT, STATE(9452), 1, aux_sym_proc_type_repeat1, - STATE(10310), 1, + STATE(10323), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422108] = 6, + [422368] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13562), 1, + ACTIONS(13614), 1, anon_sym_end, - STATE(10311), 1, + STATE(10324), 1, sym_heredoc_body, STATE(11149), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422128] = 6, + [422388] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4275), 1, anon_sym_RPAREN, - ACTIONS(13564), 1, + ACTIONS(13616), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(10312), 1, + STATE(10325), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422148] = 6, + [422408] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13566), 1, + ACTIONS(13618), 1, anon_sym_end, - STATE(10313), 1, + STATE(10326), 1, sym_heredoc_body, STATE(11161), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422168] = 6, + [422428] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13568), 1, + ACTIONS(13620), 1, anon_sym_end, - STATE(10314), 1, + STATE(10327), 1, sym_heredoc_body, STATE(10948), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422188] = 6, + [422448] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(9653), 1, anon_sym_RBRACE, - ACTIONS(13570), 1, + ACTIONS(13622), 1, anon_sym_COMMA, - STATE(10002), 1, + STATE(10009), 1, aux_sym_proc_type_repeat1, - STATE(10315), 1, + STATE(10328), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422208] = 6, + [422468] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3278), 1, anon_sym_RPAREN, - ACTIONS(13572), 1, + ACTIONS(13624), 1, anon_sym_COMMA, - STATE(10316), 1, + STATE(10329), 1, sym_heredoc_body, - STATE(10318), 1, + STATE(10331), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422228] = 6, + [422488] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10304), 1, anon_sym_RBRACE, - ACTIONS(13574), 1, + ACTIONS(13626), 1, anon_sym_COMMA, STATE(9335), 1, aux_sym_named_tuple_type_repeat1, - STATE(10317), 1, + STATE(10330), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422248] = 5, + [422508] = 5, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(8571), 1, anon_sym_RPAREN, - ACTIONS(13576), 1, + ACTIONS(13628), 1, anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10318), 2, + STATE(10331), 2, sym_heredoc_body, aux_sym_annotation_argument_list_repeat1, - [422266] = 6, + [422526] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3915), 1, anon_sym_RPAREN, - ACTIONS(13579), 1, + ACTIONS(13631), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(10319), 1, + STATE(10332), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422286] = 6, + [422546] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13581), 1, + ACTIONS(13633), 1, anon_sym_RBRACE, - ACTIONS(13583), 1, + ACTIONS(13635), 1, anon_sym_COMMA, - STATE(10084), 1, + STATE(10097), 1, aux_sym_named_tuple_repeat1, - STATE(10320), 1, + STATE(10333), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422306] = 6, + [422566] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13585), 1, + ACTIONS(13637), 1, anon_sym_end, - STATE(10321), 1, + STATE(10334), 1, sym_heredoc_body, STATE(11168), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422326] = 6, + [422586] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3398), 1, @@ -678833,110 +679023,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(9808), 1, aux_sym_implicit_object_tuple_repeat1, - STATE(10322), 1, + STATE(10335), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422346] = 6, + [422606] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13587), 1, + ACTIONS(13639), 1, anon_sym_RBRACE, - ACTIONS(13589), 1, + ACTIONS(13641), 1, anon_sym_COMMA, - STATE(10323), 1, + STATE(10336), 1, sym_heredoc_body, - STATE(10328), 1, + STATE(10341), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422366] = 6, + [422626] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13591), 1, + ACTIONS(13643), 1, anon_sym_RBRACE, - ACTIONS(13593), 1, + ACTIONS(13645), 1, anon_sym_COMMA, - STATE(10324), 1, + STATE(10337), 1, sym_heredoc_body, - STATE(10329), 1, + STATE(10342), 1, aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422386] = 6, + [422646] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4747), 1, anon_sym_COMMA, - ACTIONS(13595), 1, + ACTIONS(13647), 1, anon_sym_DASH_GT, STATE(9452), 1, aux_sym_proc_type_repeat1, - STATE(10325), 1, + STATE(10338), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422406] = 6, + [422666] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4033), 1, anon_sym_RPAREN, - ACTIONS(13597), 1, + ACTIONS(13649), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(10326), 1, + STATE(10339), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422426] = 6, + [422686] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13599), 1, + ACTIONS(13651), 1, anon_sym_end, - STATE(10327), 1, + STATE(10340), 1, sym_heredoc_body, STATE(11176), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422446] = 6, + [422706] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(9509), 1, anon_sym_RBRACE, - ACTIONS(13601), 1, + ACTIONS(13653), 1, anon_sym_COMMA, - STATE(10002), 1, + STATE(10009), 1, aux_sym_proc_type_repeat1, - STATE(10328), 1, + STATE(10341), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422466] = 6, + [422726] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10350), 1, anon_sym_RBRACE, - ACTIONS(13603), 1, + ACTIONS(13655), 1, anon_sym_COMMA, STATE(9335), 1, aux_sym_named_tuple_type_repeat1, - STATE(10329), 1, + STATE(10342), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422486] = 6, + [422746] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(13657), 1, + aux_sym_char_token1, + STATE(10343), 1, + sym_heredoc_body, + ACTIONS(13659), 2, + sym__char_comment, + sym_char_escape_sequence, + [422766] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(9303), 1, @@ -678945,227 +679149,227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, STATE(9189), 1, sym_constant, - STATE(10330), 1, + STATE(10344), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422506] = 6, + [422786] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(8038), 1, sym__constant_segment, ACTIONS(8040), 1, anon_sym_COLON_COLON, - STATE(10331), 1, + STATE(10345), 1, sym_heredoc_body, - STATE(10354), 1, + STATE(10368), 1, sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422526] = 6, + [422806] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13605), 1, + ACTIONS(13661), 1, anon_sym_end, - STATE(10332), 1, + STATE(10346), 1, sym_heredoc_body, STATE(11221), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422546] = 6, + [422826] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13607), 1, + ACTIONS(13663), 1, anon_sym_end, - STATE(10333), 1, + STATE(10347), 1, sym_heredoc_body, STATE(10591), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422566] = 6, + [422846] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3326), 1, anon_sym_RPAREN, - ACTIONS(13609), 1, + ACTIONS(13665), 1, anon_sym_COMMA, - STATE(10318), 1, + STATE(10331), 1, aux_sym_annotation_argument_list_repeat1, - STATE(10334), 1, + STATE(10348), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422586] = 6, + [422866] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10213), 1, anon_sym_def, - ACTIONS(13611), 1, + ACTIONS(13667), 1, anon_sym_abstract, STATE(188), 1, sym__base_method_def, - STATE(10335), 1, + STATE(10349), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422606] = 6, + [422886] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3899), 1, anon_sym_RPAREN, - ACTIONS(13613), 1, + ACTIONS(13669), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(10336), 1, + STATE(10350), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422626] = 6, + [422906] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(7377), 1, anon_sym_else, - ACTIONS(13615), 1, + ACTIONS(13671), 1, anon_sym_end, - STATE(10337), 1, + STATE(10351), 1, sym_heredoc_body, STATE(10997), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422646] = 6, + [422926] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3392), 1, anon_sym_RBRACK, - ACTIONS(13617), 1, + ACTIONS(13673), 1, anon_sym_COMMA, STATE(9763), 1, aux_sym_annotation_argument_list_repeat1, - STATE(10338), 1, + STATE(10352), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422666] = 6, + [422946] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(9503), 1, anon_sym_RBRACE, - ACTIONS(13619), 1, + ACTIONS(13675), 1, anon_sym_COMMA, - STATE(10002), 1, + STATE(10009), 1, aux_sym_proc_type_repeat1, - STATE(10339), 1, + STATE(10353), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422686] = 6, + [422966] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10358), 1, anon_sym_RBRACE, - ACTIONS(13621), 1, + ACTIONS(13677), 1, anon_sym_COMMA, STATE(9335), 1, aux_sym_named_tuple_type_repeat1, - STATE(10340), 1, + STATE(10354), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422706] = 6, + [422986] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13623), 1, + ACTIONS(13679), 1, anon_sym_end, - STATE(10341), 1, + STATE(10355), 1, sym_heredoc_body, STATE(11205), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422726] = 6, + [423006] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13625), 1, + ACTIONS(13681), 1, anon_sym_end, - STATE(10342), 1, + STATE(10356), 1, sym_heredoc_body, STATE(11362), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422746] = 6, + [423026] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13627), 1, + ACTIONS(13683), 1, anon_sym_end, - STATE(10343), 1, + STATE(10357), 1, sym_heredoc_body, STATE(11546), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422766] = 6, + [423046] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4279), 1, anon_sym_RBRACE, - ACTIONS(13629), 1, + ACTIONS(13685), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(10344), 1, + STATE(10358), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422786] = 6, + [423066] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3761), 1, anon_sym_RBRACE, - ACTIONS(13631), 1, + ACTIONS(13687), 1, anon_sym_COMMA, - STATE(9933), 1, + STATE(9934), 1, aux_sym_hash_repeat1, - STATE(10345), 1, + STATE(10359), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422806] = 5, + [423086] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(276), 1, sym__terminator, - STATE(10346), 1, + STATE(10360), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -679173,80 +679377,80 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1409), 2, sym__line_break, anon_sym_SEMI, - [422824] = 6, + [423104] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10457), 1, anon_sym_RBRACE, - ACTIONS(13633), 1, + ACTIONS(13689), 1, anon_sym_COMMA, - STATE(10062), 1, + STATE(10075), 1, aux_sym_named_tuple_repeat1, - STATE(10347), 1, + STATE(10361), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422844] = 6, + [423124] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13635), 1, + ACTIONS(13691), 1, anon_sym_RBRACE, - ACTIONS(13637), 1, + ACTIONS(13693), 1, anon_sym_COMMA, - STATE(10047), 1, + STATE(10059), 1, aux_sym_hash_repeat1, - STATE(10348), 1, + STATE(10362), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422864] = 6, + [423144] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13639), 1, + ACTIONS(13695), 1, anon_sym_RBRACE, - ACTIONS(13641), 1, + ACTIONS(13697), 1, anon_sym_COMMA, - STATE(10126), 1, + STATE(10139), 1, aux_sym_named_tuple_repeat1, - STATE(10349), 1, + STATE(10363), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422884] = 6, + [423164] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3889), 1, anon_sym_RBRACK, - ACTIONS(13643), 1, + ACTIONS(13699), 1, anon_sym_COMMA, STATE(9279), 1, aux_sym_array_repeat1, - STATE(10350), 1, + STATE(10364), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422904] = 6, + [423184] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13645), 1, + ACTIONS(13701), 1, anon_sym_RBRACE, - ACTIONS(13647), 1, + ACTIONS(13703), 1, anon_sym_COMMA, STATE(9754), 1, aux_sym_hash_repeat1, - STATE(10351), 1, + STATE(10365), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422924] = 4, + [423204] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10352), 1, + STATE(10366), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -679255,630 +679459,464 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [422940] = 6, + [423220] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13649), 1, + ACTIONS(13705), 1, anon_sym_end, - STATE(10353), 1, + STATE(10367), 1, sym_heredoc_body, STATE(11472), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422960] = 6, + [423240] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12312), 1, anon_sym_LPAREN, - ACTIONS(13651), 1, + ACTIONS(13707), 1, anon_sym_RBRACK, - STATE(10354), 1, + STATE(10368), 1, sym_heredoc_body, STATE(11534), 1, sym_annotation_argument_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422980] = 6, + [423260] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13653), 1, + ACTIONS(13709), 1, anon_sym_end, - STATE(10355), 1, + STATE(10369), 1, sym_heredoc_body, STATE(11212), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423000] = 6, + [423280] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(8737), 1, anon_sym_RPAREN, ACTIONS(8739), 1, anon_sym_COMMA, - STATE(10334), 1, + STATE(10348), 1, aux_sym_annotation_argument_list_repeat1, - STATE(10356), 1, + STATE(10370), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423020] = 6, + [423300] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(8038), 1, sym__constant_segment, ACTIONS(8040), 1, anon_sym_COLON_COLON, - STATE(10093), 1, + STATE(10106), 1, sym_constant, - STATE(10357), 1, + STATE(10371), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423040] = 6, + [423320] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13655), 1, + ACTIONS(13711), 1, anon_sym_RBRACE, - ACTIONS(13657), 1, + ACTIONS(13713), 1, anon_sym_COMMA, - STATE(9942), 1, + STATE(9944), 1, aux_sym_hash_repeat1, - STATE(10358), 1, + STATE(10372), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423060] = 6, + [423340] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13659), 1, + ACTIONS(13715), 1, anon_sym_RBRACE, - ACTIONS(13661), 1, + ACTIONS(13717), 1, anon_sym_COMMA, STATE(9767), 1, aux_sym_named_tuple_repeat1, - STATE(10359), 1, + STATE(10373), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423080] = 6, + [423360] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1421), 1, sym__regular_ensure_keyword, - ACTIONS(13663), 1, + ACTIONS(13719), 1, anon_sym_end, - STATE(10360), 1, + STATE(10374), 1, sym_heredoc_body, STATE(11154), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423100] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(10361), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(13665), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [423115] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(10362), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(13667), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [423130] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(13669), 1, - anon_sym_RPAREN, - ACTIONS(13671), 1, - anon_sym_COMMA, - STATE(10363), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [423147] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(10364), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(12953), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [423162] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(10365), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(13673), 2, - sym__regular_ensure_keyword, - anon_sym_end, - [423177] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(13675), 1, - anon_sym_RBRACK, - ACTIONS(13677), 1, - anon_sym_RBRACK_QMARK, - STATE(10366), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [423194] = 4, + [423380] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10367), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8571), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [423209] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(13679), 1, - anon_sym_RPAREN, - ACTIONS(13681), 1, - anon_sym_COMMA, - STATE(10368), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [423226] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(13683), 1, - anon_sym_RPAREN, - ACTIONS(13685), 1, - anon_sym_COMMA, - STATE(10369), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [423243] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(13687), 1, - anon_sym_RPAREN, - ACTIONS(13689), 1, - anon_sym_COMMA, - STATE(10370), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [423260] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(13691), 1, - anon_sym_RPAREN, - ACTIONS(13693), 1, - anon_sym_COMMA, - STATE(10371), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [423277] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(10372), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4745), 2, - sym__line_break, - anon_sym_SEMI, - [423292] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(13695), 1, - anon_sym_RPAREN, - ACTIONS(13697), 1, - aux_sym_proc_token1, - STATE(10373), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [423309] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(13699), 1, - anon_sym_RPAREN, - ACTIONS(13701), 1, - anon_sym_COMMA, - STATE(10374), 1, + STATE(10375), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423326] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(13703), 1, + ACTIONS(12903), 2, anon_sym_RPAREN, - ACTIONS(13705), 1, anon_sym_COMMA, - STATE(10375), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [423343] = 5, + [423395] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13707), 1, + ACTIONS(13721), 1, anon_sym_RPAREN, - ACTIONS(13709), 1, + ACTIONS(13723), 1, anon_sym_COMMA, STATE(10376), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423360] = 5, + [423412] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13711), 1, + ACTIONS(13725), 1, anon_sym_RPAREN, - ACTIONS(13713), 1, + ACTIONS(13727), 1, anon_sym_COMMA, STATE(10377), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423377] = 5, + [423429] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11883), 1, - anon_sym_def, - STATE(8811), 1, - sym__base_method_def, + ACTIONS(13729), 1, + anon_sym_RPAREN, + ACTIONS(13731), 1, + anon_sym_COMMA, STATE(10378), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423394] = 5, + [423446] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13715), 1, + ACTIONS(13733), 1, anon_sym_RPAREN, - ACTIONS(13717), 1, + ACTIONS(13735), 1, anon_sym_COMMA, STATE(10379), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423411] = 5, + [423463] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13719), 1, + ACTIONS(13737), 1, anon_sym_RPAREN, - ACTIONS(13721), 1, + ACTIONS(13739), 1, anon_sym_COMMA, STATE(10380), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423428] = 5, + [423480] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13723), 1, + ACTIONS(13741), 1, anon_sym_RPAREN, - ACTIONS(13725), 1, + ACTIONS(13743), 1, anon_sym_COMMA, STATE(10381), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423445] = 5, + [423497] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13727), 1, + ACTIONS(13745), 1, anon_sym_RPAREN, - ACTIONS(13729), 1, + ACTIONS(13747), 1, anon_sym_COMMA, STATE(10382), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423462] = 5, + [423514] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13731), 1, + ACTIONS(13749), 1, anon_sym_RPAREN, - ACTIONS(13733), 1, + ACTIONS(13751), 1, anon_sym_COMMA, STATE(10383), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423479] = 5, + [423531] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13735), 1, + ACTIONS(13753), 1, anon_sym_RPAREN, - ACTIONS(13737), 1, + ACTIONS(13755), 1, anon_sym_COMMA, STATE(10384), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423496] = 5, + [423548] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13739), 1, + ACTIONS(13757), 1, anon_sym_RPAREN, - ACTIONS(13741), 1, + ACTIONS(13759), 1, anon_sym_COMMA, STATE(10385), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423513] = 5, + [423565] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13743), 1, + ACTIONS(13761), 1, anon_sym_RPAREN, - ACTIONS(13745), 1, + ACTIONS(13763), 1, anon_sym_COMMA, STATE(10386), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423530] = 5, + [423582] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13747), 1, + ACTIONS(13765), 1, anon_sym_RPAREN, - ACTIONS(13749), 1, + ACTIONS(13767), 1, anon_sym_COMMA, STATE(10387), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423547] = 5, + [423599] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13751), 1, + ACTIONS(13769), 1, anon_sym_RPAREN, - ACTIONS(13753), 1, + ACTIONS(13771), 1, anon_sym_COMMA, STATE(10388), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423564] = 5, + [423616] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13755), 1, + ACTIONS(13773), 1, anon_sym_RPAREN, - ACTIONS(13757), 1, + ACTIONS(13775), 1, anon_sym_COMMA, STATE(10389), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423581] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [423633] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13759), 1, - aux_sym_char_token1, - ACTIONS(13761), 1, - sym_char_escape_sequence, STATE(10390), 1, sym_heredoc_body, - [423600] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(13763), 1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(12467), 2, anon_sym_RPAREN, - ACTIONS(13765), 1, anon_sym_COMMA, + [423648] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(13777), 1, + anon_sym_RBRACK, + ACTIONS(13779), 1, + anon_sym_RBRACK_QMARK, STATE(10391), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423617] = 5, + [423665] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13739), 1, - anon_sym_RPAREN, - ACTIONS(13767), 1, - anon_sym_COMMA, + ACTIONS(12016), 1, + anon_sym_def, + STATE(8226), 1, + sym__base_method_def, STATE(10392), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423634] = 5, + [423682] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13769), 1, - anon_sym_RPAREN, - ACTIONS(13771), 1, - anon_sym_COMMA, STATE(10393), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423651] = 5, + ACTIONS(8935), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [423697] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13773), 1, + ACTIONS(13781), 1, anon_sym_RBRACK, - ACTIONS(13775), 1, + ACTIONS(13783), 1, anon_sym_RBRACK_QMARK, STATE(10394), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423668] = 5, + [423714] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, - sym_identifier, - STATE(9709), 1, - sym_block_body_param, + ACTIONS(259), 1, + anon_sym_COMMA, + ACTIONS(13785), 1, + anon_sym_EQ, STATE(10395), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423685] = 5, + [423731] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13777), 1, - anon_sym_RBRACK, - ACTIONS(13779), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(259), 1, + anon_sym_COMMA, + ACTIONS(13787), 1, + anon_sym_EQ, STATE(10396), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423702] = 5, + [423748] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13687), 1, + ACTIONS(13789), 1, anon_sym_RPAREN, - ACTIONS(13781), 1, + ACTIONS(13791), 1, anon_sym_COMMA, STATE(10397), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423719] = 5, + [423765] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13711), 1, - anon_sym_RPAREN, - ACTIONS(13783), 1, - anon_sym_COMMA, + ACTIONS(13793), 1, + anon_sym_RBRACK, + ACTIONS(13795), 1, + anon_sym_RBRACK_QMARK, STATE(10398), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423736] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [423782] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13785), 1, - aux_sym_char_token1, - ACTIONS(13787), 1, - sym_char_escape_sequence, + ACTIONS(13797), 1, + anon_sym_RBRACK, + ACTIONS(13799), 1, + anon_sym_RBRACK_QMARK, STATE(10399), 1, sym_heredoc_body, - [423755] = 5, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [423799] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13789), 1, - anon_sym_RPAREN, - ACTIONS(13791), 1, - anon_sym_COMMA, + ACTIONS(11917), 1, + anon_sym_def, + STATE(8060), 1, + sym__base_method_def, STATE(10400), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423772] = 4, + [423816] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13801), 1, + anon_sym_RBRACK, + ACTIONS(13803), 1, + anon_sym_RBRACK_QMARK, STATE(10401), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13793), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [423787] = 5, + [423833] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13795), 1, - sym__string_literal_start, - STATE(8038), 1, - sym_string, + ACTIONS(13805), 1, + anon_sym_RBRACK, + ACTIONS(13807), 1, + anon_sym_RBRACK_QMARK, STATE(10402), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423804] = 5, + [423850] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13723), 1, + ACTIONS(13809), 1, anon_sym_RPAREN, - ACTIONS(13797), 1, + ACTIONS(13811), 1, anon_sym_COMMA, STATE(10403), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423821] = 4, + [423867] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10404), 1, @@ -679886,22 +679924,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12467), 2, + ACTIONS(5848), 2, anon_sym_RPAREN, - anon_sym_COMMA, - [423836] = 5, + anon_sym_RBRACK, + [423882] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13799), 1, - anon_sym_RBRACK, - ACTIONS(13801), 1, - anon_sym_RBRACK_QMARK, STATE(10405), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423853] = 4, + ACTIONS(8571), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [423897] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10406), 1, @@ -679909,58 +679946,55 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12778), 2, - anon_sym_RBRACE, + ACTIONS(13813), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [423868] = 5, + [423912] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13803), 1, - anon_sym_RBRACK, - ACTIONS(13805), 1, - anon_sym_RBRACK_QMARK, STATE(10407), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423885] = 4, + ACTIONS(13815), 2, + sym__regular_ensure_keyword, + anon_sym_end, + [423927] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13817), 1, + anon_sym_RPAREN, + ACTIONS(13819), 1, + anon_sym_COMMA, STATE(10408), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12879), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [423900] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [423944] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13807), 1, - aux_sym_char_token1, - ACTIONS(13809), 1, - sym_char_escape_sequence, STATE(10409), 1, sym_heredoc_body, - [423919] = 5, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(13085), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [423959] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13338), 1, - anon_sym_RPAREN, - ACTIONS(13811), 1, - anon_sym_COMMA, STATE(10410), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423936] = 4, + ACTIONS(4745), 2, + sym__start_of_brace_block, + anon_sym_do, + [423974] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10411), 1, @@ -679968,10 +680002,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13813), 2, + ACTIONS(13821), 2, anon_sym_RPAREN, anon_sym_COMMA, - [423951] = 4, + [423989] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10412), 1, @@ -679979,10 +680013,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13815), 2, - sym__percent_literal_end, - sym__delimited_array_element_start, - [423966] = 4, + ACTIONS(4745), 2, + sym__line_break, + anon_sym_SEMI, + [424004] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10413), 1, @@ -679990,24 +680024,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13817), 2, + ACTIONS(13823), 2, anon_sym_RPAREN, anon_sym_COMMA, - [423981] = 4, + [424019] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13749), 1, + anon_sym_RPAREN, + ACTIONS(13825), 1, + anon_sym_COMMA, STATE(10414), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13026), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [423996] = 5, + [424036] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13819), 1, + ACTIONS(13827), 1, sym__string_literal_start, STATE(8171), 1, sym_string, @@ -680016,55 +680051,55 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424013] = 5, + [424053] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13821), 1, - anon_sym_RBRACK, - ACTIONS(13823), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(11883), 1, + anon_sym_def, + STATE(8811), 1, + sym__base_method_def, STATE(10416), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424030] = 5, + [424070] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13825), 1, - anon_sym_RBRACK, - ACTIONS(13827), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(13829), 1, + anon_sym_RPAREN, + ACTIONS(13831), 1, + anon_sym_COMMA, STATE(10417), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424047] = 5, + [424087] = 5, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(259), 1, anon_sym_COMMA, - ACTIONS(13829), 1, + ACTIONS(13833), 1, anon_sym_EQ, STATE(10418), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424064] = 5, + [424104] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13747), 1, + ACTIONS(13765), 1, anon_sym_RPAREN, - ACTIONS(13831), 1, + ACTIONS(13835), 1, anon_sym_COMMA, STATE(10419), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424081] = 4, + [424121] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10420), 1, @@ -680072,22 +680107,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13833), 2, - anon_sym_end, - anon_sym_in, - [424096] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(13719), 1, + ACTIONS(13837), 2, anon_sym_RPAREN, - ACTIONS(13835), 1, anon_sym_COMMA, + [424136] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, STATE(10421), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424113] = 4, + ACTIONS(13839), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [424151] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10422), 1, @@ -680095,153 +680129,152 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5848), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [424128] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + ACTIONS(13841), 2, + anon_sym_end, + anon_sym_in, + [424166] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13837), 1, - aux_sym_char_token1, - ACTIONS(13839), 1, - sym_char_escape_sequence, + ACTIONS(13843), 1, + anon_sym_RBRACK, + ACTIONS(13845), 1, + anon_sym_RBRACK_QMARK, STATE(10423), 1, sym_heredoc_body, - [424147] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + ACTIONS(5), 2, sym__line_continuation, + sym_comment, + [424183] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13841), 1, - aux_sym_char_token1, - ACTIONS(13843), 1, - sym_char_escape_sequence, + ACTIONS(10996), 1, + sym_identifier, + STATE(10375), 1, + sym_block_body_param, STATE(10424), 1, sym_heredoc_body, - [424166] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [424200] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13847), 1, + anon_sym_RBRACK, + ACTIONS(13849), 1, + anon_sym_RBRACK_QMARK, STATE(10425), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13845), 2, - anon_sym_end, - anon_sym_in, - [424181] = 5, + [424217] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13669), 1, - anon_sym_RPAREN, - ACTIONS(13847), 1, - anon_sym_COMMA, + ACTIONS(13851), 1, + anon_sym_RBRACK, + ACTIONS(13853), 1, + anon_sym_RBRACK_QMARK, STATE(10426), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424198] = 4, + [424234] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(10996), 1, + sym_identifier, + STATE(9709), 1, + sym_block_body_param, STATE(10427), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13849), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [424213] = 5, + [424251] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13851), 1, - anon_sym_RBRACK, - ACTIONS(13853), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(13725), 1, + anon_sym_RPAREN, + ACTIONS(13855), 1, + anon_sym_COMMA, STATE(10428), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424230] = 4, + [424268] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13857), 1, + anon_sym_RPAREN, + ACTIONS(13859), 1, + anon_sym_COMMA, STATE(10429), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13845), 2, - anon_sym_end, - anon_sym_in, - [424245] = 5, + [424285] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13855), 1, + ACTIONS(13861), 1, anon_sym_RPAREN, - ACTIONS(13857), 1, + ACTIONS(13863), 1, anon_sym_COMMA, STATE(10430), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424262] = 5, + [424302] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13859), 1, - anon_sym_RBRACK, - ACTIONS(13861), 1, - anon_sym_RBRACK_QMARK, STATE(10431), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424279] = 5, + ACTIONS(13865), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [424317] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13863), 1, - anon_sym_RBRACK, - ACTIONS(13865), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(13721), 1, + anon_sym_RPAREN, + ACTIONS(13867), 1, + anon_sym_COMMA, STATE(10432), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424296] = 5, + [424334] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13867), 1, - anon_sym_RBRACK, - ACTIONS(13869), 1, - anon_sym_RBRACK_QMARK, STATE(10433), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424313] = 5, + ACTIONS(13869), 2, + sym__percent_literal_end, + sym__delimited_array_element_start, + [424349] = 5, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(13871), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(13873), 1, - anon_sym_RBRACK_QMARK, + aux_sym_proc_token1, STATE(10434), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424330] = 4, + [424366] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10435), 1, @@ -680249,10 +680282,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13875), 2, - anon_sym_RPAREN, + ACTIONS(12782), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [424345] = 4, + [424381] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10436), 1, @@ -680260,82 +680293,81 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13877), 2, + ACTIONS(12985), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_PIPE, - [424360] = 5, + [424396] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13879), 1, - anon_sym_RBRACK, - ACTIONS(13881), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(13875), 1, + anon_sym_RPAREN, + ACTIONS(13877), 1, + anon_sym_COMMA, STATE(10437), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424377] = 5, + [424413] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13883), 1, - anon_sym_RBRACK, - ACTIONS(13885), 1, - anon_sym_RBRACK_QMARK, STATE(10438), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424394] = 5, + ACTIONS(5885), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [424428] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13887), 1, + ACTIONS(13879), 1, anon_sym_RBRACK, - ACTIONS(13889), 1, + ACTIONS(13881), 1, anon_sym_RBRACK_QMARK, STATE(10439), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424411] = 5, + [424445] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11917), 1, - anon_sym_def, - STATE(8060), 1, - sym__base_method_def, + ACTIONS(13883), 1, + anon_sym_RBRACK, + ACTIONS(13885), 1, + anon_sym_RBRACK_QMARK, STATE(10440), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424428] = 5, + [424462] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13891), 1, - anon_sym_RPAREN, - ACTIONS(13893), 1, - anon_sym_COMMA, + ACTIONS(13887), 1, + anon_sym_RBRACK, + ACTIONS(13889), 1, + anon_sym_RBRACK_QMARK, STATE(10441), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424445] = 5, + [424479] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13895), 1, + ACTIONS(13891), 1, anon_sym_RBRACK, - ACTIONS(13897), 1, + ACTIONS(13893), 1, anon_sym_RBRACK_QMARK, STATE(10442), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424462] = 4, + [424496] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10443), 1, @@ -680343,405 +680375,399 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13899), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [424477] = 4, + ACTIONS(13895), 2, + anon_sym_end, + anon_sym_in, + [424511] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13753), 1, + anon_sym_RPAREN, + ACTIONS(13897), 1, + anon_sym_COMMA, STATE(10444), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4745), 2, - sym__start_of_brace_block, - anon_sym_do, - [424492] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [424528] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13901), 1, - aux_sym_char_token1, - ACTIONS(13903), 1, - sym_char_escape_sequence, STATE(10445), 1, sym_heredoc_body, - [424511] = 5, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(13841), 2, + anon_sym_end, + anon_sym_in, + [424543] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13707), 1, + ACTIONS(13899), 1, anon_sym_RPAREN, - ACTIONS(13905), 1, + ACTIONS(13901), 1, anon_sym_COMMA, STATE(10446), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424528] = 5, + [424560] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13751), 1, + ACTIONS(13903), 1, anon_sym_RPAREN, - ACTIONS(13907), 1, + ACTIONS(13905), 1, anon_sym_COMMA, STATE(10447), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424545] = 5, + [424577] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13731), 1, + ACTIONS(13737), 1, anon_sym_RPAREN, - ACTIONS(13909), 1, + ACTIONS(13907), 1, anon_sym_COMMA, STATE(10448), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424562] = 5, + [424594] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13911), 1, + ACTIONS(13745), 1, anon_sym_RPAREN, - ACTIONS(13913), 1, - aux_sym_proc_token1, + ACTIONS(13909), 1, + anon_sym_COMMA, STATE(10449), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424579] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [424611] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13915), 1, - aux_sym_char_token1, - ACTIONS(13917), 1, - sym_char_escape_sequence, STATE(10450), 1, sym_heredoc_body, - [424598] = 5, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(13911), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [424626] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13683), 1, - anon_sym_RPAREN, - ACTIONS(13919), 1, - anon_sym_COMMA, STATE(10451), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424615] = 5, + ACTIONS(13841), 2, + anon_sym_end, + anon_sym_in, + [424641] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13763), 1, + ACTIONS(13899), 1, anon_sym_RPAREN, - ACTIONS(13921), 1, + ACTIONS(13913), 1, anon_sym_COMMA, STATE(10452), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424632] = 4, + [424658] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13915), 1, + anon_sym_RBRACK, + ACTIONS(13917), 1, + anon_sym_RBRACK_QMARK, STATE(10453), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5885), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [424647] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [424675] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13923), 1, - aux_sym_char_token1, - ACTIONS(13925), 1, - sym_char_escape_sequence, + ACTIONS(13919), 1, + anon_sym_RBRACK, + ACTIONS(13921), 1, + anon_sym_RBRACK_QMARK, STATE(10454), 1, sym_heredoc_body, - [424666] = 5, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [424692] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13927), 1, + ACTIONS(13923), 1, anon_sym_RBRACK, - ACTIONS(13929), 1, + ACTIONS(13925), 1, anon_sym_RBRACK_QMARK, STATE(10455), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424683] = 4, + [424709] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13927), 1, + anon_sym_RBRACK, + ACTIONS(13929), 1, + anon_sym_RBRACK_QMARK, STATE(10456), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13931), 2, - sym__percent_literal_end, - sym__delimited_array_element_start, - [424698] = 5, + [424726] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13933), 1, + ACTIONS(13931), 1, anon_sym_RBRACK, - ACTIONS(13935), 1, + ACTIONS(13933), 1, anon_sym_RBRACK_QMARK, STATE(10457), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424715] = 5, + [424743] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13937), 1, + ACTIONS(13935), 1, anon_sym_RBRACK, - ACTIONS(13939), 1, + ACTIONS(13937), 1, anon_sym_RBRACK_QMARK, STATE(10458), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424732] = 4, + [424760] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13741), 1, + anon_sym_RPAREN, + ACTIONS(13939), 1, + anon_sym_COMMA, STATE(10459), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13941), 2, - sym__percent_literal_end, - sym__delimited_array_element_start, - [424747] = 5, + [424777] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(259), 1, - anon_sym_COMMA, + ACTIONS(13941), 1, + anon_sym_RBRACK, ACTIONS(13943), 1, - anon_sym_EQ, + anon_sym_RBRACK_QMARK, STATE(10460), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424764] = 5, + [424794] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12016), 1, - anon_sym_def, - STATE(8226), 1, - sym__base_method_def, STATE(10461), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424781] = 5, + ACTIONS(13945), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [424809] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13945), 1, - anon_sym_RBRACK, ACTIONS(13947), 1, + anon_sym_RBRACK, + ACTIONS(13949), 1, anon_sym_RBRACK_QMARK, STATE(10462), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424798] = 4, + [424826] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13951), 1, + anon_sym_RPAREN, + ACTIONS(13953), 1, + anon_sym_COMMA, STATE(10463), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13949), 2, - sym__percent_literal_end, - sym__delimited_array_element_start, - [424813] = 4, + [424843] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13955), 1, + anon_sym_RPAREN, + ACTIONS(13957), 1, + aux_sym_proc_token1, STATE(10464), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13033), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [424828] = 5, + [424860] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13755), 1, + ACTIONS(13773), 1, anon_sym_RPAREN, - ACTIONS(13951), 1, + ACTIONS(13959), 1, anon_sym_COMMA, STATE(10465), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424845] = 4, + [424877] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13961), 1, + anon_sym_RBRACK, + ACTIONS(13963), 1, + anon_sym_RBRACK_QMARK, STATE(10466), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13953), 2, - anon_sym_end, - anon_sym_in, - [424860] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [424894] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13955), 1, - aux_sym_char_token1, - ACTIONS(13957), 1, - sym_char_escape_sequence, + ACTIONS(13761), 1, + anon_sym_RPAREN, + ACTIONS(13965), 1, + anon_sym_COMMA, STATE(10467), 1, sym_heredoc_body, - [424879] = 5, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [424911] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13959), 1, + ACTIONS(13967), 1, anon_sym_RBRACK, - ACTIONS(13961), 1, + ACTIONS(13969), 1, anon_sym_RBRACK_QMARK, STATE(10468), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424896] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [424928] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13963), 1, - aux_sym_char_token1, - ACTIONS(13965), 1, - sym_char_escape_sequence, + ACTIONS(13971), 1, + anon_sym_RBRACK, + ACTIONS(13973), 1, + anon_sym_RBRACK_QMARK, STATE(10469), 1, sym_heredoc_body, - [424915] = 5, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [424945] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13967), 1, - anon_sym_RBRACK, - ACTIONS(13969), 1, - anon_sym_RBRACK_QMARK, STATE(10470), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424932] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + ACTIONS(13078), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [424960] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13971), 1, - aux_sym_char_token1, - ACTIONS(13973), 1, - sym_char_escape_sequence, STATE(10471), 1, sym_heredoc_body, - [424951] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(13715), 1, - anon_sym_RPAREN, - ACTIONS(13975), 1, - anon_sym_COMMA, - STATE(10472), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424968] = 5, + ACTIONS(13975), 2, + sym__percent_literal_end, + sym__delimited_array_element_start, + [424975] = 5, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(13977), 1, anon_sym_RBRACK, ACTIONS(13979), 1, anon_sym_RBRACK_QMARK, - STATE(10473), 1, + STATE(10472), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424985] = 5, + [424992] = 5, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(13981), 1, anon_sym_RBRACK, ACTIONS(13983), 1, anon_sym_RBRACK_QMARK, + STATE(10473), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [425009] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, STATE(10474), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425002] = 5, + ACTIONS(13985), 2, + sym__percent_literal_end, + sym__delimited_array_element_start, + [425024] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, - sym_identifier, - STATE(10408), 1, - sym_block_body_param, + ACTIONS(13857), 1, + anon_sym_RPAREN, + ACTIONS(13987), 1, + anon_sym_COMMA, STATE(10475), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425019] = 5, + [425041] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13735), 1, - anon_sym_RPAREN, - ACTIONS(13985), 1, + ACTIONS(259), 1, anon_sym_COMMA, + ACTIONS(13989), 1, + anon_sym_EQ, STATE(10476), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425036] = 4, + [425058] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10477), 1, @@ -680749,13 +680775,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13845), 2, - anon_sym_end, - anon_sym_in, - [425051] = 5, + ACTIONS(13991), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [425073] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13987), 1, + ACTIONS(13993), 1, sym__string_literal_start, STATE(8664), 1, sym_string, @@ -680764,234 +680790,232 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425068] = 4, + [425090] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13903), 1, + anon_sym_RPAREN, + ACTIONS(13995), 1, + anon_sym_COMMA, STATE(10479), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13989), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [425083] = 4, + [425107] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13997), 1, + sym__string_literal_start, + STATE(8038), 1, + sym_string, STATE(10480), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12770), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [425098] = 5, + [425124] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(259), 1, - anon_sym_COMMA, - ACTIONS(13991), 1, - anon_sym_EQ, STATE(10481), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425115] = 5, + ACTIONS(13999), 2, + sym__percent_literal_end, + sym__delimited_array_element_start, + [425139] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13743), 1, - anon_sym_RPAREN, - ACTIONS(13993), 1, - anon_sym_COMMA, STATE(10482), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425132] = 5, + ACTIONS(14001), 2, + anon_sym_end, + anon_sym_in, + [425154] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13995), 1, + ACTIONS(14003), 1, anon_sym_RBRACK, - ACTIONS(13997), 1, + ACTIONS(14005), 1, anon_sym_RBRACK_QMARK, STATE(10483), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425149] = 5, + [425171] = 5, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(259), 1, anon_sym_COMMA, - ACTIONS(13999), 1, + ACTIONS(14007), 1, anon_sym_EQ, STATE(10484), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425166] = 4, + [425188] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13809), 1, + anon_sym_RPAREN, + ACTIONS(14009), 1, + anon_sym_COMMA, STATE(10485), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8935), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [425181] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [425205] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14001), 1, - aux_sym_char_token1, - ACTIONS(14003), 1, - sym_char_escape_sequence, + ACTIONS(14011), 1, + anon_sym_RPAREN, + ACTIONS(14013), 1, + anon_sym_COMMA, STATE(10486), 1, sym_heredoc_body, - [425200] = 5, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [425222] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14005), 1, + ACTIONS(14015), 1, anon_sym_RBRACK, - ACTIONS(14007), 1, + ACTIONS(14017), 1, anon_sym_RBRACK_QMARK, STATE(10487), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425217] = 5, + [425239] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13699), 1, - anon_sym_RPAREN, - ACTIONS(14009), 1, - anon_sym_COMMA, + ACTIONS(14019), 1, + anon_sym_RBRACK, + ACTIONS(14021), 1, + anon_sym_RBRACK_QMARK, STATE(10488), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425234] = 5, + [425256] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14011), 1, + ACTIONS(14023), 1, anon_sym_RBRACK, - ACTIONS(14013), 1, + ACTIONS(14025), 1, anon_sym_RBRACK_QMARK, STATE(10489), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425251] = 5, + [425273] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(259), 1, + ACTIONS(14011), 1, + anon_sym_RPAREN, + ACTIONS(14027), 1, anon_sym_COMMA, - ACTIONS(14015), 1, - anon_sym_EQ, STATE(10490), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425268] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [425290] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14017), 1, - aux_sym_char_token1, - ACTIONS(14019), 1, - sym_char_escape_sequence, + ACTIONS(13757), 1, + anon_sym_RPAREN, + ACTIONS(14029), 1, + anon_sym_COMMA, STATE(10491), 1, sym_heredoc_body, - [425287] = 5, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [425307] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(259), 1, + ACTIONS(13390), 1, + anon_sym_RPAREN, + ACTIONS(14031), 1, anon_sym_COMMA, - ACTIONS(14021), 1, - anon_sym_EQ, STATE(10492), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425304] = 5, + [425324] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13789), 1, - anon_sym_RPAREN, - ACTIONS(14023), 1, - anon_sym_COMMA, + ACTIONS(14033), 1, + anon_sym_RBRACK, + ACTIONS(14035), 1, + anon_sym_RBRACK_QMARK, STATE(10493), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425321] = 5, + [425341] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14025), 1, + ACTIONS(14037), 1, anon_sym_RBRACK, - ACTIONS(14027), 1, + ACTIONS(14039), 1, anon_sym_RBRACK_QMARK, STATE(10494), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425338] = 5, + [425358] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13679), 1, + ACTIONS(13817), 1, anon_sym_RPAREN, - ACTIONS(14029), 1, + ACTIONS(14041), 1, anon_sym_COMMA, STATE(10495), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425355] = 5, + [425375] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13703), 1, + ACTIONS(13733), 1, anon_sym_RPAREN, - ACTIONS(14031), 1, + ACTIONS(14043), 1, anon_sym_COMMA, STATE(10496), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425372] = 5, + [425392] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14033), 1, - anon_sym_RBRACK, - ACTIONS(14035), 1, - anon_sym_RBRACK_QMARK, STATE(10497), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425389] = 4, + ACTIONS(13841), 2, + anon_sym_end, + anon_sym_in, + [425407] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10498), 1, @@ -680999,10 +681023,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14037), 2, - anon_sym_RPAREN, + ACTIONS(14045), 2, anon_sym_COMMA, - [425404] = 4, + anon_sym_PIPE, + [425422] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10499), 1, @@ -681010,86 +681034,84 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13845), 2, - anon_sym_end, - anon_sym_in, - [425419] = 5, + ACTIONS(14047), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [425437] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14039), 1, - anon_sym_RBRACK, - ACTIONS(14041), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(13789), 1, + anon_sym_RPAREN, + ACTIONS(14049), 1, + anon_sym_COMMA, STATE(10500), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425436] = 5, + [425454] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13891), 1, + ACTIONS(13951), 1, anon_sym_RPAREN, - ACTIONS(14043), 1, + ACTIONS(14051), 1, anon_sym_COMMA, STATE(10501), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425453] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [425471] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14045), 1, - aux_sym_char_token1, - ACTIONS(14047), 1, - sym_char_escape_sequence, + ACTIONS(13875), 1, + anon_sym_RPAREN, + ACTIONS(14053), 1, + anon_sym_COMMA, STATE(10502), 1, sym_heredoc_body, - [425472] = 5, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [425488] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14049), 1, - anon_sym_RBRACK, - ACTIONS(14051), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(13729), 1, + anon_sym_RPAREN, + ACTIONS(14055), 1, + anon_sym_COMMA, STATE(10503), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425489] = 5, + [425505] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13727), 1, - anon_sym_RPAREN, - ACTIONS(14053), 1, - anon_sym_COMMA, STATE(10504), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425506] = 5, + ACTIONS(12774), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [425520] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14055), 1, - anon_sym_RBRACK, + ACTIONS(259), 1, + anon_sym_COMMA, ACTIONS(14057), 1, - anon_sym_RBRACK_QMARK, + anon_sym_EQ, STATE(10505), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425523] = 5, + [425537] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13691), 1, + ACTIONS(13769), 1, anon_sym_RPAREN, ACTIONS(14059), 1, anon_sym_COMMA, @@ -681098,7 +681120,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425540] = 4, + [425554] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14061), 1, @@ -681108,7 +681130,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425554] = 4, + [425568] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14063), 1, @@ -681118,7 +681140,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425568] = 4, + [425582] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14065), 1, @@ -681128,7 +681150,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425582] = 4, + [425596] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14067), 1, @@ -681138,7 +681160,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425596] = 4, + [425610] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14069), 1, @@ -681148,7 +681170,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425610] = 4, + [425624] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14071), 1, @@ -681158,7 +681180,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425624] = 4, + [425638] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14073), 1, @@ -681168,7 +681190,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425638] = 4, + [425652] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14075), 1, @@ -681178,7 +681200,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425652] = 4, + [425666] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14077), 1, @@ -681188,7 +681210,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425666] = 4, + [425680] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14079), 1, @@ -681198,7 +681220,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425680] = 4, + [425694] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14081), 1, @@ -681208,7 +681230,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425694] = 5, + [425708] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -681219,7 +681241,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_type_declaration_token1, STATE(10518), 1, sym_heredoc_body, - [425710] = 4, + [425724] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14085), 1, @@ -681229,7 +681251,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425724] = 4, + [425738] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14087), 1, @@ -681239,7 +681261,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425738] = 4, + [425752] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14089), 1, @@ -681249,7 +681271,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425752] = 4, + [425766] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14091), 1, @@ -681259,7 +681281,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425766] = 4, + [425780] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14093), 1, @@ -681269,7 +681291,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425780] = 4, + [425794] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14095), 1, @@ -681279,7 +681301,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425794] = 4, + [425808] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14097), 1, @@ -681289,7 +681311,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425808] = 4, + [425822] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14099), 1, @@ -681299,7 +681321,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425822] = 4, + [425836] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14101), 1, @@ -681309,7 +681331,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425836] = 4, + [425850] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14103), 1, @@ -681319,7 +681341,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425850] = 4, + [425864] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14105), 1, @@ -681329,7 +681351,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425864] = 4, + [425878] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14107), 1, @@ -681339,7 +681361,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425878] = 4, + [425892] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14109), 1, @@ -681349,7 +681371,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425892] = 4, + [425906] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14111), 1, @@ -681359,7 +681381,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425906] = 4, + [425920] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14113), 1, @@ -681369,7 +681391,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425920] = 4, + [425934] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14115), 1, @@ -681379,7 +681401,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425934] = 4, + [425948] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14117), 1, @@ -681389,7 +681411,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425948] = 4, + [425962] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14119), 1, @@ -681399,7 +681421,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425962] = 4, + [425976] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14121), 1, @@ -681409,7 +681431,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425976] = 4, + [425990] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14123), 1, @@ -681419,7 +681441,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425990] = 4, + [426004] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14125), 1, @@ -681429,7 +681451,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426004] = 4, + [426018] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14127), 1, @@ -681439,7 +681461,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426018] = 4, + [426032] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14129), 1, @@ -681449,7 +681471,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426032] = 4, + [426046] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14131), 1, @@ -681459,7 +681481,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426046] = 4, + [426060] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14133), 1, @@ -681469,7 +681491,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426060] = 4, + [426074] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14135), 1, @@ -681479,7 +681501,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426074] = 4, + [426088] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14137), 1, @@ -681489,7 +681511,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426088] = 4, + [426102] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14139), 1, @@ -681499,7 +681521,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426102] = 4, + [426116] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14141), 1, @@ -681509,7 +681531,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426116] = 4, + [426130] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14143), 1, @@ -681519,7 +681541,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426130] = 4, + [426144] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14145), 1, @@ -681529,7 +681551,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426144] = 4, + [426158] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14147), 1, @@ -681539,7 +681561,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426158] = 4, + [426172] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14149), 1, @@ -681549,7 +681571,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426172] = 4, + [426186] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14151), 1, @@ -681559,7 +681581,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426186] = 4, + [426200] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14153), 1, @@ -681569,7 +681591,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426200] = 4, + [426214] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14155), 1, @@ -681579,7 +681601,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426214] = 4, + [426228] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14157), 1, @@ -681589,7 +681611,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426228] = 4, + [426242] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14159), 1, @@ -681599,7 +681621,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426242] = 4, + [426256] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14161), 1, @@ -681609,7 +681631,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426256] = 4, + [426270] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14163), 1, @@ -681619,7 +681641,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426270] = 4, + [426284] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14165), 1, @@ -681629,7 +681651,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426284] = 4, + [426298] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14167), 1, @@ -681639,7 +681661,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426298] = 4, + [426312] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14169), 1, @@ -681649,7 +681671,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426312] = 4, + [426326] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14171), 1, @@ -681659,7 +681681,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426326] = 4, + [426340] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(11392), 1, @@ -681669,7 +681691,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426340] = 4, + [426354] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14173), 1, @@ -681679,7 +681701,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426354] = 4, + [426368] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14175), 1, @@ -681689,7 +681711,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426368] = 4, + [426382] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14177), 1, @@ -681699,7 +681721,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426382] = 4, + [426396] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14179), 1, @@ -681709,7 +681731,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426396] = 4, + [426410] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14181), 1, @@ -681719,7 +681741,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426410] = 4, + [426424] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14183), 1, @@ -681729,7 +681751,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426424] = 4, + [426438] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14185), 1, @@ -681739,7 +681761,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426438] = 4, + [426452] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14187), 1, @@ -681749,7 +681771,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426452] = 4, + [426466] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14189), 1, @@ -681759,7 +681781,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426466] = 4, + [426480] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14191), 1, @@ -681769,7 +681791,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426480] = 4, + [426494] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14193), 1, @@ -681779,7 +681801,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426494] = 4, + [426508] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14195), 1, @@ -681789,7 +681811,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426508] = 4, + [426522] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14197), 1, @@ -681799,7 +681821,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426522] = 4, + [426536] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14199), 1, @@ -681809,7 +681831,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426536] = 4, + [426550] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14201), 1, @@ -681819,7 +681841,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426550] = 4, + [426564] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14203), 1, @@ -681829,7 +681851,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426564] = 4, + [426578] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14205), 1, @@ -681839,7 +681861,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426578] = 4, + [426592] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14207), 1, @@ -681849,7 +681871,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426592] = 4, + [426606] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14209), 1, @@ -681859,7 +681881,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426606] = 4, + [426620] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(259), 1, @@ -681869,7 +681891,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426620] = 4, + [426634] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14211), 1, @@ -681879,7 +681901,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426634] = 4, + [426648] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14213), 1, @@ -681889,7 +681911,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426648] = 4, + [426662] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14215), 1, @@ -681899,7 +681921,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426662] = 4, + [426676] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14217), 1, @@ -681909,7 +681931,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426676] = 4, + [426690] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14219), 1, @@ -681919,7 +681941,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426690] = 4, + [426704] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14221), 1, @@ -681929,7 +681951,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426704] = 4, + [426718] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14223), 1, @@ -681939,7 +681961,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426718] = 4, + [426732] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14225), 1, @@ -681949,7 +681971,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426732] = 4, + [426746] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14227), 1, @@ -681959,7 +681981,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426746] = 4, + [426760] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14229), 1, @@ -681969,7 +681991,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426760] = 4, + [426774] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14231), 1, @@ -681979,7 +682001,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426774] = 4, + [426788] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14233), 1, @@ -681989,7 +682011,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426788] = 4, + [426802] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14235), 1, @@ -681999,7 +682021,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426802] = 4, + [426816] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14237), 1, @@ -682009,7 +682031,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426816] = 4, + [426830] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14239), 1, @@ -682019,7 +682041,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426830] = 4, + [426844] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14241), 1, @@ -682029,7 +682051,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426844] = 4, + [426858] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14243), 1, @@ -682039,7 +682061,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426858] = 4, + [426872] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14245), 1, @@ -682049,7 +682071,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426872] = 4, + [426886] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14247), 1, @@ -682059,7 +682081,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426886] = 4, + [426900] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14249), 1, @@ -682069,7 +682091,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426900] = 4, + [426914] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14251), 1, @@ -682079,7 +682101,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426914] = 4, + [426928] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14253), 1, @@ -682089,7 +682111,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426928] = 4, + [426942] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14255), 1, @@ -682099,7 +682121,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426942] = 4, + [426956] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14257), 1, @@ -682109,7 +682131,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426956] = 4, + [426970] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14259), 1, @@ -682119,7 +682141,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426970] = 4, + [426984] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14261), 1, @@ -682129,7 +682151,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426984] = 4, + [426998] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14263), 1, @@ -682139,7 +682161,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426998] = 4, + [427012] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14265), 1, @@ -682149,7 +682171,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427012] = 4, + [427026] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14267), 1, @@ -682159,7 +682181,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427026] = 5, + [427040] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -682170,7 +682192,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_type_declaration_token1, STATE(10613), 1, sym_heredoc_body, - [427042] = 4, + [427056] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14271), 1, @@ -682180,7 +682202,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427056] = 4, + [427070] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14273), 1, @@ -682190,7 +682212,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427070] = 4, + [427084] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14275), 1, @@ -682200,7 +682222,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427084] = 4, + [427098] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14277), 1, @@ -682210,7 +682232,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427098] = 4, + [427112] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14279), 1, @@ -682220,7 +682242,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427112] = 4, + [427126] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14281), 1, @@ -682230,7 +682252,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427126] = 4, + [427140] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14283), 1, @@ -682240,7 +682262,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427140] = 4, + [427154] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14285), 1, @@ -682250,7 +682272,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427154] = 4, + [427168] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14287), 1, @@ -682260,7 +682282,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427168] = 4, + [427182] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14289), 1, @@ -682270,7 +682292,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427182] = 4, + [427196] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14291), 1, @@ -682280,7 +682302,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427196] = 4, + [427210] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14293), 1, @@ -682290,7 +682312,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427210] = 4, + [427224] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14295), 1, @@ -682300,7 +682322,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427224] = 4, + [427238] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14297), 1, @@ -682310,7 +682332,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427238] = 4, + [427252] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14299), 1, @@ -682320,7 +682342,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427252] = 4, + [427266] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14301), 1, @@ -682330,7 +682352,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427266] = 4, + [427280] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14303), 1, @@ -682340,7 +682362,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427280] = 4, + [427294] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14305), 1, @@ -682350,7 +682372,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427294] = 4, + [427308] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14307), 1, @@ -682360,7 +682382,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427308] = 4, + [427322] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14309), 1, @@ -682370,7 +682392,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427322] = 4, + [427336] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14311), 1, @@ -682380,7 +682402,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427336] = 4, + [427350] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14313), 1, @@ -682390,7 +682412,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427350] = 4, + [427364] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14315), 1, @@ -682400,7 +682422,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427364] = 5, + [427378] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -682411,7 +682433,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_type_declaration_token1, STATE(10637), 1, sym_heredoc_body, - [427380] = 4, + [427394] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14319), 1, @@ -682421,7 +682443,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427394] = 4, + [427408] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14321), 1, @@ -682431,7 +682453,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427408] = 4, + [427422] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14323), 1, @@ -682441,7 +682463,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427422] = 4, + [427436] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14325), 1, @@ -682451,7 +682473,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427436] = 4, + [427450] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14327), 1, @@ -682461,7 +682483,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427450] = 4, + [427464] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14329), 1, @@ -682471,7 +682493,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427464] = 4, + [427478] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14331), 1, @@ -682481,7 +682503,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427478] = 4, + [427492] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14333), 1, @@ -682491,7 +682513,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427492] = 4, + [427506] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14335), 1, @@ -682501,7 +682523,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427506] = 4, + [427520] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14337), 1, @@ -682511,7 +682533,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427520] = 4, + [427534] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14339), 1, @@ -682521,7 +682543,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427534] = 4, + [427548] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14341), 1, @@ -682531,7 +682553,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427548] = 4, + [427562] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14343), 1, @@ -682541,7 +682563,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427562] = 4, + [427576] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14345), 1, @@ -682551,7 +682573,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427576] = 4, + [427590] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14347), 1, @@ -682561,7 +682583,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427590] = 4, + [427604] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14349), 1, @@ -682571,7 +682593,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427604] = 4, + [427618] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14351), 1, @@ -682581,7 +682603,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427618] = 4, + [427632] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14353), 1, @@ -682591,7 +682613,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427632] = 4, + [427646] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14355), 1, @@ -682601,7 +682623,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427646] = 4, + [427660] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14357), 1, @@ -682611,7 +682633,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427660] = 4, + [427674] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14359), 1, @@ -682621,7 +682643,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427674] = 4, + [427688] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14361), 1, @@ -682631,7 +682653,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427688] = 4, + [427702] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14363), 1, @@ -682641,7 +682663,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427702] = 4, + [427716] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14365), 1, @@ -682651,7 +682673,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427716] = 4, + [427730] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14367), 1, @@ -682661,7 +682683,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427730] = 4, + [427744] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14369), 1, @@ -682671,7 +682693,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427744] = 4, + [427758] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14371), 1, @@ -682681,7 +682703,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427758] = 4, + [427772] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14373), 1, @@ -682691,7 +682713,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427772] = 4, + [427786] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14375), 1, @@ -682701,7 +682723,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427786] = 4, + [427800] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14377), 1, @@ -682711,7 +682733,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427800] = 4, + [427814] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14379), 1, @@ -682721,7 +682743,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427814] = 4, + [427828] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14381), 1, @@ -682731,7 +682753,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427828] = 4, + [427842] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14383), 1, @@ -682741,7 +682763,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427842] = 4, + [427856] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14385), 1, @@ -682751,7 +682773,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427856] = 4, + [427870] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14387), 1, @@ -682761,7 +682783,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427870] = 4, + [427884] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14389), 1, @@ -682771,7 +682793,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427884] = 4, + [427898] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14391), 1, @@ -682781,7 +682803,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427898] = 4, + [427912] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14393), 1, @@ -682791,7 +682813,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427912] = 4, + [427926] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14395), 1, @@ -682801,7 +682823,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427926] = 4, + [427940] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14397), 1, @@ -682811,7 +682833,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427940] = 4, + [427954] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14399), 1, @@ -682821,7 +682843,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427954] = 4, + [427968] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14401), 1, @@ -682831,7 +682853,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427968] = 4, + [427982] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14403), 1, @@ -682841,7 +682863,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427982] = 4, + [427996] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14405), 1, @@ -682851,7 +682873,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427996] = 4, + [428010] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14407), 1, @@ -682861,7 +682883,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428010] = 4, + [428024] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14409), 1, @@ -682871,7 +682893,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428024] = 4, + [428038] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14411), 1, @@ -682881,7 +682903,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428038] = 4, + [428052] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14413), 1, @@ -682891,7 +682913,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428052] = 4, + [428066] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14415), 1, @@ -682901,7 +682923,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428066] = 4, + [428080] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14417), 1, @@ -682911,7 +682933,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428080] = 4, + [428094] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14419), 1, @@ -682921,7 +682943,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428094] = 4, + [428108] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14421), 1, @@ -682931,7 +682953,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428108] = 4, + [428122] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14423), 1, @@ -682941,7 +682963,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428122] = 4, + [428136] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14425), 1, @@ -682951,7 +682973,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428136] = 4, + [428150] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14427), 1, @@ -682961,7 +682983,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428150] = 5, + [428164] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -682972,7 +682994,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_type_declaration_token1, STATE(10693), 1, sym_heredoc_body, - [428166] = 4, + [428180] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14431), 1, @@ -682982,7 +683004,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428180] = 4, + [428194] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14433), 1, @@ -682992,7 +683014,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428194] = 4, + [428208] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14435), 1, @@ -683002,7 +683024,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428208] = 4, + [428222] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14437), 1, @@ -683012,7 +683034,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428222] = 4, + [428236] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14439), 1, @@ -683022,7 +683044,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428236] = 4, + [428250] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14441), 1, @@ -683032,7 +683054,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428250] = 4, + [428264] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14443), 1, @@ -683042,7 +683064,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428264] = 4, + [428278] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14445), 1, @@ -683052,7 +683074,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428278] = 4, + [428292] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14447), 1, @@ -683062,7 +683084,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428292] = 4, + [428306] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14449), 1, @@ -683072,7 +683094,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428306] = 4, + [428320] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14451), 1, @@ -683082,7 +683104,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428320] = 4, + [428334] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14453), 1, @@ -683092,7 +683114,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428334] = 4, + [428348] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14455), 1, @@ -683102,7 +683124,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428348] = 4, + [428362] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14457), 1, @@ -683112,7 +683134,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428362] = 4, + [428376] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14459), 1, @@ -683122,7 +683144,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428376] = 4, + [428390] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14461), 1, @@ -683132,7 +683154,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428390] = 4, + [428404] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14463), 1, @@ -683142,7 +683164,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428404] = 4, + [428418] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14465), 1, @@ -683152,7 +683174,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428418] = 4, + [428432] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14467), 1, @@ -683162,7 +683184,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428432] = 4, + [428446] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14469), 1, @@ -683172,7 +683194,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428446] = 4, + [428460] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14471), 1, @@ -683182,7 +683204,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428460] = 4, + [428474] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14473), 1, @@ -683192,7 +683214,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428474] = 4, + [428488] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14475), 1, @@ -683202,7 +683224,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428488] = 4, + [428502] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14477), 1, @@ -683212,7 +683234,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428502] = 4, + [428516] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14479), 1, @@ -683222,7 +683244,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428516] = 4, + [428530] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14481), 1, @@ -683232,7 +683254,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428530] = 4, + [428544] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14483), 1, @@ -683242,7 +683264,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428544] = 4, + [428558] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14485), 1, @@ -683252,7 +683274,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428558] = 4, + [428572] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14487), 1, @@ -683262,7 +683284,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428572] = 4, + [428586] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14489), 1, @@ -683272,7 +683294,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428586] = 4, + [428600] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14491), 1, @@ -683282,7 +683304,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428600] = 4, + [428614] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14493), 1, @@ -683292,7 +683314,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428614] = 4, + [428628] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14495), 1, @@ -683302,7 +683324,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428628] = 4, + [428642] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14497), 1, @@ -683312,7 +683334,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428642] = 4, + [428656] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14499), 1, @@ -683322,7 +683344,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428656] = 4, + [428670] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14501), 1, @@ -683332,7 +683354,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428670] = 4, + [428684] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14503), 1, @@ -683342,7 +683364,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428684] = 4, + [428698] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14505), 1, @@ -683352,7 +683374,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428698] = 4, + [428712] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(11372), 1, @@ -683362,7 +683384,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428712] = 4, + [428726] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14507), 1, @@ -683372,7 +683394,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428726] = 4, + [428740] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14509), 1, @@ -683382,7 +683404,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428740] = 4, + [428754] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14511), 1, @@ -683392,7 +683414,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428754] = 4, + [428768] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14513), 1, @@ -683402,7 +683424,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428768] = 4, + [428782] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14515), 1, @@ -683412,7 +683434,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428782] = 4, + [428796] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14517), 1, @@ -683422,7 +683444,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428796] = 4, + [428810] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14519), 1, @@ -683432,7 +683454,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428810] = 4, + [428824] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14521), 1, @@ -683442,7 +683464,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428824] = 5, + [428838] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -683453,7 +683475,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_type_declaration_token1, STATE(10741), 1, sym_heredoc_body, - [428840] = 4, + [428854] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14525), 1, @@ -683463,7 +683485,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428854] = 4, + [428868] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14527), 1, @@ -683473,7 +683495,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428868] = 4, + [428882] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14529), 1, @@ -683483,7 +683505,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428882] = 4, + [428896] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14531), 1, @@ -683493,7 +683515,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428896] = 4, + [428910] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14533), 1, @@ -683503,7 +683525,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428910] = 4, + [428924] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14535), 1, @@ -683513,7 +683535,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428924] = 4, + [428938] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14537), 1, @@ -683523,7 +683545,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428938] = 4, + [428952] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14539), 1, @@ -683533,7 +683555,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428952] = 4, + [428966] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14541), 1, @@ -683543,7 +683565,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428966] = 4, + [428980] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14543), 1, @@ -683553,7 +683575,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428980] = 4, + [428994] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14545), 1, @@ -683563,7 +683585,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428994] = 4, + [429008] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14547), 1, @@ -683573,7 +683595,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429008] = 4, + [429022] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14549), 1, @@ -683583,7 +683605,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429022] = 4, + [429036] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14551), 1, @@ -683593,7 +683615,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429036] = 4, + [429050] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(11984), 1, @@ -683603,7 +683625,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429050] = 4, + [429064] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14553), 1, @@ -683613,7 +683635,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429064] = 4, + [429078] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14555), 1, @@ -683623,7 +683645,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429078] = 4, + [429092] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14557), 1, @@ -683633,7 +683655,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429092] = 5, + [429106] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -683644,7 +683666,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_type_declaration_token1, STATE(10760), 1, sym_heredoc_body, - [429108] = 4, + [429122] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14561), 1, @@ -683654,7 +683676,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429122] = 4, + [429136] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14563), 1, @@ -683664,7 +683686,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429136] = 4, + [429150] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14565), 1, @@ -683674,7 +683696,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429150] = 4, + [429164] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14567), 1, @@ -683684,7 +683706,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429164] = 4, + [429178] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14569), 1, @@ -683694,7 +683716,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429178] = 4, + [429192] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14571), 1, @@ -683704,7 +683726,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429192] = 4, + [429206] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14573), 1, @@ -683714,7 +683736,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429206] = 4, + [429220] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14575), 1, @@ -683724,7 +683746,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429220] = 4, + [429234] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14577), 1, @@ -683734,7 +683756,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429234] = 4, + [429248] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14579), 1, @@ -683744,7 +683766,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429248] = 4, + [429262] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14581), 1, @@ -683754,7 +683776,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429262] = 4, + [429276] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14583), 1, @@ -683764,7 +683786,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429276] = 4, + [429290] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14585), 1, @@ -683774,7 +683796,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429290] = 4, + [429304] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14587), 1, @@ -683784,7 +683806,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429304] = 4, + [429318] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14589), 1, @@ -683794,7 +683816,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429318] = 4, + [429332] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14591), 1, @@ -683804,7 +683826,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429332] = 4, + [429346] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14593), 1, @@ -683814,7 +683836,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429346] = 4, + [429360] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14595), 1, @@ -683824,7 +683846,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429360] = 4, + [429374] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14597), 1, @@ -683834,7 +683856,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429374] = 4, + [429388] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14599), 1, @@ -683844,7 +683866,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429388] = 4, + [429402] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14601), 1, @@ -683854,7 +683876,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429402] = 4, + [429416] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14603), 1, @@ -683864,7 +683886,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429416] = 4, + [429430] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14605), 1, @@ -683874,7 +683896,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429430] = 4, + [429444] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14607), 1, @@ -683884,7 +683906,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429444] = 4, + [429458] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14609), 1, @@ -683894,7 +683916,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429458] = 4, + [429472] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14611), 1, @@ -683904,7 +683926,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429472] = 4, + [429486] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14613), 1, @@ -683914,7 +683936,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429486] = 4, + [429500] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14615), 1, @@ -683924,7 +683946,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429500] = 4, + [429514] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14617), 1, @@ -683934,7 +683956,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429514] = 4, + [429528] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14619), 1, @@ -683944,7 +683966,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429528] = 4, + [429542] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14621), 1, @@ -683954,7 +683976,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429542] = 4, + [429556] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14623), 1, @@ -683964,7 +683986,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429556] = 4, + [429570] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14625), 1, @@ -683974,7 +683996,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429570] = 4, + [429584] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14627), 1, @@ -683984,7 +684006,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429584] = 4, + [429598] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14629), 1, @@ -683994,7 +684016,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429598] = 4, + [429612] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14631), 1, @@ -684004,7 +684026,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429612] = 4, + [429626] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14633), 1, @@ -684014,7 +684036,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429626] = 4, + [429640] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14635), 1, @@ -684024,7 +684046,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429640] = 4, + [429654] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(11988), 1, @@ -684034,7 +684056,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429654] = 5, + [429668] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -684045,7 +684067,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_type_declaration_token1, STATE(10800), 1, sym_heredoc_body, - [429670] = 4, + [429684] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14639), 1, @@ -684055,7 +684077,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429684] = 4, + [429698] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14641), 1, @@ -684065,7 +684087,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429698] = 4, + [429712] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14643), 1, @@ -684075,7 +684097,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429712] = 4, + [429726] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(11362), 1, @@ -684085,7 +684107,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429726] = 4, + [429740] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14645), 1, @@ -684095,7 +684117,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429740] = 4, + [429754] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14647), 1, @@ -684105,7 +684127,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429754] = 4, + [429768] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14649), 1, @@ -684115,7 +684137,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429768] = 4, + [429782] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14651), 1, @@ -684125,7 +684147,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429782] = 4, + [429796] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14653), 1, @@ -684135,7 +684157,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429796] = 4, + [429810] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14655), 1, @@ -684145,7 +684167,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429810] = 4, + [429824] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14657), 1, @@ -684155,7 +684177,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429824] = 4, + [429838] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14659), 1, @@ -684165,7 +684187,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429838] = 4, + [429852] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14661), 1, @@ -684175,7 +684197,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429852] = 4, + [429866] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14663), 1, @@ -684185,7 +684207,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429866] = 4, + [429880] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14665), 1, @@ -684195,7 +684217,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429880] = 4, + [429894] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14667), 1, @@ -684205,7 +684227,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429894] = 4, + [429908] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14669), 1, @@ -684215,7 +684237,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429908] = 4, + [429922] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14671), 1, @@ -684225,7 +684247,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429922] = 4, + [429936] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14673), 1, @@ -684235,7 +684257,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429936] = 4, + [429950] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14675), 1, @@ -684245,7 +684267,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429950] = 4, + [429964] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14677), 1, @@ -684255,7 +684277,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429964] = 4, + [429978] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14679), 1, @@ -684265,7 +684287,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429978] = 4, + [429992] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(11426), 1, @@ -684275,7 +684297,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429992] = 4, + [430006] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14681), 1, @@ -684285,7 +684307,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430006] = 4, + [430020] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14683), 1, @@ -684295,7 +684317,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430020] = 4, + [430034] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14685), 1, @@ -684305,7 +684327,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430034] = 4, + [430048] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14687), 1, @@ -684315,7 +684337,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430048] = 4, + [430062] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14689), 1, @@ -684325,7 +684347,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430062] = 4, + [430076] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14691), 1, @@ -684335,7 +684357,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430076] = 4, + [430090] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14693), 1, @@ -684345,7 +684367,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430090] = 4, + [430104] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14695), 1, @@ -684355,7 +684377,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430104] = 4, + [430118] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14697), 1, @@ -684365,7 +684387,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430118] = 4, + [430132] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14699), 1, @@ -684375,7 +684397,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430132] = 4, + [430146] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14701), 1, @@ -684385,7 +684407,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430146] = 4, + [430160] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14703), 1, @@ -684395,7 +684417,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430160] = 4, + [430174] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(11994), 1, @@ -684405,7 +684427,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430174] = 4, + [430188] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14705), 1, @@ -684415,7 +684437,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430188] = 4, + [430202] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14707), 1, @@ -684425,7 +684447,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430202] = 4, + [430216] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14709), 1, @@ -684435,7 +684457,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430216] = 4, + [430230] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14711), 1, @@ -684445,7 +684467,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430230] = 4, + [430244] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14713), 1, @@ -684455,7 +684477,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430244] = 4, + [430258] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14715), 1, @@ -684465,7 +684487,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430258] = 4, + [430272] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14717), 1, @@ -684475,7 +684497,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430272] = 4, + [430286] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14719), 1, @@ -684485,7 +684507,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430286] = 4, + [430300] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14721), 1, @@ -684495,7 +684517,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430300] = 4, + [430314] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14723), 1, @@ -684505,7 +684527,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430314] = 4, + [430328] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14725), 1, @@ -684515,7 +684537,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430328] = 4, + [430342] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14727), 1, @@ -684525,7 +684547,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430342] = 4, + [430356] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14729), 1, @@ -684535,7 +684557,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430356] = 4, + [430370] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14731), 1, @@ -684545,7 +684567,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430370] = 4, + [430384] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14733), 1, @@ -684555,7 +684577,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430384] = 4, + [430398] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14735), 1, @@ -684565,7 +684587,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430398] = 4, + [430412] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14737), 1, @@ -684575,7 +684597,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430412] = 4, + [430426] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14739), 1, @@ -684585,7 +684607,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430426] = 4, + [430440] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14741), 1, @@ -684595,7 +684617,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430440] = 4, + [430454] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14743), 1, @@ -684605,7 +684627,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430454] = 4, + [430468] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14745), 1, @@ -684615,7 +684637,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430468] = 4, + [430482] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14747), 1, @@ -684625,7 +684647,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430482] = 4, + [430496] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14749), 1, @@ -684635,7 +684657,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430496] = 4, + [430510] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14751), 1, @@ -684645,7 +684667,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430510] = 4, + [430524] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14753), 1, @@ -684655,7 +684677,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430524] = 4, + [430538] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14755), 1, @@ -684665,7 +684687,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430538] = 4, + [430552] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14757), 1, @@ -684675,7 +684697,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430552] = 4, + [430566] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14759), 1, @@ -684685,7 +684707,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430566] = 4, + [430580] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14761), 1, @@ -684695,7 +684717,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430580] = 4, + [430594] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14763), 1, @@ -684705,7 +684727,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430594] = 4, + [430608] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14765), 1, @@ -684715,7 +684737,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430608] = 4, + [430622] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14767), 1, @@ -684725,7 +684747,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430622] = 4, + [430636] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14769), 1, @@ -684735,7 +684757,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430636] = 4, + [430650] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14771), 1, @@ -684745,7 +684767,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430650] = 4, + [430664] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14773), 1, @@ -684755,7 +684777,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430664] = 4, + [430678] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14775), 1, @@ -684765,7 +684787,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430678] = 4, + [430692] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(11998), 1, @@ -684775,7 +684797,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430692] = 4, + [430706] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14777), 1, @@ -684785,7 +684807,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430706] = 4, + [430720] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14779), 1, @@ -684795,7 +684817,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430720] = 4, + [430734] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14781), 1, @@ -684805,7 +684827,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430734] = 4, + [430748] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14783), 1, @@ -684815,7 +684837,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430748] = 4, + [430762] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14785), 1, @@ -684825,7 +684847,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430762] = 4, + [430776] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14787), 1, @@ -684835,7 +684857,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430776] = 4, + [430790] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14789), 1, @@ -684845,7 +684867,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430790] = 4, + [430804] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14791), 1, @@ -684855,7 +684877,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430804] = 4, + [430818] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14793), 1, @@ -684865,7 +684887,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430818] = 5, + [430832] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -684876,7 +684898,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_type_declaration_token1, STATE(10883), 1, sym_heredoc_body, - [430834] = 4, + [430848] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14797), 1, @@ -684886,7 +684908,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430848] = 4, + [430862] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14799), 1, @@ -684896,7 +684918,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430862] = 4, + [430876] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14801), 1, @@ -684906,7 +684928,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430876] = 4, + [430890] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14803), 1, @@ -684916,7 +684938,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430890] = 4, + [430904] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10322), 1, @@ -684926,7 +684948,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430904] = 4, + [430918] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14805), 1, @@ -684936,7 +684958,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430918] = 4, + [430932] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14807), 1, @@ -684946,7 +684968,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430932] = 4, + [430946] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14809), 1, @@ -684956,7 +684978,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430946] = 4, + [430960] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14811), 1, @@ -684966,7 +684988,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430960] = 4, + [430974] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14813), 1, @@ -684976,7 +684998,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430974] = 4, + [430988] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14815), 1, @@ -684986,7 +685008,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430988] = 4, + [431002] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14817), 1, @@ -684996,7 +685018,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431002] = 4, + [431016] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14819), 1, @@ -685006,7 +685028,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431016] = 4, + [431030] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14821), 1, @@ -685016,7 +685038,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431030] = 4, + [431044] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14823), 1, @@ -685026,7 +685048,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431044] = 4, + [431058] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14825), 1, @@ -685036,7 +685058,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431058] = 4, + [431072] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14827), 1, @@ -685046,7 +685068,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431072] = 4, + [431086] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14829), 1, @@ -685056,7 +685078,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431086] = 4, + [431100] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14831), 1, @@ -685066,7 +685088,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431100] = 4, + [431114] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14833), 1, @@ -685076,7 +685098,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431114] = 4, + [431128] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14835), 1, @@ -685086,7 +685108,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431128] = 4, + [431142] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14837), 1, @@ -685096,7 +685118,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431142] = 4, + [431156] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14839), 1, @@ -685106,7 +685128,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431156] = 4, + [431170] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14841), 1, @@ -685116,7 +685138,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431170] = 4, + [431184] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14843), 1, @@ -685126,7 +685148,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431184] = 4, + [431198] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12002), 1, @@ -685136,7 +685158,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431198] = 4, + [431212] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14845), 1, @@ -685146,7 +685168,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431212] = 4, + [431226] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14847), 1, @@ -685156,7 +685178,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431226] = 4, + [431240] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14849), 1, @@ -685166,7 +685188,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431240] = 4, + [431254] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14851), 1, @@ -685176,7 +685198,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431254] = 4, + [431268] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14853), 1, @@ -685186,7 +685208,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431268] = 4, + [431282] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14855), 1, @@ -685196,7 +685218,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431282] = 4, + [431296] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14857), 1, @@ -685206,7 +685228,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431296] = 4, + [431310] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14859), 1, @@ -685216,7 +685238,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431310] = 4, + [431324] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14861), 1, @@ -685226,7 +685248,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431324] = 4, + [431338] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14863), 1, @@ -685236,7 +685258,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431338] = 4, + [431352] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14865), 1, @@ -685246,7 +685268,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431352] = 4, + [431366] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14867), 1, @@ -685256,7 +685278,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431366] = 4, + [431380] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14869), 1, @@ -685266,7 +685288,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431380] = 4, + [431394] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14871), 1, @@ -685276,7 +685298,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431394] = 4, + [431408] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14873), 1, @@ -685286,7 +685308,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431408] = 4, + [431422] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14875), 1, @@ -685296,7 +685318,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431422] = 4, + [431436] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14877), 1, @@ -685306,7 +685328,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431436] = 4, + [431450] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14879), 1, @@ -685316,7 +685338,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431450] = 4, + [431464] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14881), 1, @@ -685326,7 +685348,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431464] = 4, + [431478] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14883), 1, @@ -685336,7 +685358,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431478] = 4, + [431492] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14885), 1, @@ -685346,7 +685368,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431492] = 4, + [431506] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14887), 1, @@ -685356,7 +685378,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431506] = 4, + [431520] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14889), 1, @@ -685366,7 +685388,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431520] = 4, + [431534] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14891), 1, @@ -685376,7 +685398,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431534] = 4, + [431548] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14893), 1, @@ -685386,7 +685408,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431548] = 4, + [431562] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14895), 1, @@ -685396,7 +685418,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431562] = 4, + [431576] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14897), 1, @@ -685406,7 +685428,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431576] = 4, + [431590] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14899), 1, @@ -685416,7 +685438,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431590] = 4, + [431604] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14901), 1, @@ -685426,7 +685448,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431604] = 4, + [431618] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14903), 1, @@ -685436,7 +685458,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431618] = 4, + [431632] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14905), 1, @@ -685446,7 +685468,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431632] = 4, + [431646] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14907), 1, @@ -685456,7 +685478,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431646] = 4, + [431660] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14909), 1, @@ -685466,7 +685488,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431660] = 4, + [431674] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14911), 1, @@ -685476,7 +685498,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431674] = 4, + [431688] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14913), 1, @@ -685486,7 +685508,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431688] = 4, + [431702] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12006), 1, @@ -685496,7 +685518,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431702] = 4, + [431716] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14915), 1, @@ -685506,7 +685528,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431716] = 4, + [431730] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14917), 1, @@ -685516,7 +685538,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431730] = 4, + [431744] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14919), 1, @@ -685526,7 +685548,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431744] = 4, + [431758] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14921), 1, @@ -685536,7 +685558,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431758] = 4, + [431772] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14923), 1, @@ -685546,7 +685568,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431772] = 4, + [431786] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14925), 1, @@ -685556,7 +685578,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431786] = 4, + [431800] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14927), 1, @@ -685566,7 +685588,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431800] = 4, + [431814] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14929), 1, @@ -685576,7 +685598,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431814] = 4, + [431828] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14931), 1, @@ -685586,7 +685608,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431828] = 4, + [431842] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14933), 1, @@ -685596,7 +685618,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431842] = 4, + [431856] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14935), 1, @@ -685606,7 +685628,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431856] = 4, + [431870] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14937), 1, @@ -685616,7 +685638,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431870] = 4, + [431884] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14939), 1, @@ -685626,7 +685648,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431884] = 4, + [431898] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14941), 1, @@ -685636,7 +685658,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431898] = 4, + [431912] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14943), 1, @@ -685646,7 +685668,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431912] = 4, + [431926] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14945), 1, @@ -685656,7 +685678,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431926] = 4, + [431940] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14947), 1, @@ -685666,7 +685688,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431940] = 4, + [431954] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14949), 1, @@ -685676,7 +685698,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431954] = 4, + [431968] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14951), 1, @@ -685686,7 +685708,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431968] = 4, + [431982] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14953), 1, @@ -685696,7 +685718,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431982] = 4, + [431996] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14955), 1, @@ -685706,7 +685728,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431996] = 4, + [432010] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14957), 1, @@ -685716,7 +685738,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432010] = 4, + [432024] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14959), 1, @@ -685726,7 +685748,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432024] = 4, + [432038] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14961), 1, @@ -685736,7 +685758,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432038] = 4, + [432052] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14963), 1, @@ -685746,7 +685768,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432052] = 4, + [432066] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14965), 1, @@ -685756,7 +685778,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432066] = 4, + [432080] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14967), 1, @@ -685766,7 +685788,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432080] = 4, + [432094] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14969), 1, @@ -685776,7 +685798,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432094] = 4, + [432108] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14971), 1, @@ -685786,7 +685808,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432108] = 4, + [432122] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14973), 1, @@ -685796,7 +685818,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432122] = 4, + [432136] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14975), 1, @@ -685806,7 +685828,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432136] = 4, + [432150] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14977), 1, @@ -685816,7 +685838,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432150] = 4, + [432164] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14979), 1, @@ -685826,7 +685848,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432164] = 4, + [432178] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14981), 1, @@ -685836,7 +685858,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432178] = 4, + [432192] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12022), 1, @@ -685846,7 +685868,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432192] = 4, + [432206] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14983), 1, @@ -685856,7 +685878,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432206] = 4, + [432220] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14985), 1, @@ -685866,7 +685888,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432220] = 4, + [432234] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14987), 1, @@ -685876,7 +685898,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432234] = 4, + [432248] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14989), 1, @@ -685886,7 +685908,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432248] = 4, + [432262] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14991), 1, @@ -685896,7 +685918,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432262] = 4, + [432276] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14993), 1, @@ -685906,7 +685928,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432276] = 4, + [432290] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14995), 1, @@ -685916,7 +685938,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432290] = 4, + [432304] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14997), 1, @@ -685926,7 +685948,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432304] = 4, + [432318] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(14999), 1, @@ -685936,7 +685958,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432318] = 4, + [432332] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15001), 1, @@ -685946,7 +685968,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432332] = 4, + [432346] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15003), 1, @@ -685956,7 +685978,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432346] = 4, + [432360] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15005), 1, @@ -685966,7 +685988,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432360] = 4, + [432374] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15007), 1, @@ -685976,7 +685998,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432374] = 4, + [432388] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15009), 1, @@ -685986,7 +686008,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432388] = 5, + [432402] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -685997,7 +686019,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_type_declaration_token1, STATE(10995), 1, sym_heredoc_body, - [432404] = 4, + [432418] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15013), 1, @@ -686007,7 +686029,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432418] = 4, + [432432] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15015), 1, @@ -686017,7 +686039,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432432] = 4, + [432446] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15017), 1, @@ -686027,7 +686049,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432446] = 4, + [432460] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15019), 1, @@ -686037,7 +686059,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432460] = 4, + [432474] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15021), 1, @@ -686047,7 +686069,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432474] = 4, + [432488] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15023), 1, @@ -686057,7 +686079,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432488] = 4, + [432502] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15025), 1, @@ -686067,7 +686089,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432502] = 4, + [432516] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15027), 1, @@ -686077,7 +686099,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432516] = 4, + [432530] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15029), 1, @@ -686087,7 +686109,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432530] = 4, + [432544] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15031), 1, @@ -686097,7 +686119,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432544] = 4, + [432558] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15033), 1, @@ -686107,7 +686129,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432558] = 4, + [432572] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15035), 1, @@ -686117,7 +686139,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432572] = 4, + [432586] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15037), 1, @@ -686127,7 +686149,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432586] = 4, + [432600] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15039), 1, @@ -686137,7 +686159,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432600] = 4, + [432614] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15041), 1, @@ -686147,7 +686169,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432614] = 4, + [432628] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15043), 1, @@ -686157,7 +686179,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432628] = 4, + [432642] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15045), 1, @@ -686167,7 +686189,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432642] = 4, + [432656] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15047), 1, @@ -686177,7 +686199,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432656] = 4, + [432670] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15049), 1, @@ -686187,7 +686209,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432670] = 4, + [432684] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12026), 1, @@ -686197,7 +686219,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432684] = 4, + [432698] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15051), 1, @@ -686207,7 +686229,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432698] = 4, + [432712] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15053), 1, @@ -686217,7 +686239,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432712] = 4, + [432726] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15055), 1, @@ -686227,7 +686249,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432726] = 4, + [432740] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15057), 1, @@ -686237,7 +686259,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432740] = 4, + [432754] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15059), 1, @@ -686247,7 +686269,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432754] = 4, + [432768] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15061), 1, @@ -686257,7 +686279,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432768] = 4, + [432782] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15063), 1, @@ -686267,7 +686289,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432782] = 4, + [432796] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15065), 1, @@ -686277,7 +686299,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432796] = 4, + [432810] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15067), 1, @@ -686287,7 +686309,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432810] = 4, + [432824] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15069), 1, @@ -686297,7 +686319,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432824] = 4, + [432838] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15071), 1, @@ -686307,7 +686329,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432838] = 4, + [432852] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15073), 1, @@ -686317,7 +686339,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432852] = 4, + [432866] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15075), 1, @@ -686327,7 +686349,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432866] = 4, + [432880] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15077), 1, @@ -686337,7 +686359,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432880] = 4, + [432894] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15079), 1, @@ -686347,7 +686369,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432894] = 4, + [432908] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15081), 1, @@ -686357,7 +686379,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432908] = 4, + [432922] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15083), 1, @@ -686367,7 +686389,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432922] = 4, + [432936] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15085), 1, @@ -686377,7 +686399,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432936] = 4, + [432950] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15087), 1, @@ -686387,7 +686409,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432950] = 4, + [432964] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15089), 1, @@ -686397,7 +686419,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432964] = 4, + [432978] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15091), 1, @@ -686407,7 +686429,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432978] = 4, + [432992] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15093), 1, @@ -686417,7 +686439,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432992] = 4, + [433006] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15095), 1, @@ -686427,7 +686449,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433006] = 4, + [433020] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15097), 1, @@ -686437,7 +686459,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433020] = 4, + [433034] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15099), 1, @@ -686447,7 +686469,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433034] = 4, + [433048] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15101), 1, @@ -686457,7 +686479,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433048] = 4, + [433062] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15103), 1, @@ -686467,7 +686489,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433062] = 4, + [433076] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15105), 1, @@ -686477,7 +686499,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433076] = 4, + [433090] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15107), 1, @@ -686487,7 +686509,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433090] = 4, + [433104] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15109), 1, @@ -686497,7 +686519,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433104] = 4, + [433118] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15111), 1, @@ -686507,7 +686529,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433118] = 4, + [433132] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15113), 1, @@ -686517,7 +686539,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433132] = 4, + [433146] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15115), 1, @@ -686527,7 +686549,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433146] = 4, + [433160] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15117), 1, @@ -686537,7 +686559,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433160] = 4, + [433174] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12030), 1, @@ -686547,7 +686569,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433174] = 4, + [433188] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15119), 1, @@ -686557,7 +686579,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433188] = 4, + [433202] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(9993), 1, @@ -686567,7 +686589,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433202] = 4, + [433216] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15121), 1, @@ -686577,7 +686599,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433216] = 4, + [433230] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15123), 1, @@ -686587,7 +686609,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433230] = 4, + [433244] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(11492), 1, @@ -686597,7 +686619,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433244] = 4, + [433258] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15125), 1, @@ -686607,7 +686629,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433258] = 4, + [433272] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15127), 1, @@ -686617,7 +686639,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433272] = 4, + [433286] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15129), 1, @@ -686627,7 +686649,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433286] = 4, + [433300] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15131), 1, @@ -686637,7 +686659,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433300] = 4, + [433314] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15133), 1, @@ -686647,7 +686669,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433314] = 4, + [433328] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15135), 1, @@ -686657,7 +686679,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433328] = 4, + [433342] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15137), 1, @@ -686667,7 +686689,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433342] = 4, + [433356] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15139), 1, @@ -686677,7 +686699,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433356] = 4, + [433370] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15141), 1, @@ -686687,7 +686709,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433370] = 4, + [433384] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15143), 1, @@ -686697,7 +686719,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433384] = 4, + [433398] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15145), 1, @@ -686707,7 +686729,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433398] = 4, + [433412] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15147), 1, @@ -686717,7 +686739,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433412] = 4, + [433426] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15149), 1, @@ -686727,7 +686749,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433426] = 4, + [433440] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15151), 1, @@ -686737,7 +686759,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433440] = 4, + [433454] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15153), 1, @@ -686747,7 +686769,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433454] = 4, + [433468] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15155), 1, @@ -686757,7 +686779,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433468] = 4, + [433482] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15157), 1, @@ -686767,7 +686789,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433482] = 4, + [433496] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15159), 1, @@ -686777,7 +686799,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433496] = 4, + [433510] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15161), 1, @@ -686787,7 +686809,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433510] = 4, + [433524] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15163), 1, @@ -686797,7 +686819,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433524] = 4, + [433538] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15165), 1, @@ -686807,7 +686829,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433538] = 4, + [433552] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15167), 1, @@ -686817,7 +686839,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433552] = 4, + [433566] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15169), 1, @@ -686827,7 +686849,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433566] = 4, + [433580] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15171), 1, @@ -686837,7 +686859,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433580] = 4, + [433594] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15173), 1, @@ -686847,7 +686869,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433594] = 4, + [433608] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15175), 1, @@ -686857,7 +686879,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433608] = 4, + [433622] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15177), 1, @@ -686867,7 +686889,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433622] = 4, + [433636] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15179), 1, @@ -686877,7 +686899,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433636] = 4, + [433650] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15181), 1, @@ -686887,7 +686909,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433650] = 4, + [433664] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12036), 1, @@ -686897,7 +686919,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433664] = 4, + [433678] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15183), 1, @@ -686907,7 +686929,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433678] = 4, + [433692] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15185), 1, @@ -686917,7 +686939,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433692] = 4, + [433706] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15187), 1, @@ -686927,7 +686949,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433706] = 4, + [433720] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15189), 1, @@ -686937,7 +686959,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433720] = 4, + [433734] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15191), 1, @@ -686947,7 +686969,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433734] = 4, + [433748] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15193), 1, @@ -686957,7 +686979,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433748] = 4, + [433762] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15195), 1, @@ -686967,7 +686989,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433762] = 4, + [433776] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15197), 1, @@ -686977,7 +686999,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433776] = 4, + [433790] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15199), 1, @@ -686987,7 +687009,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433790] = 4, + [433804] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15201), 1, @@ -686997,7 +687019,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433804] = 4, + [433818] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15203), 1, @@ -687007,7 +687029,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433818] = 4, + [433832] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15205), 1, @@ -687017,7 +687039,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433832] = 4, + [433846] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15207), 1, @@ -687027,7 +687049,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433846] = 4, + [433860] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15209), 1, @@ -687037,7 +687059,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433860] = 4, + [433874] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15211), 1, @@ -687047,7 +687069,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433874] = 4, + [433888] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15213), 1, @@ -687057,7 +687079,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433888] = 4, + [433902] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15215), 1, @@ -687067,7 +687089,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433902] = 4, + [433916] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15217), 1, @@ -687077,7 +687099,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433916] = 4, + [433930] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15219), 1, @@ -687087,7 +687109,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433930] = 4, + [433944] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15221), 1, @@ -687097,7 +687119,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433944] = 4, + [433958] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15223), 1, @@ -687107,7 +687129,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433958] = 4, + [433972] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15225), 1, @@ -687117,7 +687139,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433972] = 4, + [433986] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15227), 1, @@ -687127,7 +687149,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433986] = 4, + [434000] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15229), 1, @@ -687137,7 +687159,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434000] = 4, + [434014] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15231), 1, @@ -687147,7 +687169,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434014] = 4, + [434028] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15233), 1, @@ -687157,7 +687179,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434028] = 4, + [434042] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15235), 1, @@ -687167,7 +687189,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434042] = 4, + [434056] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15237), 1, @@ -687177,7 +687199,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434056] = 4, + [434070] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15239), 1, @@ -687187,7 +687209,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434070] = 4, + [434084] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15241), 1, @@ -687197,7 +687219,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434084] = 4, + [434098] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15243), 1, @@ -687207,7 +687229,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434098] = 4, + [434112] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15245), 1, @@ -687217,7 +687239,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434112] = 4, + [434126] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15247), 1, @@ -687227,7 +687249,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434126] = 4, + [434140] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15249), 1, @@ -687237,7 +687259,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434140] = 4, + [434154] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12044), 1, @@ -687247,7 +687269,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434154] = 4, + [434168] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15251), 1, @@ -687257,7 +687279,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434168] = 4, + [434182] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15253), 1, @@ -687267,7 +687289,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434182] = 4, + [434196] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15255), 1, @@ -687277,7 +687299,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434196] = 4, + [434210] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15257), 1, @@ -687287,7 +687309,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434210] = 4, + [434224] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15259), 1, @@ -687297,7 +687319,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434224] = 4, + [434238] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15261), 1, @@ -687307,7 +687329,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434238] = 4, + [434252] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15263), 1, @@ -687317,7 +687339,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434252] = 4, + [434266] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15265), 1, @@ -687327,7 +687349,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434266] = 4, + [434280] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15267), 1, @@ -687337,7 +687359,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434280] = 4, + [434294] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15269), 1, @@ -687347,7 +687369,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434294] = 4, + [434308] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15271), 1, @@ -687357,7 +687379,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434308] = 4, + [434322] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15273), 1, @@ -687367,7 +687389,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434322] = 4, + [434336] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15275), 1, @@ -687377,7 +687399,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434336] = 4, + [434350] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15277), 1, @@ -687387,7 +687409,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434350] = 4, + [434364] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15279), 1, @@ -687397,7 +687419,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434364] = 4, + [434378] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15281), 1, @@ -687407,7 +687429,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434378] = 4, + [434392] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15283), 1, @@ -687417,7 +687439,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434392] = 4, + [434406] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15285), 1, @@ -687427,7 +687449,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434406] = 4, + [434420] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15287), 1, @@ -687437,7 +687459,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434420] = 4, + [434434] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15289), 1, @@ -687447,7 +687469,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434434] = 4, + [434448] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15291), 1, @@ -687457,7 +687479,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434448] = 4, + [434462] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15293), 1, @@ -687467,7 +687489,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434462] = 4, + [434476] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15295), 1, @@ -687477,7 +687499,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434476] = 4, + [434490] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(11482), 1, @@ -687487,7 +687509,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434490] = 4, + [434504] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15297), 1, @@ -687497,7 +687519,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434504] = 4, + [434518] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15299), 1, @@ -687507,7 +687529,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434518] = 4, + [434532] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15301), 1, @@ -687517,7 +687539,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434532] = 4, + [434546] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15303), 1, @@ -687527,7 +687549,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434546] = 4, + [434560] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15305), 1, @@ -687537,7 +687559,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434560] = 4, + [434574] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15307), 1, @@ -687547,7 +687569,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434574] = 4, + [434588] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15309), 1, @@ -687557,7 +687579,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434588] = 4, + [434602] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15311), 1, @@ -687567,7 +687589,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434602] = 4, + [434616] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15313), 1, @@ -687577,7 +687599,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434616] = 4, + [434630] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15315), 1, @@ -687587,7 +687609,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434630] = 4, + [434644] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12048), 1, @@ -687597,7 +687619,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434644] = 4, + [434658] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15317), 1, @@ -687607,7 +687629,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434658] = 4, + [434672] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15319), 1, @@ -687617,7 +687639,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434672] = 4, + [434686] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15321), 1, @@ -687627,7 +687649,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434686] = 4, + [434700] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15323), 1, @@ -687637,7 +687659,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434700] = 4, + [434714] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15325), 1, @@ -687647,7 +687669,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434714] = 4, + [434728] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15327), 1, @@ -687657,7 +687679,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434728] = 4, + [434742] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15329), 1, @@ -687667,7 +687689,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434742] = 4, + [434756] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15331), 1, @@ -687677,7 +687699,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434756] = 4, + [434770] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15333), 1, @@ -687687,7 +687709,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434770] = 4, + [434784] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15335), 1, @@ -687697,7 +687719,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434784] = 4, + [434798] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15337), 1, @@ -687707,7 +687729,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434798] = 4, + [434812] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15339), 1, @@ -687717,7 +687739,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434812] = 4, + [434826] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15341), 1, @@ -687727,7 +687749,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434826] = 4, + [434840] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15343), 1, @@ -687737,7 +687759,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434840] = 4, + [434854] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15345), 1, @@ -687747,7 +687769,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434854] = 4, + [434868] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15347), 1, @@ -687757,7 +687779,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434868] = 4, + [434882] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15349), 1, @@ -687767,7 +687789,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434882] = 4, + [434896] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15351), 1, @@ -687777,7 +687799,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434896] = 4, + [434910] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15353), 1, @@ -687787,7 +687809,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434910] = 4, + [434924] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15355), 1, @@ -687797,7 +687819,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434924] = 4, + [434938] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15357), 1, @@ -687807,7 +687829,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434938] = 4, + [434952] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12052), 1, @@ -687817,7 +687839,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434952] = 5, + [434966] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -687828,7 +687850,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_type_declaration_token1, STATE(11178), 1, sym_heredoc_body, - [434968] = 4, + [434982] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15361), 1, @@ -687838,7 +687860,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434982] = 4, + [434996] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15363), 1, @@ -687848,7 +687870,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434996] = 4, + [435010] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15365), 1, @@ -687858,7 +687880,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435010] = 4, + [435024] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15367), 1, @@ -687868,7 +687890,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435024] = 4, + [435038] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15369), 1, @@ -687878,7 +687900,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435038] = 4, + [435052] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15371), 1, @@ -687888,7 +687910,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435052] = 4, + [435066] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15373), 1, @@ -687898,7 +687920,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435066] = 4, + [435080] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15375), 1, @@ -687908,7 +687930,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435080] = 4, + [435094] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15377), 1, @@ -687918,7 +687940,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435094] = 4, + [435108] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(6014), 1, @@ -687928,7 +687950,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435108] = 4, + [435122] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15379), 1, @@ -687938,7 +687960,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435122] = 4, + [435136] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15381), 1, @@ -687948,7 +687970,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435136] = 4, + [435150] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15383), 1, @@ -687958,7 +687980,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435150] = 4, + [435164] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(6124), 1, @@ -687968,7 +687990,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435164] = 4, + [435178] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15385), 1, @@ -687978,7 +688000,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435178] = 4, + [435192] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15387), 1, @@ -687988,7 +688010,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435192] = 4, + [435206] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15389), 1, @@ -687998,7 +688020,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435206] = 4, + [435220] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12060), 1, @@ -688008,7 +688030,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435220] = 4, + [435234] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15391), 1, @@ -688018,7 +688040,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435234] = 4, + [435248] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15393), 1, @@ -688028,7 +688050,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435248] = 4, + [435262] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(5534), 1, @@ -688038,7 +688060,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435262] = 4, + [435276] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(5652), 1, @@ -688048,7 +688070,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435276] = 4, + [435290] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15395), 1, @@ -688058,7 +688080,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435290] = 4, + [435304] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15397), 1, @@ -688068,7 +688090,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435304] = 4, + [435318] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15399), 1, @@ -688078,7 +688100,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435318] = 4, + [435332] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15401), 1, @@ -688088,7 +688110,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435332] = 4, + [435346] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15403), 1, @@ -688098,7 +688120,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435346] = 4, + [435360] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15405), 1, @@ -688108,7 +688130,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435360] = 4, + [435374] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15407), 1, @@ -688118,7 +688140,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435374] = 4, + [435388] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15409), 1, @@ -688128,7 +688150,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435388] = 4, + [435402] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15411), 1, @@ -688138,7 +688160,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435402] = 4, + [435416] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15413), 1, @@ -688148,7 +688170,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435416] = 4, + [435430] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12068), 1, @@ -688158,7 +688180,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435430] = 4, + [435444] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15415), 1, @@ -688168,7 +688190,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435444] = 4, + [435458] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15417), 1, @@ -688178,7 +688200,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435458] = 5, + [435472] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -688189,7 +688211,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_type_declaration_token1, STATE(11214), 1, sym_heredoc_body, - [435474] = 4, + [435488] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15421), 1, @@ -688199,7 +688221,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435488] = 4, + [435502] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15423), 1, @@ -688209,7 +688231,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435502] = 4, + [435516] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15425), 1, @@ -688219,7 +688241,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435516] = 4, + [435530] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15427), 1, @@ -688229,7 +688251,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435530] = 4, + [435544] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15429), 1, @@ -688239,7 +688261,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435544] = 4, + [435558] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15431), 1, @@ -688249,7 +688271,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435558] = 4, + [435572] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15433), 1, @@ -688259,7 +688281,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435572] = 4, + [435586] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15435), 1, @@ -688269,7 +688291,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435586] = 4, + [435600] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15437), 1, @@ -688279,7 +688301,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435600] = 4, + [435614] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15439), 1, @@ -688289,7 +688311,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435614] = 4, + [435628] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15441), 1, @@ -688299,7 +688321,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435628] = 4, + [435642] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12076), 1, @@ -688309,7 +688331,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435642] = 4, + [435656] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15443), 1, @@ -688319,7 +688341,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435656] = 4, + [435670] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15445), 1, @@ -688329,7 +688351,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435670] = 4, + [435684] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15447), 1, @@ -688339,7 +688361,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435684] = 4, + [435698] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15449), 1, @@ -688349,7 +688371,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435698] = 4, + [435712] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15451), 1, @@ -688359,7 +688381,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435712] = 4, + [435726] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15453), 1, @@ -688369,7 +688391,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435726] = 4, + [435740] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15455), 1, @@ -688379,7 +688401,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435740] = 4, + [435754] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15457), 1, @@ -688389,7 +688411,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435754] = 4, + [435768] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15459), 1, @@ -688399,7 +688421,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435768] = 4, + [435782] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15461), 1, @@ -688409,7 +688431,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435782] = 4, + [435796] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15463), 1, @@ -688419,7 +688441,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435796] = 5, + [435810] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -688430,7 +688452,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_type_declaration_token1, STATE(11238), 1, sym_heredoc_body, - [435812] = 5, + [435826] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -688441,7 +688463,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_type_declaration_token1, STATE(11239), 1, sym_heredoc_body, - [435828] = 4, + [435842] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15469), 1, @@ -688451,7 +688473,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435842] = 4, + [435856] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12080), 1, @@ -688461,7 +688483,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435856] = 4, + [435870] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15471), 1, @@ -688471,7 +688493,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435870] = 4, + [435884] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15473), 1, @@ -688481,7 +688503,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435884] = 4, + [435898] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15475), 1, @@ -688491,7 +688513,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435898] = 4, + [435912] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15477), 1, @@ -688501,7 +688523,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435912] = 4, + [435926] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15479), 1, @@ -688511,7 +688533,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435926] = 4, + [435940] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15481), 1, @@ -688521,7 +688543,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435940] = 4, + [435954] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15483), 1, @@ -688531,7 +688553,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435954] = 4, + [435968] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15485), 1, @@ -688541,7 +688563,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435968] = 4, + [435982] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15487), 1, @@ -688551,7 +688573,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435982] = 4, + [435996] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15489), 1, @@ -688561,7 +688583,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435996] = 4, + [436010] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12084), 1, @@ -688571,7 +688593,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436010] = 4, + [436024] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15491), 1, @@ -688581,7 +688603,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436024] = 4, + [436038] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15493), 1, @@ -688591,7 +688613,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436038] = 4, + [436052] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15495), 1, @@ -688601,7 +688623,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436052] = 4, + [436066] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15497), 1, @@ -688611,7 +688633,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436066] = 4, + [436080] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15499), 1, @@ -688621,7 +688643,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436080] = 4, + [436094] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15501), 1, @@ -688631,7 +688653,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436094] = 4, + [436108] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15503), 1, @@ -688641,7 +688663,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436108] = 4, + [436122] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15505), 1, @@ -688651,7 +688673,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436122] = 4, + [436136] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12088), 1, @@ -688661,7 +688683,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436136] = 4, + [436150] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15507), 1, @@ -688671,7 +688693,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436150] = 4, + [436164] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15509), 1, @@ -688681,7 +688703,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436164] = 4, + [436178] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15511), 1, @@ -688691,7 +688713,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436178] = 4, + [436192] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15513), 1, @@ -688701,7 +688723,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436192] = 4, + [436206] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15515), 1, @@ -688711,7 +688733,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436206] = 4, + [436220] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15517), 1, @@ -688721,7 +688743,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436220] = 4, + [436234] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15519), 1, @@ -688731,7 +688753,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436234] = 4, + [436248] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15521), 1, @@ -688741,7 +688763,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436248] = 4, + [436262] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15523), 1, @@ -688751,7 +688773,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436262] = 4, + [436276] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12092), 1, @@ -688761,7 +688783,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436276] = 4, + [436290] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15525), 1, @@ -688771,7 +688793,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436290] = 4, + [436304] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15527), 1, @@ -688781,7 +688803,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436304] = 4, + [436318] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15529), 1, @@ -688791,7 +688813,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436318] = 4, + [436332] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15531), 1, @@ -688801,7 +688823,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436332] = 4, + [436346] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15533), 1, @@ -688811,7 +688833,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436346] = 4, + [436360] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15535), 1, @@ -688821,7 +688843,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436360] = 4, + [436374] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15537), 1, @@ -688831,7 +688853,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436374] = 4, + [436388] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15539), 1, @@ -688841,7 +688863,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436388] = 4, + [436402] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12098), 1, @@ -688851,7 +688873,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436402] = 4, + [436416] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(11900), 1, @@ -688861,7 +688883,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436416] = 4, + [436430] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15541), 1, @@ -688871,7 +688893,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436430] = 4, + [436444] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15543), 1, @@ -688881,7 +688903,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436444] = 4, + [436458] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15545), 1, @@ -688891,7 +688913,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436458] = 4, + [436472] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15547), 1, @@ -688901,7 +688923,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436472] = 4, + [436486] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15549), 1, @@ -688911,7 +688933,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436486] = 4, + [436500] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15551), 1, @@ -688921,7 +688943,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436500] = 4, + [436514] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15553), 1, @@ -688931,7 +688953,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436514] = 4, + [436528] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12102), 1, @@ -688941,7 +688963,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436528] = 4, + [436542] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15555), 1, @@ -688951,7 +688973,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436542] = 4, + [436556] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15557), 1, @@ -688961,7 +688983,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436556] = 4, + [436570] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15559), 1, @@ -688971,7 +688993,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436570] = 4, + [436584] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15561), 1, @@ -688981,7 +689003,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436584] = 4, + [436598] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15563), 1, @@ -688991,7 +689013,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436598] = 4, + [436612] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15565), 1, @@ -689001,7 +689023,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436612] = 4, + [436626] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(11486), 1, @@ -689011,7 +689033,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436626] = 4, + [436640] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12106), 1, @@ -689021,7 +689043,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436640] = 4, + [436654] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15567), 1, @@ -689031,7 +689053,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436654] = 4, + [436668] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15569), 1, @@ -689041,7 +689063,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436668] = 4, + [436682] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12110), 1, @@ -689051,7 +689073,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436682] = 4, + [436696] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15571), 1, @@ -689061,7 +689083,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436696] = 4, + [436710] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15573), 1, @@ -689071,7 +689093,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436710] = 4, + [436724] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12116), 1, @@ -689081,7 +689103,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436724] = 4, + [436738] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15575), 1, @@ -689091,7 +689113,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436738] = 4, + [436752] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15577), 1, @@ -689101,7 +689123,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436752] = 4, + [436766] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12120), 1, @@ -689111,7 +689133,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436766] = 4, + [436780] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15579), 1, @@ -689121,7 +689143,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436780] = 4, + [436794] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15581), 1, @@ -689131,7 +689153,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436794] = 4, + [436808] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12124), 1, @@ -689141,7 +689163,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436808] = 4, + [436822] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15583), 1, @@ -689151,7 +689173,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436822] = 4, + [436836] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15585), 1, @@ -689161,7 +689183,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436836] = 4, + [436850] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12128), 1, @@ -689171,7 +689193,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436850] = 4, + [436864] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15587), 1, @@ -689181,7 +689203,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436864] = 4, + [436878] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15589), 1, @@ -689191,7 +689213,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436878] = 4, + [436892] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12132), 1, @@ -689201,7 +689223,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436892] = 4, + [436906] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15591), 1, @@ -689211,7 +689233,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436906] = 4, + [436920] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15593), 1, @@ -689221,7 +689243,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436920] = 4, + [436934] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12136), 1, @@ -689231,7 +689253,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436934] = 4, + [436948] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15595), 1, @@ -689241,7 +689263,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436948] = 4, + [436962] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15597), 1, @@ -689251,7 +689273,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436962] = 4, + [436976] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12140), 1, @@ -689261,7 +689283,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436976] = 4, + [436990] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15599), 1, @@ -689271,7 +689293,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436990] = 4, + [437004] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15601), 1, @@ -689281,7 +689303,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437004] = 4, + [437018] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12144), 1, @@ -689291,7 +689313,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437018] = 4, + [437032] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15603), 1, @@ -689301,7 +689323,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437032] = 4, + [437046] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15605), 1, @@ -689311,7 +689333,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437046] = 4, + [437060] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12148), 1, @@ -689321,7 +689343,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437060] = 4, + [437074] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15607), 1, @@ -689331,7 +689353,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437074] = 4, + [437088] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15609), 1, @@ -689341,7 +689363,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437088] = 4, + [437102] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12152), 1, @@ -689351,7 +689373,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437102] = 4, + [437116] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15611), 1, @@ -689361,7 +689383,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437116] = 4, + [437130] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15613), 1, @@ -689371,7 +689393,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437130] = 4, + [437144] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12156), 1, @@ -689381,7 +689403,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437144] = 4, + [437158] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15615), 1, @@ -689391,7 +689413,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437158] = 4, + [437172] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15617), 1, @@ -689401,7 +689423,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437172] = 4, + [437186] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12160), 1, @@ -689411,7 +689433,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437186] = 4, + [437200] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15619), 1, @@ -689421,7 +689443,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437200] = 4, + [437214] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15621), 1, @@ -689431,7 +689453,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437214] = 4, + [437228] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12164), 1, @@ -689441,7 +689463,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437228] = 4, + [437242] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15623), 1, @@ -689451,7 +689473,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437242] = 4, + [437256] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15625), 1, @@ -689461,7 +689483,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437256] = 4, + [437270] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15627), 1, @@ -689471,7 +689493,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437270] = 4, + [437284] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15629), 1, @@ -689481,7 +689503,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437284] = 4, + [437298] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15631), 1, @@ -689491,7 +689513,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437298] = 4, + [437312] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12172), 1, @@ -689501,7 +689523,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437312] = 4, + [437326] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15633), 1, @@ -689511,7 +689533,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437326] = 4, + [437340] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15635), 1, @@ -689521,7 +689543,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437340] = 4, + [437354] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12176), 1, @@ -689531,7 +689553,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437354] = 4, + [437368] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15637), 1, @@ -689541,7 +689563,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437368] = 4, + [437382] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15639), 1, @@ -689551,7 +689573,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437382] = 4, + [437396] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12180), 1, @@ -689561,7 +689583,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437396] = 4, + [437410] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(11931), 1, @@ -689571,7 +689593,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437410] = 4, + [437424] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15641), 1, @@ -689581,7 +689603,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437424] = 4, + [437438] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12184), 1, @@ -689591,7 +689613,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437438] = 4, + [437452] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15643), 1, @@ -689601,7 +689623,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437452] = 4, + [437466] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15645), 1, @@ -689611,7 +689633,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437466] = 4, + [437480] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12188), 1, @@ -689621,7 +689643,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437480] = 4, + [437494] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15647), 1, @@ -689631,7 +689653,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437494] = 4, + [437508] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15649), 1, @@ -689641,7 +689663,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437508] = 4, + [437522] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12192), 1, @@ -689651,7 +689673,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437522] = 4, + [437536] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15651), 1, @@ -689661,7 +689683,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437536] = 4, + [437550] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15653), 1, @@ -689671,7 +689693,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437550] = 4, + [437564] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12196), 1, @@ -689681,7 +689703,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437564] = 4, + [437578] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15655), 1, @@ -689691,7 +689713,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437578] = 4, + [437592] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15657), 1, @@ -689701,7 +689723,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437592] = 4, + [437606] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12202), 1, @@ -689711,7 +689733,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437606] = 4, + [437620] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15659), 1, @@ -689721,7 +689743,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437620] = 4, + [437634] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15661), 1, @@ -689731,7 +689753,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437634] = 4, + [437648] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15663), 1, @@ -689741,7 +689763,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437648] = 4, + [437662] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15665), 1, @@ -689751,7 +689773,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437662] = 4, + [437676] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15667), 1, @@ -689761,7 +689783,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437676] = 5, + [437690] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -689772,7 +689794,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_type_declaration_token1, STATE(11372), 1, sym_heredoc_body, - [437692] = 4, + [437706] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15671), 1, @@ -689782,7 +689804,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437706] = 4, + [437720] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15673), 1, @@ -689792,7 +689814,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437720] = 4, + [437734] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15675), 1, @@ -689802,7 +689824,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437734] = 4, + [437748] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15677), 1, @@ -689812,7 +689834,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437748] = 4, + [437762] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15679), 1, @@ -689822,7 +689844,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437762] = 4, + [437776] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15681), 1, @@ -689832,7 +689854,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437776] = 4, + [437790] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15683), 1, @@ -689842,7 +689864,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437790] = 4, + [437804] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15685), 1, @@ -689852,7 +689874,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437804] = 4, + [437818] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15687), 1, @@ -689862,7 +689884,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437818] = 4, + [437832] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15689), 1, @@ -689872,7 +689894,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437832] = 4, + [437846] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15691), 1, @@ -689882,7 +689904,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437846] = 4, + [437860] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15693), 1, @@ -689892,7 +689914,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437860] = 4, + [437874] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15695), 1, @@ -689902,7 +689924,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437874] = 4, + [437888] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15697), 1, @@ -689912,7 +689934,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437888] = 4, + [437902] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15699), 1, @@ -689922,7 +689944,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437902] = 4, + [437916] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15701), 1, @@ -689932,7 +689954,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437916] = 4, + [437930] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15703), 1, @@ -689942,7 +689964,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437930] = 4, + [437944] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15705), 1, @@ -689952,7 +689974,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437944] = 4, + [437958] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15707), 1, @@ -689962,7 +689984,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437958] = 4, + [437972] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15709), 1, @@ -689972,7 +689994,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437972] = 4, + [437986] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15711), 1, @@ -689982,7 +690004,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437986] = 4, + [438000] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15713), 1, @@ -689992,7 +690014,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438000] = 4, + [438014] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15715), 1, @@ -690002,7 +690024,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438014] = 5, + [438028] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -690013,7 +690035,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_type_declaration_token1, STATE(11396), 1, sym_heredoc_body, - [438030] = 4, + [438044] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15719), 1, @@ -690023,7 +690045,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438044] = 4, + [438058] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15721), 1, @@ -690033,7 +690055,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438058] = 4, + [438072] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15723), 1, @@ -690043,7 +690065,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438072] = 4, + [438086] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15725), 1, @@ -690053,7 +690075,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438086] = 4, + [438100] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15727), 1, @@ -690063,7 +690085,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438100] = 4, + [438114] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15729), 1, @@ -690073,7 +690095,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438114] = 4, + [438128] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(11356), 1, @@ -690083,7 +690105,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438128] = 4, + [438142] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15731), 1, @@ -690093,7 +690115,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438142] = 4, + [438156] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15733), 1, @@ -690103,7 +690125,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438156] = 4, + [438170] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15735), 1, @@ -690113,7 +690135,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438170] = 4, + [438184] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15737), 1, @@ -690123,7 +690145,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438184] = 4, + [438198] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15739), 1, @@ -690133,7 +690155,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438198] = 4, + [438212] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15741), 1, @@ -690143,7 +690165,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438212] = 4, + [438226] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15743), 1, @@ -690153,7 +690175,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438226] = 4, + [438240] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15745), 1, @@ -690163,7 +690185,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438240] = 4, + [438254] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15747), 1, @@ -690173,7 +690195,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438254] = 4, + [438268] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15749), 1, @@ -690183,7 +690205,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438268] = 4, + [438282] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15751), 1, @@ -690193,7 +690215,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438282] = 4, + [438296] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15753), 1, @@ -690203,7 +690225,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438296] = 4, + [438310] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15755), 1, @@ -690213,7 +690235,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438310] = 4, + [438324] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15757), 1, @@ -690223,7 +690245,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438324] = 4, + [438338] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15759), 1, @@ -690233,7 +690255,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438338] = 4, + [438352] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15761), 1, @@ -690243,7 +690265,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438352] = 4, + [438366] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15763), 1, @@ -690253,7 +690275,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438366] = 4, + [438380] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15765), 1, @@ -690263,7 +690285,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438380] = 4, + [438394] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15767), 1, @@ -690273,7 +690295,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438394] = 4, + [438408] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15769), 1, @@ -690283,7 +690305,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438408] = 4, + [438422] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15771), 1, @@ -690293,7 +690315,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438422] = 4, + [438436] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15773), 1, @@ -690303,7 +690325,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438436] = 4, + [438450] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15775), 1, @@ -690313,7 +690335,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438450] = 4, + [438464] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15777), 1, @@ -690323,7 +690345,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438464] = 5, + [438478] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -690334,7 +690356,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_type_declaration_token1, STATE(11428), 1, sym_heredoc_body, - [438480] = 4, + [438494] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15781), 1, @@ -690344,7 +690366,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438494] = 5, + [438508] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -690355,7 +690377,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_type_declaration_token1, STATE(11430), 1, sym_heredoc_body, - [438510] = 4, + [438524] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15785), 1, @@ -690365,7 +690387,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438524] = 4, + [438538] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15787), 1, @@ -690375,7 +690397,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438538] = 4, + [438552] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15789), 1, @@ -690385,7 +690407,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438552] = 4, + [438566] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15791), 1, @@ -690395,7 +690417,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438566] = 4, + [438580] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15793), 1, @@ -690405,7 +690427,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438580] = 4, + [438594] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15795), 1, @@ -690415,7 +690437,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438594] = 4, + [438608] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15797), 1, @@ -690425,7 +690447,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438608] = 4, + [438622] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15799), 1, @@ -690435,7 +690457,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438622] = 4, + [438636] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15801), 1, @@ -690445,7 +690467,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438636] = 4, + [438650] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15803), 1, @@ -690455,7 +690477,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438650] = 4, + [438664] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15805), 1, @@ -690465,7 +690487,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438664] = 4, + [438678] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15807), 1, @@ -690475,7 +690497,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438678] = 4, + [438692] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15809), 1, @@ -690485,7 +690507,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438692] = 4, + [438706] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15811), 1, @@ -690495,7 +690517,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438706] = 4, + [438720] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15813), 1, @@ -690505,7 +690527,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438720] = 4, + [438734] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15815), 1, @@ -690515,7 +690537,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438734] = 4, + [438748] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15817), 1, @@ -690525,7 +690547,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438748] = 4, + [438762] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15819), 1, @@ -690535,7 +690557,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438762] = 4, + [438776] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15821), 1, @@ -690545,7 +690567,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438776] = 4, + [438790] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15823), 1, @@ -690555,7 +690577,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438790] = 4, + [438804] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15825), 1, @@ -690565,7 +690587,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438804] = 4, + [438818] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15827), 1, @@ -690575,7 +690597,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438818] = 4, + [438832] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15829), 1, @@ -690585,7 +690607,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438832] = 4, + [438846] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15831), 1, @@ -690595,7 +690617,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438846] = 4, + [438860] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15833), 1, @@ -690605,7 +690627,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438860] = 4, + [438874] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15835), 1, @@ -690615,7 +690637,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438874] = 4, + [438888] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15837), 1, @@ -690625,7 +690647,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438888] = 4, + [438902] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15839), 1, @@ -690635,7 +690657,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438902] = 4, + [438916] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15841), 1, @@ -690645,7 +690667,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438916] = 4, + [438930] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15843), 1, @@ -690655,7 +690677,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438930] = 4, + [438944] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15845), 1, @@ -690665,7 +690687,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438944] = 4, + [438958] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15847), 1, @@ -690675,7 +690697,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438958] = 4, + [438972] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15849), 1, @@ -690685,7 +690707,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438972] = 4, + [438986] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15851), 1, @@ -690695,7 +690717,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438986] = 4, + [439000] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15853), 1, @@ -690705,7 +690727,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439000] = 4, + [439014] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15855), 1, @@ -690715,7 +690737,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439014] = 4, + [439028] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15857), 1, @@ -690725,7 +690747,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439028] = 4, + [439042] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15859), 1, @@ -690735,7 +690757,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439042] = 4, + [439056] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15861), 1, @@ -690745,7 +690767,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439056] = 4, + [439070] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15863), 1, @@ -690755,7 +690777,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439070] = 4, + [439084] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15865), 1, @@ -690765,7 +690787,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439084] = 4, + [439098] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15867), 1, @@ -690775,7 +690797,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439098] = 4, + [439112] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15869), 1, @@ -690785,7 +690807,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439112] = 4, + [439126] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15871), 1, @@ -690795,7 +690817,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439126] = 4, + [439140] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15873), 1, @@ -690805,7 +690827,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439140] = 4, + [439154] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15875), 1, @@ -690815,7 +690837,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439154] = 4, + [439168] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15877), 1, @@ -690825,7 +690847,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439168] = 4, + [439182] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15879), 1, @@ -690835,7 +690857,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439182] = 4, + [439196] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15881), 1, @@ -690845,7 +690867,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439196] = 4, + [439210] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15883), 1, @@ -690855,7 +690877,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439210] = 4, + [439224] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15885), 1, @@ -690865,7 +690887,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439224] = 4, + [439238] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15887), 1, @@ -690875,7 +690897,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439238] = 4, + [439252] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15889), 1, @@ -690885,7 +690907,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439252] = 4, + [439266] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15891), 1, @@ -690895,7 +690917,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439266] = 4, + [439280] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15893), 1, @@ -690905,7 +690927,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439280] = 4, + [439294] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15895), 1, @@ -690915,7 +690937,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439294] = 4, + [439308] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15897), 1, @@ -690925,7 +690947,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439308] = 4, + [439322] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15899), 1, @@ -690935,7 +690957,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439322] = 4, + [439336] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15901), 1, @@ -690945,7 +690967,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439336] = 4, + [439350] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15903), 1, @@ -690955,7 +690977,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439350] = 4, + [439364] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15905), 1, @@ -690965,7 +690987,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439364] = 4, + [439378] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15907), 1, @@ -690975,7 +690997,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439378] = 4, + [439392] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15909), 1, @@ -690985,7 +691007,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439392] = 4, + [439406] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15911), 1, @@ -690995,7 +691017,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439406] = 4, + [439420] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15913), 1, @@ -691005,7 +691027,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439420] = 4, + [439434] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15915), 1, @@ -691015,7 +691037,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439434] = 4, + [439448] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15917), 1, @@ -691025,7 +691047,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439448] = 4, + [439462] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15919), 1, @@ -691035,7 +691057,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439462] = 4, + [439476] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15921), 1, @@ -691045,7 +691067,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439476] = 4, + [439490] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15923), 1, @@ -691055,7 +691077,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439490] = 4, + [439504] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15925), 1, @@ -691065,7 +691087,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439504] = 4, + [439518] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15927), 1, @@ -691075,7 +691097,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439518] = 4, + [439532] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15929), 1, @@ -691085,7 +691107,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439532] = 4, + [439546] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15931), 1, @@ -691095,7 +691117,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439546] = 4, + [439560] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15933), 1, @@ -691105,7 +691127,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439560] = 4, + [439574] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15935), 1, @@ -691115,7 +691137,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439574] = 4, + [439588] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15937), 1, @@ -691125,7 +691147,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439588] = 4, + [439602] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15939), 1, @@ -691135,7 +691157,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439602] = 4, + [439616] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15941), 1, @@ -691145,7 +691167,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439616] = 4, + [439630] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15943), 1, @@ -691155,7 +691177,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439630] = 4, + [439644] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15945), 1, @@ -691165,7 +691187,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439644] = 4, + [439658] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15947), 1, @@ -691175,7 +691197,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439658] = 4, + [439672] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15949), 1, @@ -691185,7 +691207,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439672] = 4, + [439686] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15951), 1, @@ -691195,7 +691217,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439686] = 4, + [439700] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15953), 1, @@ -691205,7 +691227,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439700] = 4, + [439714] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15955), 1, @@ -691215,7 +691237,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439714] = 4, + [439728] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15957), 1, @@ -691225,7 +691247,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439728] = 4, + [439742] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15959), 1, @@ -691235,7 +691257,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439742] = 4, + [439756] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15961), 1, @@ -691245,7 +691267,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439756] = 4, + [439770] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15963), 1, @@ -691255,7 +691277,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439770] = 4, + [439784] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15965), 1, @@ -691265,7 +691287,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439784] = 4, + [439798] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15967), 1, @@ -691275,7 +691297,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439798] = 4, + [439812] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15969), 1, @@ -691285,7 +691307,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439812] = 4, + [439826] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15971), 1, @@ -691295,7 +691317,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439826] = 4, + [439840] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15973), 1, @@ -691305,7 +691327,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439840] = 4, + [439854] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15975), 1, @@ -691315,7 +691337,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439854] = 4, + [439868] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15977), 1, @@ -691325,7 +691347,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439868] = 4, + [439882] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15979), 1, @@ -691335,7 +691357,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439882] = 5, + [439896] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -691346,7 +691368,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_type_declaration_token1, STATE(11529), 1, sym_heredoc_body, - [439898] = 4, + [439912] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15983), 1, @@ -691356,7 +691378,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439912] = 4, + [439926] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15985), 1, @@ -691366,7 +691388,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439926] = 4, + [439940] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15987), 1, @@ -691376,7 +691398,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439940] = 4, + [439954] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15989), 1, @@ -691386,7 +691408,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439954] = 4, + [439968] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15991), 1, @@ -691396,7 +691418,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439968] = 4, + [439982] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15993), 1, @@ -691406,7 +691428,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439982] = 4, + [439996] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15995), 1, @@ -691416,7 +691438,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439996] = 4, + [440010] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15997), 1, @@ -691426,7 +691448,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440010] = 4, + [440024] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(15999), 1, @@ -691436,7 +691458,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440024] = 4, + [440038] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16001), 1, @@ -691446,7 +691468,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440038] = 4, + [440052] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16003), 1, @@ -691456,7 +691478,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440052] = 4, + [440066] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16005), 1, @@ -691466,7 +691488,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440066] = 4, + [440080] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16007), 1, @@ -691476,7 +691498,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440080] = 4, + [440094] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16009), 1, @@ -691486,7 +691508,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440094] = 4, + [440108] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16011), 1, @@ -691496,7 +691518,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440108] = 4, + [440122] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16013), 1, @@ -691506,7 +691528,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440122] = 4, + [440136] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16015), 1, @@ -691516,7 +691538,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440136] = 4, + [440150] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16017), 1, @@ -691526,7 +691548,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440150] = 4, + [440164] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16019), 1, @@ -691536,7 +691558,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440164] = 4, + [440178] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16021), 1, @@ -691546,7 +691568,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440178] = 4, + [440192] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16023), 1, @@ -691556,7 +691578,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440192] = 4, + [440206] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16025), 1, @@ -691566,7 +691588,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440206] = 4, + [440220] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16027), 1, @@ -691576,7 +691598,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440220] = 4, + [440234] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16029), 1, @@ -691586,7 +691608,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440234] = 4, + [440248] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16031), 1, @@ -691596,7 +691618,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440248] = 4, + [440262] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16033), 1, @@ -691606,7 +691628,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440262] = 4, + [440276] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16035), 1, @@ -691616,7 +691638,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440276] = 4, + [440290] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16037), 1, @@ -691626,7 +691648,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440290] = 4, + [440304] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16039), 1, @@ -691636,7 +691658,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440304] = 4, + [440318] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16041), 1, @@ -691646,7 +691668,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440318] = 4, + [440332] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16043), 1, @@ -691656,7 +691678,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440332] = 4, + [440346] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16045), 1, @@ -691666,7 +691688,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440346] = 4, + [440360] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16047), 1, @@ -691676,7 +691698,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440360] = 4, + [440374] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16049), 1, @@ -691686,7 +691708,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440374] = 4, + [440388] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16051), 1, @@ -691696,7 +691718,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440388] = 4, + [440402] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16053), 1, @@ -691706,7 +691728,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440402] = 4, + [440416] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16055), 1, @@ -691716,7 +691738,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440416] = 4, + [440430] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16057), 1, @@ -691726,7 +691748,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440430] = 4, + [440444] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16059), 1, @@ -691736,7 +691758,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440444] = 4, + [440458] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16061), 1, @@ -691746,7 +691768,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440458] = 4, + [440472] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16063), 1, @@ -691756,7 +691778,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440472] = 4, + [440486] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16065), 1, @@ -691766,7 +691788,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440486] = 4, + [440500] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16067), 1, @@ -691776,7 +691798,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440500] = 4, + [440514] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16069), 1, @@ -691786,7 +691808,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440514] = 4, + [440528] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16071), 1, @@ -691796,7 +691818,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440528] = 4, + [440542] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16073), 1, @@ -691806,7 +691828,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440542] = 4, + [440556] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16075), 1, @@ -691816,7 +691838,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440556] = 4, + [440570] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16077), 1, @@ -691826,7 +691848,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440570] = 4, + [440584] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16079), 1, @@ -691836,7 +691858,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440584] = 4, + [440598] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16081), 1, @@ -691846,7 +691868,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440598] = 4, + [440612] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16083), 1, @@ -691856,7 +691878,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440612] = 4, + [440626] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(11386), 1, @@ -691866,7 +691888,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440626] = 4, + [440640] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16085), 1, @@ -691876,7 +691898,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440640] = 4, + [440654] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16087), 1, @@ -691886,7 +691908,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440654] = 4, + [440668] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16089), 1, @@ -691896,7 +691918,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440668] = 4, + [440682] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16091), 1, @@ -691906,7 +691928,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440682] = 4, + [440696] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16093), 1, @@ -691916,7 +691938,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440696] = 4, + [440710] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16095), 1, @@ -691926,7 +691948,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440710] = 4, + [440724] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16097), 1, @@ -691936,7 +691958,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440724] = 4, + [440738] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16099), 1, @@ -691946,7 +691968,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440738] = 4, + [440752] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16101), 1, @@ -691956,7 +691978,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440752] = 4, + [440766] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16103), 1, @@ -691966,7 +691988,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440766] = 4, + [440780] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16105), 1, @@ -691976,7 +691998,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440780] = 4, + [440794] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16107), 1, @@ -691986,7 +692008,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440794] = 4, + [440808] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16109), 1, @@ -691996,7 +692018,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440808] = 4, + [440822] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16111), 1, @@ -692006,7 +692028,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440822] = 4, + [440836] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(11522), 1, @@ -692016,7 +692038,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440836] = 4, + [440850] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16113), 1, @@ -692026,7 +692048,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440850] = 4, + [440864] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16115), 1, @@ -692036,7 +692058,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440864] = 4, + [440878] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16117), 1, @@ -692046,7 +692068,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440878] = 4, + [440892] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16119), 1, @@ -692056,7 +692078,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440892] = 4, + [440906] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16121), 1, @@ -692066,7 +692088,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440906] = 4, + [440920] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16123), 1, @@ -692076,7 +692098,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440920] = 4, + [440934] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16125), 1, @@ -692086,7 +692108,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440934] = 4, + [440948] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16127), 1, @@ -692096,7 +692118,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440948] = 4, + [440962] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16129), 1, @@ -692106,7 +692128,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440962] = 4, + [440976] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16131), 1, @@ -692116,7 +692138,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440976] = 4, + [440990] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16133), 1, @@ -692126,7 +692148,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440990] = 4, + [441004] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16135), 1, @@ -692136,7 +692158,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441004] = 4, + [441018] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16137), 1, @@ -692146,7 +692168,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441018] = 4, + [441032] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16139), 1, @@ -692156,7 +692178,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441032] = 4, + [441046] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16141), 1, @@ -692166,7 +692188,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441046] = 4, + [441060] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16143), 1, @@ -692176,7 +692198,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441060] = 4, + [441074] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16145), 1, @@ -692186,7 +692208,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441074] = 4, + [441088] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16147), 1, @@ -692196,7 +692218,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441088] = 4, + [441102] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16149), 1, @@ -692206,7 +692228,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441102] = 4, + [441116] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16151), 1, @@ -692216,7 +692238,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441116] = 4, + [441130] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16153), 1, @@ -692226,7 +692248,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441130] = 4, + [441144] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16155), 1, @@ -692236,7 +692258,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441144] = 4, + [441158] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(11442), 1, @@ -692246,7 +692268,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441158] = 4, + [441172] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16157), 1, @@ -692256,7 +692278,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441172] = 4, + [441186] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16159), 1, @@ -692266,7 +692288,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441186] = 4, + [441200] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16161), 1, @@ -692276,7 +692298,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441200] = 4, + [441214] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16163), 1, @@ -692286,7 +692308,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441214] = 4, + [441228] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16165), 1, @@ -692296,7 +692318,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441228] = 4, + [441242] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16167), 1, @@ -692306,7 +692328,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441242] = 4, + [441256] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16169), 1, @@ -692316,7 +692338,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441256] = 4, + [441270] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16171), 1, @@ -692326,7 +692348,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441270] = 4, + [441284] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16173), 1, @@ -692336,7 +692358,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441284] = 4, + [441298] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16175), 1, @@ -692346,7 +692368,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441298] = 4, + [441312] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16177), 1, @@ -692356,7 +692378,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441312] = 4, + [441326] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16179), 1, @@ -692366,7 +692388,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441326] = 4, + [441340] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16181), 1, @@ -692376,7 +692398,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441340] = 4, + [441354] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16183), 1, @@ -692386,7 +692408,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441354] = 4, + [441368] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16185), 1, @@ -692396,7 +692418,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441368] = 4, + [441382] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16187), 1, @@ -692406,7 +692428,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441382] = 4, + [441396] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16189), 1, @@ -692416,7 +692438,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441396] = 4, + [441410] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16191), 1, @@ -692426,7 +692448,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441410] = 4, + [441424] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16193), 1, @@ -692436,7 +692458,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441424] = 4, + [441438] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16195), 1, @@ -692446,7 +692468,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441438] = 4, + [441452] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16197), 1, @@ -692456,7 +692478,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441452] = 4, + [441466] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16199), 1, @@ -692466,7 +692488,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441466] = 4, + [441480] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16201), 1, @@ -692476,7 +692498,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441480] = 4, + [441494] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16203), 1, @@ -692486,7 +692508,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441494] = 4, + [441508] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16205), 1, @@ -692496,7 +692518,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441508] = 4, + [441522] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16207), 1, @@ -692506,7 +692528,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441522] = 4, + [441536] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16209), 1, @@ -692516,7 +692538,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441536] = 4, + [441550] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16211), 1, @@ -692526,7 +692548,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441550] = 4, + [441564] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16213), 1, @@ -692536,7 +692558,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441564] = 4, + [441578] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16215), 1, @@ -692546,7 +692568,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441578] = 4, + [441592] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16217), 1, @@ -692556,7 +692578,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441592] = 5, + [441606] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -692567,7 +692589,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_type_declaration_token1, STATE(11651), 1, sym_heredoc_body, - [441608] = 4, + [441622] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16221), 1, @@ -692577,7 +692599,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441622] = 4, + [441636] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16223), 1, @@ -692587,7 +692609,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441636] = 4, + [441650] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16225), 1, @@ -692597,7 +692619,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441650] = 4, + [441664] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16227), 1, @@ -692607,7 +692629,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441664] = 4, + [441678] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16229), 1, @@ -692617,7 +692639,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441678] = 4, + [441692] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16231), 1, @@ -692627,7 +692649,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441692] = 4, + [441706] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16233), 1, @@ -692637,7 +692659,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441706] = 4, + [441720] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16235), 1, @@ -692647,7 +692669,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441720] = 4, + [441734] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16237), 1, @@ -692657,7 +692679,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441734] = 4, + [441748] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16239), 1, @@ -692667,7 +692689,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441748] = 4, + [441762] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16241), 1, @@ -692677,7 +692699,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441762] = 4, + [441776] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16243), 1, @@ -692687,7 +692709,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441776] = 4, + [441790] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16245), 1, @@ -692697,7 +692719,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441790] = 4, + [441804] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16247), 1, @@ -692707,7 +692729,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441804] = 4, + [441818] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16249), 1, @@ -692717,7 +692739,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441818] = 4, + [441832] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16251), 1, @@ -692727,17 +692749,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441832] = 4, + [441846] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13673), 1, + ACTIONS(13815), 1, anon_sym_end, STATE(11668), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441846] = 4, + [441860] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16253), 1, @@ -692747,7 +692769,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441860] = 4, + [441874] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16255), 1, @@ -692757,7 +692779,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441874] = 4, + [441888] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16257), 1, @@ -692767,7 +692789,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441888] = 4, + [441902] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16259), 1, @@ -692777,7 +692799,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441902] = 4, + [441916] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16261), 1, @@ -692787,7 +692809,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441916] = 4, + [441930] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16263), 1, @@ -692797,7 +692819,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441930] = 4, + [441944] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16265), 1, @@ -692807,7 +692829,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441944] = 4, + [441958] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16267), 1, @@ -692817,7 +692839,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441958] = 4, + [441972] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16269), 1, @@ -692827,7 +692849,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441972] = 4, + [441986] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16271), 1, @@ -692837,7 +692859,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441986] = 4, + [442000] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16273), 1, @@ -692847,7 +692869,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442000] = 4, + [442014] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16275), 1, @@ -692857,7 +692879,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442014] = 4, + [442028] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16277), 1, @@ -692867,7 +692889,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442028] = 4, + [442042] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16279), 1, @@ -692877,7 +692899,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442042] = 4, + [442056] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16281), 1, @@ -692887,7 +692909,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442056] = 4, + [442070] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16283), 1, @@ -692897,7 +692919,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442070] = 4, + [442084] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16285), 1, @@ -692907,7 +692929,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442084] = 4, + [442098] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16287), 1, @@ -692917,7 +692939,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442098] = 4, + [442112] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16289), 1, @@ -692927,7 +692949,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442112] = 4, + [442126] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16291), 1, @@ -692937,7 +692959,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442126] = 4, + [442140] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16293), 1, @@ -692947,7 +692969,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442140] = 4, + [442154] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16295), 1, @@ -692957,7 +692979,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442154] = 4, + [442168] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16297), 1, @@ -692967,7 +692989,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442168] = 4, + [442182] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16299), 1, @@ -692977,7 +692999,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442182] = 4, + [442196] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16301), 1, @@ -692987,7 +693009,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442196] = 4, + [442210] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16303), 1, @@ -692997,7 +693019,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442210] = 4, + [442224] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16305), 1, @@ -693007,7 +693029,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442224] = 4, + [442238] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16307), 1, @@ -693017,7 +693039,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442238] = 4, + [442252] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16309), 1, @@ -693027,7 +693049,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442252] = 4, + [442266] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16311), 1, @@ -693037,7 +693059,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442266] = 4, + [442280] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16313), 1, @@ -693047,7 +693069,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442280] = 4, + [442294] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16315), 1, @@ -693057,7 +693079,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442294] = 4, + [442308] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16317), 1, @@ -693067,7 +693089,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442308] = 4, + [442322] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16319), 1, @@ -693077,7 +693099,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442322] = 4, + [442336] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16321), 1, @@ -693087,7 +693109,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442336] = 4, + [442350] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16323), 1, @@ -693097,7 +693119,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442350] = 4, + [442364] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16325), 1, @@ -693107,7 +693129,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442364] = 4, + [442378] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16327), 1, @@ -693117,7 +693139,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442378] = 4, + [442392] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16329), 1, @@ -693127,7 +693149,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442392] = 4, + [442406] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16331), 1, @@ -693137,7 +693159,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442406] = 4, + [442420] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16333), 1, @@ -693147,7 +693169,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442420] = 4, + [442434] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16335), 1, @@ -693157,7 +693179,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442434] = 4, + [442448] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16337), 1, @@ -693167,7 +693189,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442448] = 4, + [442462] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16339), 1, @@ -693177,7 +693199,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442462] = 4, + [442476] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16341), 1, @@ -693187,7 +693209,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442476] = 4, + [442490] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16343), 1, @@ -693197,7 +693219,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442490] = 4, + [442504] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16345), 1, @@ -693207,7 +693229,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442504] = 4, + [442518] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16347), 1, @@ -693217,7 +693239,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442518] = 4, + [442532] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16349), 1, @@ -693227,7 +693249,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442532] = 4, + [442546] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16351), 1, @@ -693237,7 +693259,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442546] = 4, + [442560] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16353), 1, @@ -693247,7 +693269,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442560] = 4, + [442574] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16355), 1, @@ -693257,7 +693279,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442574] = 4, + [442588] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16357), 1, @@ -693267,7 +693289,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442588] = 4, + [442602] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16359), 1, @@ -693277,7 +693299,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442602] = 4, + [442616] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16361), 1, @@ -693287,7 +693309,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442616] = 4, + [442630] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16363), 1, @@ -693297,7 +693319,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442630] = 4, + [442644] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16365), 1, @@ -693307,7 +693329,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442644] = 4, + [442658] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16367), 1, @@ -693317,7 +693339,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442658] = 4, + [442672] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16369), 1, @@ -693327,7 +693349,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442672] = 4, + [442686] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16371), 1, @@ -693337,7 +693359,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442686] = 4, + [442700] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16373), 1, @@ -693347,7 +693369,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442700] = 4, + [442714] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16375), 1, @@ -693357,7 +693379,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442714] = 4, + [442728] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(6120), 1, @@ -693367,7 +693389,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442728] = 4, + [442742] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16377), 1, @@ -693377,7 +693399,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442742] = 4, + [442756] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16379), 1, @@ -693387,7 +693409,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442756] = 4, + [442770] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16381), 1, @@ -693397,7 +693419,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442770] = 4, + [442784] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16383), 1, @@ -693407,7 +693429,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442784] = 4, + [442798] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16385), 1, @@ -693417,7 +693439,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442798] = 4, + [442812] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16387), 1, @@ -693427,7 +693449,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442812] = 4, + [442826] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16389), 1, @@ -693437,7 +693459,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442826] = 4, + [442840] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16391), 1, @@ -693447,7 +693469,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442840] = 4, + [442854] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16393), 1, @@ -693457,7 +693479,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442854] = 4, + [442868] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16395), 1, @@ -693467,7 +693489,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442868] = 4, + [442882] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16397), 1, @@ -693477,7 +693499,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442882] = 4, + [442896] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16399), 1, @@ -693487,7 +693509,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442896] = 4, + [442910] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16401), 1, @@ -693497,7 +693519,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442910] = 4, + [442924] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16403), 1, @@ -693507,7 +693529,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442924] = 4, + [442938] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16405), 1, @@ -693517,7 +693539,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442938] = 4, + [442952] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16407), 1, @@ -693527,7 +693549,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442952] = 4, + [442966] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16409), 1, @@ -693537,7 +693559,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442966] = 4, + [442980] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16411), 1, @@ -693547,7 +693569,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442980] = 4, + [442994] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16413), 1, @@ -693557,7 +693579,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442994] = 5, + [443008] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -693568,7 +693590,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_type_declaration_token1, STATE(11751), 1, sym_heredoc_body, - [443010] = 4, + [443024] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16417), 1, @@ -693578,7 +693600,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443024] = 4, + [443038] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16419), 1, @@ -693588,7 +693610,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443038] = 4, + [443052] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16421), 1, @@ -693598,7 +693620,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443052] = 4, + [443066] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16423), 1, @@ -693608,7 +693630,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443066] = 4, + [443080] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16425), 1, @@ -693618,7 +693640,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443080] = 4, + [443094] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16427), 1, @@ -693628,7 +693650,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443094] = 4, + [443108] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16429), 1, @@ -693638,7 +693660,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443108] = 4, + [443122] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16431), 1, @@ -693648,7 +693670,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443122] = 4, + [443136] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16433), 1, @@ -693658,7 +693680,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443136] = 4, + [443150] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16435), 1, @@ -693668,7 +693690,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443150] = 4, + [443164] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16437), 1, @@ -693678,7 +693700,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443164] = 4, + [443178] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16439), 1, @@ -693688,7 +693710,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443178] = 4, + [443192] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16441), 1, @@ -693698,7 +693720,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443192] = 4, + [443206] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16443), 1, @@ -693708,7 +693730,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443206] = 4, + [443220] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16445), 1, @@ -693718,7 +693740,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443220] = 4, + [443234] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16447), 1, @@ -693728,7 +693750,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443234] = 4, + [443248] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16449), 1, @@ -693738,7 +693760,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443248] = 4, + [443262] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16451), 1, @@ -693748,7 +693770,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443262] = 4, + [443276] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16453), 1, @@ -693758,7 +693780,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443276] = 4, + [443290] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16455), 1, @@ -693768,7 +693790,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443290] = 4, + [443304] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16457), 1, @@ -693778,7 +693800,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443304] = 4, + [443318] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16459), 1, @@ -693788,7 +693810,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443318] = 4, + [443332] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16461), 1, @@ -693798,7 +693820,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443332] = 4, + [443346] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16463), 1, @@ -693808,7 +693830,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443346] = 4, + [443360] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16465), 1, @@ -693818,7 +693840,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443360] = 4, + [443374] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16467), 1, @@ -693828,7 +693850,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443374] = 4, + [443388] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16469), 1, @@ -693838,7 +693860,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443388] = 4, + [443402] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16471), 1, @@ -693848,7 +693870,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443402] = 4, + [443416] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16473), 1, @@ -693858,7 +693880,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443416] = 4, + [443430] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16475), 1, @@ -693868,7 +693890,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443430] = 4, + [443444] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16477), 1, @@ -693878,7 +693900,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443444] = 4, + [443458] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16479), 1, @@ -693888,7 +693910,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443458] = 4, + [443472] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16481), 1, @@ -693898,7 +693920,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443472] = 4, + [443486] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16483), 1, @@ -693908,7 +693930,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443486] = 4, + [443500] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16485), 1, @@ -693918,7 +693940,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443500] = 4, + [443514] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16487), 1, @@ -693928,7 +693950,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443514] = 4, + [443528] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16489), 1, @@ -693938,7 +693960,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443528] = 4, + [443542] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16491), 1, @@ -693948,7 +693970,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443542] = 4, + [443556] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16493), 1, @@ -693958,7 +693980,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443556] = 4, + [443570] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16495), 1, @@ -693968,7 +693990,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443570] = 4, + [443584] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16497), 1, @@ -693978,7 +694000,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443584] = 4, + [443598] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16499), 1, @@ -693988,7 +694010,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443598] = 4, + [443612] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16501), 1, @@ -693998,7 +694020,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443612] = 4, + [443626] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16503), 1, @@ -694008,7 +694030,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443626] = 4, + [443640] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16505), 1, @@ -694018,7 +694040,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443640] = 4, + [443654] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16507), 1, @@ -694028,7 +694050,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443654] = 4, + [443668] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16509), 1, @@ -694038,7 +694060,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443668] = 4, + [443682] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16511), 1, @@ -694048,7 +694070,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443682] = 4, + [443696] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16513), 1, @@ -694058,7 +694080,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443696] = 4, + [443710] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16515), 1, @@ -694068,7 +694090,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443710] = 4, + [443724] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16517), 1, @@ -694078,7 +694100,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443724] = 4, + [443738] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16519), 1, @@ -694088,7 +694110,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443738] = 4, + [443752] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16521), 1, @@ -694098,7 +694120,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443752] = 4, + [443766] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16523), 1, @@ -694108,7 +694130,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443766] = 4, + [443780] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16525), 1, @@ -694118,7 +694140,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443780] = 4, + [443794] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16527), 1, @@ -694128,7 +694150,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443794] = 4, + [443808] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16529), 1, @@ -694138,7 +694160,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443808] = 4, + [443822] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16531), 1, @@ -694148,7 +694170,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443822] = 4, + [443836] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16533), 1, @@ -694158,7 +694180,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443836] = 4, + [443850] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16535), 1, @@ -694168,7 +694190,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443850] = 4, + [443864] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16537), 1, @@ -694178,7 +694200,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443864] = 4, + [443878] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16539), 1, @@ -694188,7 +694210,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443878] = 4, + [443892] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16541), 1, @@ -694198,7 +694220,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443892] = 4, + [443906] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16543), 1, @@ -694208,7 +694230,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443906] = 4, + [443920] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(11516), 1, @@ -694218,7 +694240,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443920] = 4, + [443934] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16545), 1, @@ -694228,7 +694250,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443934] = 4, + [443948] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16547), 1, @@ -694238,7 +694260,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443948] = 4, + [443962] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16549), 1, @@ -694248,7 +694270,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443962] = 4, + [443976] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16551), 1, @@ -694258,7 +694280,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443976] = 4, + [443990] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16553), 1, @@ -694268,7 +694290,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443990] = 4, + [444004] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16555), 1, @@ -694278,7 +694300,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444004] = 4, + [444018] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16557), 1, @@ -694288,7 +694310,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444018] = 4, + [444032] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16559), 1, @@ -694298,7 +694320,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444032] = 4, + [444046] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16561), 1, @@ -694308,7 +694330,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444046] = 4, + [444060] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16563), 1, @@ -694318,7 +694340,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444060] = 4, + [444074] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16565), 1, @@ -694328,7 +694350,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444074] = 4, + [444088] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16567), 1, @@ -694338,7 +694360,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444088] = 4, + [444102] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16569), 1, @@ -694348,7 +694370,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444102] = 4, + [444116] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16571), 1, @@ -694358,7 +694380,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444116] = 4, + [444130] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16573), 1, @@ -694368,7 +694390,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444130] = 4, + [444144] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16575), 1, @@ -694378,7 +694400,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444144] = 4, + [444158] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16577), 1, @@ -694388,7 +694410,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444158] = 4, + [444172] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16579), 1, @@ -694398,7 +694420,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444172] = 4, + [444186] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16581), 1, @@ -694408,7 +694430,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444186] = 4, + [444200] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16583), 1, @@ -694418,7 +694440,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444200] = 4, + [444214] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16585), 1, @@ -694428,7 +694450,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444214] = 4, + [444228] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16587), 1, @@ -694438,7 +694460,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444228] = 4, + [444242] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16589), 1, @@ -694448,7 +694470,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444242] = 4, + [444256] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16591), 1, @@ -694458,7 +694480,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444256] = 4, + [444270] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16593), 1, @@ -694468,7 +694490,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444270] = 4, + [444284] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16595), 1, @@ -694478,7 +694500,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444284] = 4, + [444298] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16597), 1, @@ -694488,7 +694510,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444298] = 4, + [444312] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16599), 1, @@ -694498,7 +694520,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444312] = 4, + [444326] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16601), 1, @@ -694508,7 +694530,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444326] = 4, + [444340] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16603), 1, @@ -694518,7 +694540,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444340] = 4, + [444354] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16605), 1, @@ -694528,7 +694550,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444354] = 4, + [444368] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16607), 1, @@ -694538,7 +694560,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444368] = 4, + [444382] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16609), 1, @@ -694548,7 +694570,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444382] = 4, + [444396] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(5518), 1, @@ -694558,7 +694580,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444396] = 4, + [444410] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(5579), 1, @@ -694568,7 +694590,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444410] = 4, + [444424] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16611), 1, @@ -694578,7 +694600,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444424] = 4, + [444438] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16613), 1, @@ -694588,7 +694610,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444438] = 4, + [444452] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16615), 1, @@ -694598,7 +694620,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444452] = 4, + [444466] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16617), 1, @@ -694608,7 +694630,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444466] = 4, + [444480] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16619), 1, @@ -694618,7 +694640,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444480] = 4, + [444494] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16621), 1, @@ -694628,17 +694650,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444494] = 4, + [444508] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13556), 1, + ACTIONS(13608), 1, anon_sym_RPAREN, STATE(11858), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444508] = 4, + [444522] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16623), 1, @@ -694648,7 +694670,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444522] = 4, + [444536] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16625), 1, @@ -694658,7 +694680,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444536] = 4, + [444550] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16627), 1, @@ -694668,7 +694690,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444550] = 4, + [444564] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16629), 1, @@ -694678,7 +694700,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444564] = 4, + [444578] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16631), 1, @@ -694688,7 +694710,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444578] = 4, + [444592] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16633), 1, @@ -694698,7 +694720,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444592] = 4, + [444606] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16635), 1, @@ -694708,7 +694730,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444606] = 4, + [444620] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16637), 1, @@ -694718,7 +694740,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444620] = 4, + [444634] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16639), 1, @@ -694728,7 +694750,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444634] = 5, + [444648] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -694739,7 +694761,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_type_declaration_token1, STATE(11868), 1, sym_heredoc_body, - [444650] = 4, + [444664] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16643), 1, @@ -694749,7 +694771,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444664] = 4, + [444678] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16645), 1, @@ -694759,7 +694781,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444678] = 4, + [444692] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16647), 1, @@ -694769,7 +694791,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444692] = 4, + [444706] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16649), 1, @@ -694779,7 +694801,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444706] = 4, + [444720] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16651), 1, @@ -694789,7 +694811,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444720] = 4, + [444734] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16653), 1, @@ -694799,7 +694821,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444734] = 4, + [444748] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16655), 1, @@ -694809,7 +694831,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444748] = 4, + [444762] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16657), 1, @@ -694819,7 +694841,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444762] = 4, + [444776] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16659), 1, @@ -694829,7 +694851,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444776] = 4, + [444790] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16661), 1, @@ -694839,7 +694861,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444790] = 4, + [444804] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16663), 1, @@ -694849,7 +694871,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444804] = 4, + [444818] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16665), 1, @@ -694859,7 +694881,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444818] = 4, + [444832] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16667), 1, @@ -694869,7 +694891,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444832] = 4, + [444846] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16669), 1, @@ -694879,7 +694901,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444846] = 4, + [444860] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16671), 1, @@ -694889,7 +694911,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444860] = 4, + [444874] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(7014), 1, @@ -694899,7 +694921,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444874] = 4, + [444888] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16673), 1, @@ -694909,7 +694931,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444888] = 4, + [444902] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16675), 1, @@ -694919,7 +694941,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444902] = 4, + [444916] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16677), 1, @@ -694929,7 +694951,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444916] = 4, + [444930] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16679), 1, @@ -694939,7 +694961,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444930] = 4, + [444944] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16681), 1, @@ -694949,7 +694971,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444944] = 4, + [444958] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16683), 1, @@ -694959,7 +694981,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444958] = 4, + [444972] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16685), 1, @@ -694969,7 +694991,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444972] = 4, + [444986] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16687), 1, @@ -694979,7 +695001,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444986] = 4, + [445000] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16689), 1, @@ -694989,7 +695011,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445000] = 4, + [445014] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16691), 1, @@ -694999,7 +695021,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445014] = 4, + [445028] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16693), 1, @@ -695009,7 +695031,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445028] = 4, + [445042] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16695), 1, @@ -695019,7 +695041,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445042] = 4, + [445056] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16697), 1, @@ -695029,7 +695051,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445056] = 4, + [445070] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16699), 1, @@ -695039,7 +695061,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445070] = 4, + [445084] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16701), 1, @@ -695049,7 +695071,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445084] = 4, + [445098] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16703), 1, @@ -695059,7 +695081,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445098] = 4, + [445112] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16705), 1, @@ -695069,7 +695091,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445112] = 4, + [445126] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16707), 1, @@ -695079,7 +695101,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445126] = 4, + [445140] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16709), 1, @@ -695089,7 +695111,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445140] = 4, + [445154] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16711), 1, @@ -695099,7 +695121,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445154] = 4, + [445168] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16713), 1, @@ -695109,7 +695131,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445168] = 4, + [445182] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16715), 1, @@ -695119,7 +695141,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445182] = 4, + [445196] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16717), 1, @@ -695129,7 +695151,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445196] = 4, + [445210] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16719), 1, @@ -695139,7 +695161,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445210] = 4, + [445224] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16721), 1, @@ -695149,7 +695171,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445224] = 4, + [445238] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16723), 1, @@ -695159,7 +695181,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445238] = 4, + [445252] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16725), 1, @@ -695169,7 +695191,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445252] = 4, + [445266] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16727), 1, @@ -695179,7 +695201,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445266] = 4, + [445280] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16729), 1, @@ -695189,7 +695211,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445280] = 4, + [445294] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16731), 1, @@ -695199,7 +695221,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445294] = 4, + [445308] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16733), 1, @@ -695209,7 +695231,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445308] = 4, + [445322] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16735), 1, @@ -695219,7 +695241,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445322] = 4, + [445336] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16737), 1, @@ -695229,7 +695251,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445336] = 4, + [445350] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16739), 1, @@ -695239,7 +695261,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445350] = 4, + [445364] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16741), 1, @@ -695249,7 +695271,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445364] = 4, + [445378] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16743), 1, @@ -695259,7 +695281,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445378] = 4, + [445392] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16745), 1, @@ -695269,7 +695291,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445392] = 4, + [445406] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16747), 1, @@ -695279,7 +695301,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445406] = 4, + [445420] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16749), 1, @@ -695289,7 +695311,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445420] = 4, + [445434] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16751), 1, @@ -695299,7 +695321,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445434] = 4, + [445448] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16753), 1, @@ -695309,7 +695331,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445448] = 5, + [445462] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -695320,7 +695342,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_type_declaration_token1, STATE(11926), 1, sym_heredoc_body, - [445464] = 4, + [445478] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16757), 1, @@ -695330,7 +695352,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445478] = 4, + [445492] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16759), 1, @@ -695340,7 +695362,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445492] = 4, + [445506] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16761), 1, @@ -695350,7 +695372,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445506] = 4, + [445520] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16763), 1, @@ -695360,7 +695382,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445520] = 4, + [445534] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16765), 1, @@ -695370,7 +695392,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445534] = 4, + [445548] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16767), 1, @@ -695380,7 +695402,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445548] = 4, + [445562] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16769), 1, @@ -695390,7 +695412,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445562] = 4, + [445576] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16771), 1, @@ -695400,7 +695422,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445576] = 4, + [445590] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(11424), 1, @@ -695410,7 +695432,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445590] = 4, + [445604] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16773), 1, @@ -695420,7 +695442,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445604] = 4, + [445618] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16775), 1, @@ -695430,7 +695452,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445618] = 4, + [445632] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16777), 1, @@ -695440,7 +695462,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445632] = 4, + [445646] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16779), 1, @@ -695450,7 +695472,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445646] = 4, + [445660] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16781), 1, @@ -695460,7 +695482,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445660] = 4, + [445674] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16783), 1, @@ -695470,7 +695492,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445674] = 5, + [445688] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -695481,7 +695503,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_type_declaration_token1, STATE(11942), 1, sym_heredoc_body, - [445690] = 4, + [445704] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16787), 1, @@ -695491,7 +695513,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445704] = 4, + [445718] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16789), 1, @@ -695501,7 +695523,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445718] = 4, + [445732] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16791), 1, @@ -695511,7 +695533,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445732] = 4, + [445746] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16793), 1, @@ -695521,7 +695543,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445746] = 4, + [445760] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16795), 1, @@ -695531,7 +695553,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445760] = 4, + [445774] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16797), 1, @@ -695541,7 +695563,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445774] = 4, + [445788] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16799), 1, @@ -695551,7 +695573,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445788] = 4, + [445802] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16801), 1, @@ -695561,7 +695583,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445802] = 4, + [445816] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16803), 1, @@ -695571,7 +695593,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445816] = 4, + [445830] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16805), 1, @@ -695581,7 +695603,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445830] = 4, + [445844] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16807), 1, @@ -695591,7 +695613,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445844] = 4, + [445858] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(11406), 1, @@ -695601,7 +695623,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445858] = 4, + [445872] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16809), 1, @@ -695611,7 +695633,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445872] = 4, + [445886] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16811), 1, @@ -695621,7 +695643,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445886] = 4, + [445900] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16813), 1, @@ -695631,7 +695653,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445900] = 4, + [445914] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16815), 1, @@ -695641,7 +695663,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445914] = 4, + [445928] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16817), 1, @@ -695651,7 +695673,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445928] = 4, + [445942] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16819), 1, @@ -695661,7 +695683,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445942] = 4, + [445956] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16821), 1, @@ -695671,7 +695693,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445956] = 4, + [445970] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16823), 1, @@ -695681,7 +695703,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445970] = 4, + [445984] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16825), 1, @@ -695691,7 +695713,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445984] = 4, + [445998] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16827), 1, @@ -695701,7 +695723,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445998] = 4, + [446012] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16829), 1, @@ -695711,7 +695733,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446012] = 4, + [446026] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16831), 1, @@ -695721,7 +695743,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446026] = 4, + [446040] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16833), 1, @@ -695731,7 +695753,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446040] = 4, + [446054] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16835), 1, @@ -695741,7 +695763,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446054] = 4, + [446068] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16837), 1, @@ -695751,7 +695773,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446068] = 4, + [446082] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16839), 1, @@ -695761,7 +695783,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446082] = 4, + [446096] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16841), 1, @@ -695771,7 +695793,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446096] = 4, + [446110] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16843), 1, @@ -695781,7 +695803,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446110] = 4, + [446124] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16845), 1, @@ -695791,7 +695813,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446124] = 4, + [446138] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16847), 1, @@ -695801,7 +695823,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446138] = 4, + [446152] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16849), 1, @@ -695811,7 +695833,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446152] = 4, + [446166] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16851), 1, @@ -695821,7 +695843,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446166] = 4, + [446180] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16853), 1, @@ -695831,7 +695853,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446180] = 4, + [446194] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16855), 1, @@ -695841,7 +695863,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446194] = 4, + [446208] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16857), 1, @@ -695851,7 +695873,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446208] = 4, + [446222] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(12168), 1, @@ -695861,10 +695883,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446222] = 1, + [446236] = 1, ACTIONS(16859), 1, ts_builtin_sym_end, - [446226] = 1, + [446240] = 1, ACTIONS(16861), 1, ts_builtin_sym_end, }; @@ -703500,33 +703522,33 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(9927)] = 414638, [SMALL_STATE(9928)] = 414658, [SMALL_STATE(9929)] = 414678, - [SMALL_STATE(9930)] = 414696, + [SMALL_STATE(9930)] = 414698, [SMALL_STATE(9931)] = 414716, [SMALL_STATE(9932)] = 414736, [SMALL_STATE(9933)] = 414756, - [SMALL_STATE(9934)] = 414774, + [SMALL_STATE(9934)] = 414776, [SMALL_STATE(9935)] = 414794, - [SMALL_STATE(9936)] = 414810, - [SMALL_STATE(9937)] = 414830, + [SMALL_STATE(9936)] = 414814, + [SMALL_STATE(9937)] = 414834, [SMALL_STATE(9938)] = 414850, [SMALL_STATE(9939)] = 414870, [SMALL_STATE(9940)] = 414890, - [SMALL_STATE(9941)] = 414906, - [SMALL_STATE(9942)] = 414922, - [SMALL_STATE(9943)] = 414942, - [SMALL_STATE(9944)] = 414958, - [SMALL_STATE(9945)] = 414978, - [SMALL_STATE(9946)] = 414994, - [SMALL_STATE(9947)] = 415014, + [SMALL_STATE(9941)] = 414910, + [SMALL_STATE(9942)] = 414930, + [SMALL_STATE(9943)] = 414946, + [SMALL_STATE(9944)] = 414962, + [SMALL_STATE(9945)] = 414982, + [SMALL_STATE(9946)] = 414998, + [SMALL_STATE(9947)] = 415018, [SMALL_STATE(9948)] = 415034, - [SMALL_STATE(9949)] = 415050, - [SMALL_STATE(9950)] = 415066, - [SMALL_STATE(9951)] = 415086, + [SMALL_STATE(9949)] = 415054, + [SMALL_STATE(9950)] = 415074, + [SMALL_STATE(9951)] = 415090, [SMALL_STATE(9952)] = 415106, [SMALL_STATE(9953)] = 415126, - [SMALL_STATE(9954)] = 415142, - [SMALL_STATE(9955)] = 415162, - [SMALL_STATE(9956)] = 415182, + [SMALL_STATE(9954)] = 415146, + [SMALL_STATE(9955)] = 415166, + [SMALL_STATE(9956)] = 415186, [SMALL_STATE(9957)] = 415202, [SMALL_STATE(9958)] = 415222, [SMALL_STATE(9959)] = 415242, @@ -703559,150 +703581,150 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(9986)] = 415782, [SMALL_STATE(9987)] = 415802, [SMALL_STATE(9988)] = 415822, - [SMALL_STATE(9989)] = 415840, - [SMALL_STATE(9990)] = 415860, - [SMALL_STATE(9991)] = 415880, - [SMALL_STATE(9992)] = 415900, - [SMALL_STATE(9993)] = 415920, - [SMALL_STATE(9994)] = 415940, + [SMALL_STATE(9989)] = 415842, + [SMALL_STATE(9990)] = 415862, + [SMALL_STATE(9991)] = 415882, + [SMALL_STATE(9992)] = 415902, + [SMALL_STATE(9993)] = 415922, + [SMALL_STATE(9994)] = 415942, [SMALL_STATE(9995)] = 415960, [SMALL_STATE(9996)] = 415980, [SMALL_STATE(9997)] = 416000, [SMALL_STATE(9998)] = 416020, [SMALL_STATE(9999)] = 416040, - [SMALL_STATE(10000)] = 416056, - [SMALL_STATE(10001)] = 416076, - [SMALL_STATE(10002)] = 416096, - [SMALL_STATE(10003)] = 416114, - [SMALL_STATE(10004)] = 416134, - [SMALL_STATE(10005)] = 416154, - [SMALL_STATE(10006)] = 416174, - [SMALL_STATE(10007)] = 416190, - [SMALL_STATE(10008)] = 416210, - [SMALL_STATE(10009)] = 416230, - [SMALL_STATE(10010)] = 416250, - [SMALL_STATE(10011)] = 416270, - [SMALL_STATE(10012)] = 416290, - [SMALL_STATE(10013)] = 416310, - [SMALL_STATE(10014)] = 416330, + [SMALL_STATE(10000)] = 416060, + [SMALL_STATE(10001)] = 416080, + [SMALL_STATE(10002)] = 416100, + [SMALL_STATE(10003)] = 416120, + [SMALL_STATE(10004)] = 416140, + [SMALL_STATE(10005)] = 416160, + [SMALL_STATE(10006)] = 416180, + [SMALL_STATE(10007)] = 416196, + [SMALL_STATE(10008)] = 416216, + [SMALL_STATE(10009)] = 416236, + [SMALL_STATE(10010)] = 416254, + [SMALL_STATE(10011)] = 416274, + [SMALL_STATE(10012)] = 416294, + [SMALL_STATE(10013)] = 416314, + [SMALL_STATE(10014)] = 416334, [SMALL_STATE(10015)] = 416350, [SMALL_STATE(10016)] = 416370, [SMALL_STATE(10017)] = 416390, [SMALL_STATE(10018)] = 416410, [SMALL_STATE(10019)] = 416430, - [SMALL_STATE(10020)] = 416448, - [SMALL_STATE(10021)] = 416468, - [SMALL_STATE(10022)] = 416488, - [SMALL_STATE(10023)] = 416508, - [SMALL_STATE(10024)] = 416528, - [SMALL_STATE(10025)] = 416548, - [SMALL_STATE(10026)] = 416568, - [SMALL_STATE(10027)] = 416588, - [SMALL_STATE(10028)] = 416604, - [SMALL_STATE(10029)] = 416624, - [SMALL_STATE(10030)] = 416644, - [SMALL_STATE(10031)] = 416660, - [SMALL_STATE(10032)] = 416676, - [SMALL_STATE(10033)] = 416692, - [SMALL_STATE(10034)] = 416712, - [SMALL_STATE(10035)] = 416732, - [SMALL_STATE(10036)] = 416748, - [SMALL_STATE(10037)] = 416764, - [SMALL_STATE(10038)] = 416784, - [SMALL_STATE(10039)] = 416804, - [SMALL_STATE(10040)] = 416824, - [SMALL_STATE(10041)] = 416840, - [SMALL_STATE(10042)] = 416860, - [SMALL_STATE(10043)] = 416880, - [SMALL_STATE(10044)] = 416900, - [SMALL_STATE(10045)] = 416920, - [SMALL_STATE(10046)] = 416936, - [SMALL_STATE(10047)] = 416956, - [SMALL_STATE(10048)] = 416976, - [SMALL_STATE(10049)] = 416996, - [SMALL_STATE(10050)] = 417016, - [SMALL_STATE(10051)] = 417036, - [SMALL_STATE(10052)] = 417056, - [SMALL_STATE(10053)] = 417076, - [SMALL_STATE(10054)] = 417096, - [SMALL_STATE(10055)] = 417116, - [SMALL_STATE(10056)] = 417136, - [SMALL_STATE(10057)] = 417156, + [SMALL_STATE(10020)] = 416450, + [SMALL_STATE(10021)] = 416470, + [SMALL_STATE(10022)] = 416490, + [SMALL_STATE(10023)] = 416510, + [SMALL_STATE(10024)] = 416530, + [SMALL_STATE(10025)] = 416550, + [SMALL_STATE(10026)] = 416570, + [SMALL_STATE(10027)] = 416590, + [SMALL_STATE(10028)] = 416608, + [SMALL_STATE(10029)] = 416628, + [SMALL_STATE(10030)] = 416648, + [SMALL_STATE(10031)] = 416668, + [SMALL_STATE(10032)] = 416688, + [SMALL_STATE(10033)] = 416708, + [SMALL_STATE(10034)] = 416728, + [SMALL_STATE(10035)] = 416748, + [SMALL_STATE(10036)] = 416768, + [SMALL_STATE(10037)] = 416788, + [SMALL_STATE(10038)] = 416804, + [SMALL_STATE(10039)] = 416824, + [SMALL_STATE(10040)] = 416844, + [SMALL_STATE(10041)] = 416860, + [SMALL_STATE(10042)] = 416880, + [SMALL_STATE(10043)] = 416896, + [SMALL_STATE(10044)] = 416912, + [SMALL_STATE(10045)] = 416932, + [SMALL_STATE(10046)] = 416952, + [SMALL_STATE(10047)] = 416968, + [SMALL_STATE(10048)] = 416984, + [SMALL_STATE(10049)] = 417004, + [SMALL_STATE(10050)] = 417024, + [SMALL_STATE(10051)] = 417044, + [SMALL_STATE(10052)] = 417060, + [SMALL_STATE(10053)] = 417080, + [SMALL_STATE(10054)] = 417100, + [SMALL_STATE(10055)] = 417120, + [SMALL_STATE(10056)] = 417140, + [SMALL_STATE(10057)] = 417160, [SMALL_STATE(10058)] = 417176, [SMALL_STATE(10059)] = 417196, [SMALL_STATE(10060)] = 417216, - [SMALL_STATE(10061)] = 417234, - [SMALL_STATE(10062)] = 417254, - [SMALL_STATE(10063)] = 417272, - [SMALL_STATE(10064)] = 417292, - [SMALL_STATE(10065)] = 417308, - [SMALL_STATE(10066)] = 417328, - [SMALL_STATE(10067)] = 417348, - [SMALL_STATE(10068)] = 417368, - [SMALL_STATE(10069)] = 417388, - [SMALL_STATE(10070)] = 417408, - [SMALL_STATE(10071)] = 417426, - [SMALL_STATE(10072)] = 417446, - [SMALL_STATE(10073)] = 417466, - [SMALL_STATE(10074)] = 417484, - [SMALL_STATE(10075)] = 417504, - [SMALL_STATE(10076)] = 417524, - [SMALL_STATE(10077)] = 417540, - [SMALL_STATE(10078)] = 417560, - [SMALL_STATE(10079)] = 417580, - [SMALL_STATE(10080)] = 417600, - [SMALL_STATE(10081)] = 417620, - [SMALL_STATE(10082)] = 417636, - [SMALL_STATE(10083)] = 417652, - [SMALL_STATE(10084)] = 417672, - [SMALL_STATE(10085)] = 417692, - [SMALL_STATE(10086)] = 417712, - [SMALL_STATE(10087)] = 417732, - [SMALL_STATE(10088)] = 417752, - [SMALL_STATE(10089)] = 417772, - [SMALL_STATE(10090)] = 417788, - [SMALL_STATE(10091)] = 417804, - [SMALL_STATE(10092)] = 417824, - [SMALL_STATE(10093)] = 417844, - [SMALL_STATE(10094)] = 417864, - [SMALL_STATE(10095)] = 417880, - [SMALL_STATE(10096)] = 417896, - [SMALL_STATE(10097)] = 417916, - [SMALL_STATE(10098)] = 417936, - [SMALL_STATE(10099)] = 417952, - [SMALL_STATE(10100)] = 417972, - [SMALL_STATE(10101)] = 417990, - [SMALL_STATE(10102)] = 418010, - [SMALL_STATE(10103)] = 418026, - [SMALL_STATE(10104)] = 418046, - [SMALL_STATE(10105)] = 418066, - [SMALL_STATE(10106)] = 418086, - [SMALL_STATE(10107)] = 418106, - [SMALL_STATE(10108)] = 418126, - [SMALL_STATE(10109)] = 418144, - [SMALL_STATE(10110)] = 418164, - [SMALL_STATE(10111)] = 418184, - [SMALL_STATE(10112)] = 418204, - [SMALL_STATE(10113)] = 418224, - [SMALL_STATE(10114)] = 418244, - [SMALL_STATE(10115)] = 418264, - [SMALL_STATE(10116)] = 418284, - [SMALL_STATE(10117)] = 418304, - [SMALL_STATE(10118)] = 418324, - [SMALL_STATE(10119)] = 418344, - [SMALL_STATE(10120)] = 418360, - [SMALL_STATE(10121)] = 418380, - [SMALL_STATE(10122)] = 418400, - [SMALL_STATE(10123)] = 418420, - [SMALL_STATE(10124)] = 418440, - [SMALL_STATE(10125)] = 418460, - [SMALL_STATE(10126)] = 418480, - [SMALL_STATE(10127)] = 418500, - [SMALL_STATE(10128)] = 418520, - [SMALL_STATE(10129)] = 418540, - [SMALL_STATE(10130)] = 418560, - [SMALL_STATE(10131)] = 418580, - [SMALL_STATE(10132)] = 418600, + [SMALL_STATE(10061)] = 417236, + [SMALL_STATE(10062)] = 417256, + [SMALL_STATE(10063)] = 417276, + [SMALL_STATE(10064)] = 417296, + [SMALL_STATE(10065)] = 417316, + [SMALL_STATE(10066)] = 417336, + [SMALL_STATE(10067)] = 417356, + [SMALL_STATE(10068)] = 417376, + [SMALL_STATE(10069)] = 417396, + [SMALL_STATE(10070)] = 417416, + [SMALL_STATE(10071)] = 417436, + [SMALL_STATE(10072)] = 417456, + [SMALL_STATE(10073)] = 417476, + [SMALL_STATE(10074)] = 417494, + [SMALL_STATE(10075)] = 417514, + [SMALL_STATE(10076)] = 417532, + [SMALL_STATE(10077)] = 417552, + [SMALL_STATE(10078)] = 417568, + [SMALL_STATE(10079)] = 417588, + [SMALL_STATE(10080)] = 417608, + [SMALL_STATE(10081)] = 417628, + [SMALL_STATE(10082)] = 417648, + [SMALL_STATE(10083)] = 417668, + [SMALL_STATE(10084)] = 417686, + [SMALL_STATE(10085)] = 417706, + [SMALL_STATE(10086)] = 417726, + [SMALL_STATE(10087)] = 417744, + [SMALL_STATE(10088)] = 417764, + [SMALL_STATE(10089)] = 417784, + [SMALL_STATE(10090)] = 417800, + [SMALL_STATE(10091)] = 417820, + [SMALL_STATE(10092)] = 417840, + [SMALL_STATE(10093)] = 417860, + [SMALL_STATE(10094)] = 417880, + [SMALL_STATE(10095)] = 417896, + [SMALL_STATE(10096)] = 417912, + [SMALL_STATE(10097)] = 417932, + [SMALL_STATE(10098)] = 417952, + [SMALL_STATE(10099)] = 417972, + [SMALL_STATE(10100)] = 417992, + [SMALL_STATE(10101)] = 418012, + [SMALL_STATE(10102)] = 418032, + [SMALL_STATE(10103)] = 418048, + [SMALL_STATE(10104)] = 418064, + [SMALL_STATE(10105)] = 418084, + [SMALL_STATE(10106)] = 418104, + [SMALL_STATE(10107)] = 418124, + [SMALL_STATE(10108)] = 418140, + [SMALL_STATE(10109)] = 418156, + [SMALL_STATE(10110)] = 418176, + [SMALL_STATE(10111)] = 418196, + [SMALL_STATE(10112)] = 418212, + [SMALL_STATE(10113)] = 418232, + [SMALL_STATE(10114)] = 418250, + [SMALL_STATE(10115)] = 418270, + [SMALL_STATE(10116)] = 418286, + [SMALL_STATE(10117)] = 418306, + [SMALL_STATE(10118)] = 418326, + [SMALL_STATE(10119)] = 418346, + [SMALL_STATE(10120)] = 418366, + [SMALL_STATE(10121)] = 418386, + [SMALL_STATE(10122)] = 418404, + [SMALL_STATE(10123)] = 418424, + [SMALL_STATE(10124)] = 418444, + [SMALL_STATE(10125)] = 418464, + [SMALL_STATE(10126)] = 418484, + [SMALL_STATE(10127)] = 418504, + [SMALL_STATE(10128)] = 418524, + [SMALL_STATE(10129)] = 418544, + [SMALL_STATE(10130)] = 418564, + [SMALL_STATE(10131)] = 418584, + [SMALL_STATE(10132)] = 418604, [SMALL_STATE(10133)] = 418620, [SMALL_STATE(10134)] = 418640, [SMALL_STATE(10135)] = 418660, @@ -703716,19 +703738,19 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(10143)] = 418820, [SMALL_STATE(10144)] = 418840, [SMALL_STATE(10145)] = 418860, - [SMALL_STATE(10146)] = 418876, - [SMALL_STATE(10147)] = 418896, - [SMALL_STATE(10148)] = 418916, - [SMALL_STATE(10149)] = 418936, - [SMALL_STATE(10150)] = 418956, - [SMALL_STATE(10151)] = 418976, - [SMALL_STATE(10152)] = 418996, - [SMALL_STATE(10153)] = 419016, - [SMALL_STATE(10154)] = 419036, - [SMALL_STATE(10155)] = 419056, - [SMALL_STATE(10156)] = 419076, - [SMALL_STATE(10157)] = 419096, - [SMALL_STATE(10158)] = 419116, + [SMALL_STATE(10146)] = 418880, + [SMALL_STATE(10147)] = 418900, + [SMALL_STATE(10148)] = 418920, + [SMALL_STATE(10149)] = 418940, + [SMALL_STATE(10150)] = 418960, + [SMALL_STATE(10151)] = 418980, + [SMALL_STATE(10152)] = 419000, + [SMALL_STATE(10153)] = 419020, + [SMALL_STATE(10154)] = 419040, + [SMALL_STATE(10155)] = 419060, + [SMALL_STATE(10156)] = 419080, + [SMALL_STATE(10157)] = 419100, + [SMALL_STATE(10158)] = 419120, [SMALL_STATE(10159)] = 419136, [SMALL_STATE(10160)] = 419156, [SMALL_STATE(10161)] = 419176, @@ -703740,33 +703762,33 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(10167)] = 419296, [SMALL_STATE(10168)] = 419316, [SMALL_STATE(10169)] = 419336, - [SMALL_STATE(10170)] = 419352, - [SMALL_STATE(10171)] = 419372, - [SMALL_STATE(10172)] = 419392, - [SMALL_STATE(10173)] = 419408, - [SMALL_STATE(10174)] = 419428, - [SMALL_STATE(10175)] = 419444, - [SMALL_STATE(10176)] = 419460, - [SMALL_STATE(10177)] = 419476, - [SMALL_STATE(10178)] = 419492, - [SMALL_STATE(10179)] = 419508, - [SMALL_STATE(10180)] = 419524, - [SMALL_STATE(10181)] = 419544, - [SMALL_STATE(10182)] = 419560, - [SMALL_STATE(10183)] = 419576, - [SMALL_STATE(10184)] = 419592, - [SMALL_STATE(10185)] = 419612, - [SMALL_STATE(10186)] = 419632, - [SMALL_STATE(10187)] = 419652, - [SMALL_STATE(10188)] = 419672, - [SMALL_STATE(10189)] = 419692, - [SMALL_STATE(10190)] = 419712, - [SMALL_STATE(10191)] = 419732, - [SMALL_STATE(10192)] = 419752, - [SMALL_STATE(10193)] = 419772, - [SMALL_STATE(10194)] = 419792, - [SMALL_STATE(10195)] = 419812, - [SMALL_STATE(10196)] = 419832, + [SMALL_STATE(10170)] = 419356, + [SMALL_STATE(10171)] = 419376, + [SMALL_STATE(10172)] = 419396, + [SMALL_STATE(10173)] = 419416, + [SMALL_STATE(10174)] = 419436, + [SMALL_STATE(10175)] = 419456, + [SMALL_STATE(10176)] = 419476, + [SMALL_STATE(10177)] = 419496, + [SMALL_STATE(10178)] = 419516, + [SMALL_STATE(10179)] = 419536, + [SMALL_STATE(10180)] = 419556, + [SMALL_STATE(10181)] = 419576, + [SMALL_STATE(10182)] = 419596, + [SMALL_STATE(10183)] = 419612, + [SMALL_STATE(10184)] = 419632, + [SMALL_STATE(10185)] = 419652, + [SMALL_STATE(10186)] = 419668, + [SMALL_STATE(10187)] = 419688, + [SMALL_STATE(10188)] = 419704, + [SMALL_STATE(10189)] = 419720, + [SMALL_STATE(10190)] = 419736, + [SMALL_STATE(10191)] = 419752, + [SMALL_STATE(10192)] = 419768, + [SMALL_STATE(10193)] = 419784, + [SMALL_STATE(10194)] = 419804, + [SMALL_STATE(10195)] = 419820, + [SMALL_STATE(10196)] = 419836, [SMALL_STATE(10197)] = 419852, [SMALL_STATE(10198)] = 419872, [SMALL_STATE(10199)] = 419892, @@ -703775,50 +703797,50 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(10202)] = 419952, [SMALL_STATE(10203)] = 419972, [SMALL_STATE(10204)] = 419992, - [SMALL_STATE(10205)] = 420010, - [SMALL_STATE(10206)] = 420030, - [SMALL_STATE(10207)] = 420050, - [SMALL_STATE(10208)] = 420070, - [SMALL_STATE(10209)] = 420088, - [SMALL_STATE(10210)] = 420106, - [SMALL_STATE(10211)] = 420126, - [SMALL_STATE(10212)] = 420146, - [SMALL_STATE(10213)] = 420166, - [SMALL_STATE(10214)] = 420186, - [SMALL_STATE(10215)] = 420206, - [SMALL_STATE(10216)] = 420226, - [SMALL_STATE(10217)] = 420244, - [SMALL_STATE(10218)] = 420264, - [SMALL_STATE(10219)] = 420280, - [SMALL_STATE(10220)] = 420300, - [SMALL_STATE(10221)] = 420320, - [SMALL_STATE(10222)] = 420340, - [SMALL_STATE(10223)] = 420360, - [SMALL_STATE(10224)] = 420380, - [SMALL_STATE(10225)] = 420400, - [SMALL_STATE(10226)] = 420420, - [SMALL_STATE(10227)] = 420440, - [SMALL_STATE(10228)] = 420460, - [SMALL_STATE(10229)] = 420480, - [SMALL_STATE(10230)] = 420500, - [SMALL_STATE(10231)] = 420520, + [SMALL_STATE(10205)] = 420012, + [SMALL_STATE(10206)] = 420032, + [SMALL_STATE(10207)] = 420052, + [SMALL_STATE(10208)] = 420072, + [SMALL_STATE(10209)] = 420092, + [SMALL_STATE(10210)] = 420112, + [SMALL_STATE(10211)] = 420132, + [SMALL_STATE(10212)] = 420152, + [SMALL_STATE(10213)] = 420172, + [SMALL_STATE(10214)] = 420192, + [SMALL_STATE(10215)] = 420212, + [SMALL_STATE(10216)] = 420232, + [SMALL_STATE(10217)] = 420252, + [SMALL_STATE(10218)] = 420270, + [SMALL_STATE(10219)] = 420290, + [SMALL_STATE(10220)] = 420310, + [SMALL_STATE(10221)] = 420330, + [SMALL_STATE(10222)] = 420348, + [SMALL_STATE(10223)] = 420366, + [SMALL_STATE(10224)] = 420386, + [SMALL_STATE(10225)] = 420406, + [SMALL_STATE(10226)] = 420426, + [SMALL_STATE(10227)] = 420446, + [SMALL_STATE(10228)] = 420466, + [SMALL_STATE(10229)] = 420486, + [SMALL_STATE(10230)] = 420504, + [SMALL_STATE(10231)] = 420524, [SMALL_STATE(10232)] = 420540, [SMALL_STATE(10233)] = 420560, [SMALL_STATE(10234)] = 420580, [SMALL_STATE(10235)] = 420600, - [SMALL_STATE(10236)] = 420616, - [SMALL_STATE(10237)] = 420636, - [SMALL_STATE(10238)] = 420656, - [SMALL_STATE(10239)] = 420676, - [SMALL_STATE(10240)] = 420696, - [SMALL_STATE(10241)] = 420716, - [SMALL_STATE(10242)] = 420736, - [SMALL_STATE(10243)] = 420756, - [SMALL_STATE(10244)] = 420776, - [SMALL_STATE(10245)] = 420796, - [SMALL_STATE(10246)] = 420816, - [SMALL_STATE(10247)] = 420836, - [SMALL_STATE(10248)] = 420856, + [SMALL_STATE(10236)] = 420620, + [SMALL_STATE(10237)] = 420640, + [SMALL_STATE(10238)] = 420660, + [SMALL_STATE(10239)] = 420680, + [SMALL_STATE(10240)] = 420700, + [SMALL_STATE(10241)] = 420720, + [SMALL_STATE(10242)] = 420740, + [SMALL_STATE(10243)] = 420760, + [SMALL_STATE(10244)] = 420780, + [SMALL_STATE(10245)] = 420800, + [SMALL_STATE(10246)] = 420820, + [SMALL_STATE(10247)] = 420840, + [SMALL_STATE(10248)] = 420860, [SMALL_STATE(10249)] = 420876, [SMALL_STATE(10250)] = 420896, [SMALL_STATE(10251)] = 420916, @@ -703858,30 +703880,30 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(10285)] = 421596, [SMALL_STATE(10286)] = 421616, [SMALL_STATE(10287)] = 421636, - [SMALL_STATE(10288)] = 421652, - [SMALL_STATE(10289)] = 421672, - [SMALL_STATE(10290)] = 421692, - [SMALL_STATE(10291)] = 421712, - [SMALL_STATE(10292)] = 421732, - [SMALL_STATE(10293)] = 421752, - [SMALL_STATE(10294)] = 421772, - [SMALL_STATE(10295)] = 421792, - [SMALL_STATE(10296)] = 421812, - [SMALL_STATE(10297)] = 421832, - [SMALL_STATE(10298)] = 421852, - [SMALL_STATE(10299)] = 421868, - [SMALL_STATE(10300)] = 421888, - [SMALL_STATE(10301)] = 421908, - [SMALL_STATE(10302)] = 421928, - [SMALL_STATE(10303)] = 421948, - [SMALL_STATE(10304)] = 421968, - [SMALL_STATE(10305)] = 421988, - [SMALL_STATE(10306)] = 422008, - [SMALL_STATE(10307)] = 422028, - [SMALL_STATE(10308)] = 422048, - [SMALL_STATE(10309)] = 422068, - [SMALL_STATE(10310)] = 422088, - [SMALL_STATE(10311)] = 422108, + [SMALL_STATE(10288)] = 421656, + [SMALL_STATE(10289)] = 421676, + [SMALL_STATE(10290)] = 421696, + [SMALL_STATE(10291)] = 421716, + [SMALL_STATE(10292)] = 421736, + [SMALL_STATE(10293)] = 421756, + [SMALL_STATE(10294)] = 421776, + [SMALL_STATE(10295)] = 421796, + [SMALL_STATE(10296)] = 421816, + [SMALL_STATE(10297)] = 421836, + [SMALL_STATE(10298)] = 421856, + [SMALL_STATE(10299)] = 421876, + [SMALL_STATE(10300)] = 421896, + [SMALL_STATE(10301)] = 421912, + [SMALL_STATE(10302)] = 421932, + [SMALL_STATE(10303)] = 421952, + [SMALL_STATE(10304)] = 421972, + [SMALL_STATE(10305)] = 421992, + [SMALL_STATE(10306)] = 422012, + [SMALL_STATE(10307)] = 422032, + [SMALL_STATE(10308)] = 422052, + [SMALL_STATE(10309)] = 422072, + [SMALL_STATE(10310)] = 422092, + [SMALL_STATE(10311)] = 422112, [SMALL_STATE(10312)] = 422128, [SMALL_STATE(10313)] = 422148, [SMALL_STATE(10314)] = 422168, @@ -703889,19 +703911,19 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(10316)] = 422208, [SMALL_STATE(10317)] = 422228, [SMALL_STATE(10318)] = 422248, - [SMALL_STATE(10319)] = 422266, - [SMALL_STATE(10320)] = 422286, - [SMALL_STATE(10321)] = 422306, - [SMALL_STATE(10322)] = 422326, - [SMALL_STATE(10323)] = 422346, - [SMALL_STATE(10324)] = 422366, - [SMALL_STATE(10325)] = 422386, - [SMALL_STATE(10326)] = 422406, - [SMALL_STATE(10327)] = 422426, - [SMALL_STATE(10328)] = 422446, - [SMALL_STATE(10329)] = 422466, - [SMALL_STATE(10330)] = 422486, - [SMALL_STATE(10331)] = 422506, + [SMALL_STATE(10319)] = 422268, + [SMALL_STATE(10320)] = 422288, + [SMALL_STATE(10321)] = 422308, + [SMALL_STATE(10322)] = 422328, + [SMALL_STATE(10323)] = 422348, + [SMALL_STATE(10324)] = 422368, + [SMALL_STATE(10325)] = 422388, + [SMALL_STATE(10326)] = 422408, + [SMALL_STATE(10327)] = 422428, + [SMALL_STATE(10328)] = 422448, + [SMALL_STATE(10329)] = 422468, + [SMALL_STATE(10330)] = 422488, + [SMALL_STATE(10331)] = 422508, [SMALL_STATE(10332)] = 422526, [SMALL_STATE(10333)] = 422546, [SMALL_STATE(10334)] = 422566, @@ -703917,1642 +703939,1642 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(10344)] = 422766, [SMALL_STATE(10345)] = 422786, [SMALL_STATE(10346)] = 422806, - [SMALL_STATE(10347)] = 422824, - [SMALL_STATE(10348)] = 422844, - [SMALL_STATE(10349)] = 422864, - [SMALL_STATE(10350)] = 422884, - [SMALL_STATE(10351)] = 422904, - [SMALL_STATE(10352)] = 422924, - [SMALL_STATE(10353)] = 422940, - [SMALL_STATE(10354)] = 422960, - [SMALL_STATE(10355)] = 422980, - [SMALL_STATE(10356)] = 423000, - [SMALL_STATE(10357)] = 423020, - [SMALL_STATE(10358)] = 423040, - [SMALL_STATE(10359)] = 423060, - [SMALL_STATE(10360)] = 423080, - [SMALL_STATE(10361)] = 423100, - [SMALL_STATE(10362)] = 423115, - [SMALL_STATE(10363)] = 423130, - [SMALL_STATE(10364)] = 423147, - [SMALL_STATE(10365)] = 423162, - [SMALL_STATE(10366)] = 423177, - [SMALL_STATE(10367)] = 423194, - [SMALL_STATE(10368)] = 423209, - [SMALL_STATE(10369)] = 423226, - [SMALL_STATE(10370)] = 423243, - [SMALL_STATE(10371)] = 423260, - [SMALL_STATE(10372)] = 423277, - [SMALL_STATE(10373)] = 423292, - [SMALL_STATE(10374)] = 423309, - [SMALL_STATE(10375)] = 423326, - [SMALL_STATE(10376)] = 423343, - [SMALL_STATE(10377)] = 423360, - [SMALL_STATE(10378)] = 423377, - [SMALL_STATE(10379)] = 423394, - [SMALL_STATE(10380)] = 423411, - [SMALL_STATE(10381)] = 423428, - [SMALL_STATE(10382)] = 423445, - [SMALL_STATE(10383)] = 423462, - [SMALL_STATE(10384)] = 423479, - [SMALL_STATE(10385)] = 423496, - [SMALL_STATE(10386)] = 423513, - [SMALL_STATE(10387)] = 423530, - [SMALL_STATE(10388)] = 423547, - [SMALL_STATE(10389)] = 423564, - [SMALL_STATE(10390)] = 423581, - [SMALL_STATE(10391)] = 423600, - [SMALL_STATE(10392)] = 423617, - [SMALL_STATE(10393)] = 423634, - [SMALL_STATE(10394)] = 423651, - [SMALL_STATE(10395)] = 423668, - [SMALL_STATE(10396)] = 423685, - [SMALL_STATE(10397)] = 423702, - [SMALL_STATE(10398)] = 423719, - [SMALL_STATE(10399)] = 423736, - [SMALL_STATE(10400)] = 423755, - [SMALL_STATE(10401)] = 423772, - [SMALL_STATE(10402)] = 423787, - [SMALL_STATE(10403)] = 423804, - [SMALL_STATE(10404)] = 423821, - [SMALL_STATE(10405)] = 423836, - [SMALL_STATE(10406)] = 423853, - [SMALL_STATE(10407)] = 423868, - [SMALL_STATE(10408)] = 423885, - [SMALL_STATE(10409)] = 423900, - [SMALL_STATE(10410)] = 423919, - [SMALL_STATE(10411)] = 423936, - [SMALL_STATE(10412)] = 423951, - [SMALL_STATE(10413)] = 423966, - [SMALL_STATE(10414)] = 423981, - [SMALL_STATE(10415)] = 423996, - [SMALL_STATE(10416)] = 424013, - [SMALL_STATE(10417)] = 424030, - [SMALL_STATE(10418)] = 424047, - [SMALL_STATE(10419)] = 424064, - [SMALL_STATE(10420)] = 424081, - [SMALL_STATE(10421)] = 424096, - [SMALL_STATE(10422)] = 424113, - [SMALL_STATE(10423)] = 424128, - [SMALL_STATE(10424)] = 424147, - [SMALL_STATE(10425)] = 424166, - [SMALL_STATE(10426)] = 424181, - [SMALL_STATE(10427)] = 424198, - [SMALL_STATE(10428)] = 424213, - [SMALL_STATE(10429)] = 424230, - [SMALL_STATE(10430)] = 424245, - [SMALL_STATE(10431)] = 424262, - [SMALL_STATE(10432)] = 424279, - [SMALL_STATE(10433)] = 424296, - [SMALL_STATE(10434)] = 424313, - [SMALL_STATE(10435)] = 424330, - [SMALL_STATE(10436)] = 424345, - [SMALL_STATE(10437)] = 424360, - [SMALL_STATE(10438)] = 424377, - [SMALL_STATE(10439)] = 424394, - [SMALL_STATE(10440)] = 424411, - [SMALL_STATE(10441)] = 424428, - [SMALL_STATE(10442)] = 424445, - [SMALL_STATE(10443)] = 424462, - [SMALL_STATE(10444)] = 424477, - [SMALL_STATE(10445)] = 424492, - [SMALL_STATE(10446)] = 424511, - [SMALL_STATE(10447)] = 424528, - [SMALL_STATE(10448)] = 424545, - [SMALL_STATE(10449)] = 424562, - [SMALL_STATE(10450)] = 424579, - [SMALL_STATE(10451)] = 424598, - [SMALL_STATE(10452)] = 424615, - [SMALL_STATE(10453)] = 424632, - [SMALL_STATE(10454)] = 424647, - [SMALL_STATE(10455)] = 424666, - [SMALL_STATE(10456)] = 424683, - [SMALL_STATE(10457)] = 424698, - [SMALL_STATE(10458)] = 424715, - [SMALL_STATE(10459)] = 424732, - [SMALL_STATE(10460)] = 424747, - [SMALL_STATE(10461)] = 424764, - [SMALL_STATE(10462)] = 424781, - [SMALL_STATE(10463)] = 424798, - [SMALL_STATE(10464)] = 424813, - [SMALL_STATE(10465)] = 424828, - [SMALL_STATE(10466)] = 424845, - [SMALL_STATE(10467)] = 424860, - [SMALL_STATE(10468)] = 424879, - [SMALL_STATE(10469)] = 424896, - [SMALL_STATE(10470)] = 424915, - [SMALL_STATE(10471)] = 424932, - [SMALL_STATE(10472)] = 424951, - [SMALL_STATE(10473)] = 424968, - [SMALL_STATE(10474)] = 424985, - [SMALL_STATE(10475)] = 425002, - [SMALL_STATE(10476)] = 425019, - [SMALL_STATE(10477)] = 425036, - [SMALL_STATE(10478)] = 425051, - [SMALL_STATE(10479)] = 425068, - [SMALL_STATE(10480)] = 425083, - [SMALL_STATE(10481)] = 425098, - [SMALL_STATE(10482)] = 425115, - [SMALL_STATE(10483)] = 425132, - [SMALL_STATE(10484)] = 425149, - [SMALL_STATE(10485)] = 425166, - [SMALL_STATE(10486)] = 425181, - [SMALL_STATE(10487)] = 425200, - [SMALL_STATE(10488)] = 425217, - [SMALL_STATE(10489)] = 425234, - [SMALL_STATE(10490)] = 425251, - [SMALL_STATE(10491)] = 425268, - [SMALL_STATE(10492)] = 425287, - [SMALL_STATE(10493)] = 425304, - [SMALL_STATE(10494)] = 425321, - [SMALL_STATE(10495)] = 425338, - [SMALL_STATE(10496)] = 425355, - [SMALL_STATE(10497)] = 425372, - [SMALL_STATE(10498)] = 425389, - [SMALL_STATE(10499)] = 425404, - [SMALL_STATE(10500)] = 425419, - [SMALL_STATE(10501)] = 425436, - [SMALL_STATE(10502)] = 425453, - [SMALL_STATE(10503)] = 425472, - [SMALL_STATE(10504)] = 425489, - [SMALL_STATE(10505)] = 425506, - [SMALL_STATE(10506)] = 425523, - [SMALL_STATE(10507)] = 425540, - [SMALL_STATE(10508)] = 425554, - [SMALL_STATE(10509)] = 425568, - [SMALL_STATE(10510)] = 425582, - [SMALL_STATE(10511)] = 425596, - [SMALL_STATE(10512)] = 425610, - [SMALL_STATE(10513)] = 425624, - [SMALL_STATE(10514)] = 425638, - [SMALL_STATE(10515)] = 425652, - [SMALL_STATE(10516)] = 425666, - [SMALL_STATE(10517)] = 425680, - [SMALL_STATE(10518)] = 425694, - [SMALL_STATE(10519)] = 425710, - [SMALL_STATE(10520)] = 425724, - [SMALL_STATE(10521)] = 425738, - [SMALL_STATE(10522)] = 425752, - [SMALL_STATE(10523)] = 425766, - [SMALL_STATE(10524)] = 425780, - [SMALL_STATE(10525)] = 425794, - [SMALL_STATE(10526)] = 425808, - [SMALL_STATE(10527)] = 425822, - [SMALL_STATE(10528)] = 425836, - [SMALL_STATE(10529)] = 425850, - [SMALL_STATE(10530)] = 425864, - [SMALL_STATE(10531)] = 425878, - [SMALL_STATE(10532)] = 425892, - [SMALL_STATE(10533)] = 425906, - [SMALL_STATE(10534)] = 425920, - [SMALL_STATE(10535)] = 425934, - [SMALL_STATE(10536)] = 425948, - [SMALL_STATE(10537)] = 425962, - [SMALL_STATE(10538)] = 425976, - [SMALL_STATE(10539)] = 425990, - [SMALL_STATE(10540)] = 426004, - [SMALL_STATE(10541)] = 426018, - [SMALL_STATE(10542)] = 426032, - [SMALL_STATE(10543)] = 426046, - [SMALL_STATE(10544)] = 426060, - [SMALL_STATE(10545)] = 426074, - [SMALL_STATE(10546)] = 426088, - [SMALL_STATE(10547)] = 426102, - [SMALL_STATE(10548)] = 426116, - [SMALL_STATE(10549)] = 426130, - [SMALL_STATE(10550)] = 426144, - [SMALL_STATE(10551)] = 426158, - [SMALL_STATE(10552)] = 426172, - [SMALL_STATE(10553)] = 426186, - [SMALL_STATE(10554)] = 426200, - [SMALL_STATE(10555)] = 426214, - [SMALL_STATE(10556)] = 426228, - [SMALL_STATE(10557)] = 426242, - [SMALL_STATE(10558)] = 426256, - [SMALL_STATE(10559)] = 426270, - [SMALL_STATE(10560)] = 426284, - [SMALL_STATE(10561)] = 426298, - [SMALL_STATE(10562)] = 426312, - [SMALL_STATE(10563)] = 426326, - [SMALL_STATE(10564)] = 426340, - [SMALL_STATE(10565)] = 426354, - [SMALL_STATE(10566)] = 426368, - [SMALL_STATE(10567)] = 426382, - [SMALL_STATE(10568)] = 426396, - [SMALL_STATE(10569)] = 426410, - [SMALL_STATE(10570)] = 426424, - [SMALL_STATE(10571)] = 426438, - [SMALL_STATE(10572)] = 426452, - [SMALL_STATE(10573)] = 426466, - [SMALL_STATE(10574)] = 426480, - [SMALL_STATE(10575)] = 426494, - [SMALL_STATE(10576)] = 426508, - [SMALL_STATE(10577)] = 426522, - [SMALL_STATE(10578)] = 426536, - [SMALL_STATE(10579)] = 426550, - [SMALL_STATE(10580)] = 426564, - [SMALL_STATE(10581)] = 426578, - [SMALL_STATE(10582)] = 426592, - [SMALL_STATE(10583)] = 426606, - [SMALL_STATE(10584)] = 426620, - [SMALL_STATE(10585)] = 426634, - [SMALL_STATE(10586)] = 426648, - [SMALL_STATE(10587)] = 426662, - [SMALL_STATE(10588)] = 426676, - [SMALL_STATE(10589)] = 426690, - [SMALL_STATE(10590)] = 426704, - [SMALL_STATE(10591)] = 426718, - [SMALL_STATE(10592)] = 426732, - [SMALL_STATE(10593)] = 426746, - [SMALL_STATE(10594)] = 426760, - [SMALL_STATE(10595)] = 426774, - [SMALL_STATE(10596)] = 426788, - [SMALL_STATE(10597)] = 426802, - [SMALL_STATE(10598)] = 426816, - [SMALL_STATE(10599)] = 426830, - [SMALL_STATE(10600)] = 426844, - [SMALL_STATE(10601)] = 426858, - [SMALL_STATE(10602)] = 426872, - [SMALL_STATE(10603)] = 426886, - [SMALL_STATE(10604)] = 426900, - [SMALL_STATE(10605)] = 426914, - [SMALL_STATE(10606)] = 426928, - [SMALL_STATE(10607)] = 426942, - [SMALL_STATE(10608)] = 426956, - [SMALL_STATE(10609)] = 426970, - [SMALL_STATE(10610)] = 426984, - [SMALL_STATE(10611)] = 426998, - [SMALL_STATE(10612)] = 427012, - [SMALL_STATE(10613)] = 427026, - [SMALL_STATE(10614)] = 427042, - [SMALL_STATE(10615)] = 427056, - [SMALL_STATE(10616)] = 427070, - [SMALL_STATE(10617)] = 427084, - [SMALL_STATE(10618)] = 427098, - [SMALL_STATE(10619)] = 427112, - [SMALL_STATE(10620)] = 427126, - [SMALL_STATE(10621)] = 427140, - [SMALL_STATE(10622)] = 427154, - [SMALL_STATE(10623)] = 427168, - [SMALL_STATE(10624)] = 427182, - [SMALL_STATE(10625)] = 427196, - [SMALL_STATE(10626)] = 427210, - [SMALL_STATE(10627)] = 427224, - [SMALL_STATE(10628)] = 427238, - [SMALL_STATE(10629)] = 427252, - [SMALL_STATE(10630)] = 427266, - [SMALL_STATE(10631)] = 427280, - [SMALL_STATE(10632)] = 427294, - [SMALL_STATE(10633)] = 427308, - [SMALL_STATE(10634)] = 427322, - [SMALL_STATE(10635)] = 427336, - [SMALL_STATE(10636)] = 427350, - [SMALL_STATE(10637)] = 427364, - [SMALL_STATE(10638)] = 427380, - [SMALL_STATE(10639)] = 427394, - [SMALL_STATE(10640)] = 427408, - [SMALL_STATE(10641)] = 427422, - [SMALL_STATE(10642)] = 427436, - [SMALL_STATE(10643)] = 427450, - [SMALL_STATE(10644)] = 427464, - [SMALL_STATE(10645)] = 427478, - [SMALL_STATE(10646)] = 427492, - [SMALL_STATE(10647)] = 427506, - [SMALL_STATE(10648)] = 427520, - [SMALL_STATE(10649)] = 427534, - [SMALL_STATE(10650)] = 427548, - [SMALL_STATE(10651)] = 427562, - [SMALL_STATE(10652)] = 427576, - [SMALL_STATE(10653)] = 427590, - [SMALL_STATE(10654)] = 427604, - [SMALL_STATE(10655)] = 427618, - [SMALL_STATE(10656)] = 427632, - [SMALL_STATE(10657)] = 427646, - [SMALL_STATE(10658)] = 427660, - [SMALL_STATE(10659)] = 427674, - [SMALL_STATE(10660)] = 427688, - [SMALL_STATE(10661)] = 427702, - [SMALL_STATE(10662)] = 427716, - [SMALL_STATE(10663)] = 427730, - [SMALL_STATE(10664)] = 427744, - [SMALL_STATE(10665)] = 427758, - [SMALL_STATE(10666)] = 427772, - [SMALL_STATE(10667)] = 427786, - [SMALL_STATE(10668)] = 427800, - [SMALL_STATE(10669)] = 427814, - [SMALL_STATE(10670)] = 427828, - [SMALL_STATE(10671)] = 427842, - [SMALL_STATE(10672)] = 427856, - [SMALL_STATE(10673)] = 427870, - [SMALL_STATE(10674)] = 427884, - [SMALL_STATE(10675)] = 427898, - [SMALL_STATE(10676)] = 427912, - [SMALL_STATE(10677)] = 427926, - [SMALL_STATE(10678)] = 427940, - [SMALL_STATE(10679)] = 427954, - [SMALL_STATE(10680)] = 427968, - [SMALL_STATE(10681)] = 427982, - [SMALL_STATE(10682)] = 427996, - [SMALL_STATE(10683)] = 428010, - [SMALL_STATE(10684)] = 428024, - [SMALL_STATE(10685)] = 428038, - [SMALL_STATE(10686)] = 428052, - [SMALL_STATE(10687)] = 428066, - [SMALL_STATE(10688)] = 428080, - [SMALL_STATE(10689)] = 428094, - [SMALL_STATE(10690)] = 428108, - [SMALL_STATE(10691)] = 428122, - [SMALL_STATE(10692)] = 428136, - [SMALL_STATE(10693)] = 428150, - [SMALL_STATE(10694)] = 428166, - [SMALL_STATE(10695)] = 428180, - [SMALL_STATE(10696)] = 428194, - [SMALL_STATE(10697)] = 428208, - [SMALL_STATE(10698)] = 428222, - [SMALL_STATE(10699)] = 428236, - [SMALL_STATE(10700)] = 428250, - [SMALL_STATE(10701)] = 428264, - [SMALL_STATE(10702)] = 428278, - [SMALL_STATE(10703)] = 428292, - [SMALL_STATE(10704)] = 428306, - [SMALL_STATE(10705)] = 428320, - [SMALL_STATE(10706)] = 428334, - [SMALL_STATE(10707)] = 428348, - [SMALL_STATE(10708)] = 428362, - [SMALL_STATE(10709)] = 428376, - [SMALL_STATE(10710)] = 428390, - [SMALL_STATE(10711)] = 428404, - [SMALL_STATE(10712)] = 428418, - [SMALL_STATE(10713)] = 428432, - [SMALL_STATE(10714)] = 428446, - [SMALL_STATE(10715)] = 428460, - [SMALL_STATE(10716)] = 428474, - [SMALL_STATE(10717)] = 428488, - [SMALL_STATE(10718)] = 428502, - [SMALL_STATE(10719)] = 428516, - [SMALL_STATE(10720)] = 428530, - [SMALL_STATE(10721)] = 428544, - [SMALL_STATE(10722)] = 428558, - [SMALL_STATE(10723)] = 428572, - [SMALL_STATE(10724)] = 428586, - [SMALL_STATE(10725)] = 428600, - [SMALL_STATE(10726)] = 428614, - [SMALL_STATE(10727)] = 428628, - [SMALL_STATE(10728)] = 428642, - [SMALL_STATE(10729)] = 428656, - [SMALL_STATE(10730)] = 428670, - [SMALL_STATE(10731)] = 428684, - [SMALL_STATE(10732)] = 428698, - [SMALL_STATE(10733)] = 428712, - [SMALL_STATE(10734)] = 428726, - [SMALL_STATE(10735)] = 428740, - [SMALL_STATE(10736)] = 428754, - [SMALL_STATE(10737)] = 428768, - [SMALL_STATE(10738)] = 428782, - [SMALL_STATE(10739)] = 428796, - [SMALL_STATE(10740)] = 428810, - [SMALL_STATE(10741)] = 428824, - [SMALL_STATE(10742)] = 428840, - [SMALL_STATE(10743)] = 428854, - [SMALL_STATE(10744)] = 428868, - [SMALL_STATE(10745)] = 428882, - [SMALL_STATE(10746)] = 428896, - [SMALL_STATE(10747)] = 428910, - [SMALL_STATE(10748)] = 428924, - [SMALL_STATE(10749)] = 428938, - [SMALL_STATE(10750)] = 428952, - [SMALL_STATE(10751)] = 428966, - [SMALL_STATE(10752)] = 428980, - [SMALL_STATE(10753)] = 428994, - [SMALL_STATE(10754)] = 429008, - [SMALL_STATE(10755)] = 429022, - [SMALL_STATE(10756)] = 429036, - [SMALL_STATE(10757)] = 429050, - [SMALL_STATE(10758)] = 429064, - [SMALL_STATE(10759)] = 429078, - [SMALL_STATE(10760)] = 429092, - [SMALL_STATE(10761)] = 429108, - [SMALL_STATE(10762)] = 429122, - [SMALL_STATE(10763)] = 429136, - [SMALL_STATE(10764)] = 429150, - [SMALL_STATE(10765)] = 429164, - [SMALL_STATE(10766)] = 429178, - [SMALL_STATE(10767)] = 429192, - [SMALL_STATE(10768)] = 429206, - [SMALL_STATE(10769)] = 429220, - [SMALL_STATE(10770)] = 429234, - [SMALL_STATE(10771)] = 429248, - [SMALL_STATE(10772)] = 429262, - [SMALL_STATE(10773)] = 429276, - [SMALL_STATE(10774)] = 429290, - [SMALL_STATE(10775)] = 429304, - [SMALL_STATE(10776)] = 429318, - [SMALL_STATE(10777)] = 429332, - [SMALL_STATE(10778)] = 429346, - [SMALL_STATE(10779)] = 429360, - [SMALL_STATE(10780)] = 429374, - [SMALL_STATE(10781)] = 429388, - [SMALL_STATE(10782)] = 429402, - [SMALL_STATE(10783)] = 429416, - [SMALL_STATE(10784)] = 429430, - [SMALL_STATE(10785)] = 429444, - [SMALL_STATE(10786)] = 429458, - [SMALL_STATE(10787)] = 429472, - [SMALL_STATE(10788)] = 429486, - [SMALL_STATE(10789)] = 429500, - [SMALL_STATE(10790)] = 429514, - [SMALL_STATE(10791)] = 429528, - [SMALL_STATE(10792)] = 429542, - [SMALL_STATE(10793)] = 429556, - [SMALL_STATE(10794)] = 429570, - [SMALL_STATE(10795)] = 429584, - [SMALL_STATE(10796)] = 429598, - [SMALL_STATE(10797)] = 429612, - [SMALL_STATE(10798)] = 429626, - [SMALL_STATE(10799)] = 429640, - [SMALL_STATE(10800)] = 429654, - [SMALL_STATE(10801)] = 429670, - [SMALL_STATE(10802)] = 429684, - [SMALL_STATE(10803)] = 429698, - [SMALL_STATE(10804)] = 429712, - [SMALL_STATE(10805)] = 429726, - [SMALL_STATE(10806)] = 429740, - [SMALL_STATE(10807)] = 429754, - [SMALL_STATE(10808)] = 429768, - [SMALL_STATE(10809)] = 429782, - [SMALL_STATE(10810)] = 429796, - [SMALL_STATE(10811)] = 429810, - [SMALL_STATE(10812)] = 429824, - [SMALL_STATE(10813)] = 429838, - [SMALL_STATE(10814)] = 429852, - [SMALL_STATE(10815)] = 429866, - [SMALL_STATE(10816)] = 429880, - [SMALL_STATE(10817)] = 429894, - [SMALL_STATE(10818)] = 429908, - [SMALL_STATE(10819)] = 429922, - [SMALL_STATE(10820)] = 429936, - [SMALL_STATE(10821)] = 429950, - [SMALL_STATE(10822)] = 429964, - [SMALL_STATE(10823)] = 429978, - [SMALL_STATE(10824)] = 429992, - [SMALL_STATE(10825)] = 430006, - [SMALL_STATE(10826)] = 430020, - [SMALL_STATE(10827)] = 430034, - [SMALL_STATE(10828)] = 430048, - [SMALL_STATE(10829)] = 430062, - [SMALL_STATE(10830)] = 430076, - [SMALL_STATE(10831)] = 430090, - [SMALL_STATE(10832)] = 430104, - [SMALL_STATE(10833)] = 430118, - [SMALL_STATE(10834)] = 430132, - [SMALL_STATE(10835)] = 430146, - [SMALL_STATE(10836)] = 430160, - [SMALL_STATE(10837)] = 430174, - [SMALL_STATE(10838)] = 430188, - [SMALL_STATE(10839)] = 430202, - [SMALL_STATE(10840)] = 430216, - [SMALL_STATE(10841)] = 430230, - [SMALL_STATE(10842)] = 430244, - [SMALL_STATE(10843)] = 430258, - [SMALL_STATE(10844)] = 430272, - [SMALL_STATE(10845)] = 430286, - [SMALL_STATE(10846)] = 430300, - [SMALL_STATE(10847)] = 430314, - [SMALL_STATE(10848)] = 430328, - [SMALL_STATE(10849)] = 430342, - [SMALL_STATE(10850)] = 430356, - [SMALL_STATE(10851)] = 430370, - [SMALL_STATE(10852)] = 430384, - [SMALL_STATE(10853)] = 430398, - [SMALL_STATE(10854)] = 430412, - [SMALL_STATE(10855)] = 430426, - [SMALL_STATE(10856)] = 430440, - [SMALL_STATE(10857)] = 430454, - [SMALL_STATE(10858)] = 430468, - [SMALL_STATE(10859)] = 430482, - [SMALL_STATE(10860)] = 430496, - [SMALL_STATE(10861)] = 430510, - [SMALL_STATE(10862)] = 430524, - [SMALL_STATE(10863)] = 430538, - [SMALL_STATE(10864)] = 430552, - [SMALL_STATE(10865)] = 430566, - [SMALL_STATE(10866)] = 430580, - [SMALL_STATE(10867)] = 430594, - [SMALL_STATE(10868)] = 430608, - [SMALL_STATE(10869)] = 430622, - [SMALL_STATE(10870)] = 430636, - [SMALL_STATE(10871)] = 430650, - [SMALL_STATE(10872)] = 430664, - [SMALL_STATE(10873)] = 430678, - [SMALL_STATE(10874)] = 430692, - [SMALL_STATE(10875)] = 430706, - [SMALL_STATE(10876)] = 430720, - [SMALL_STATE(10877)] = 430734, - [SMALL_STATE(10878)] = 430748, - [SMALL_STATE(10879)] = 430762, - [SMALL_STATE(10880)] = 430776, - [SMALL_STATE(10881)] = 430790, - [SMALL_STATE(10882)] = 430804, - [SMALL_STATE(10883)] = 430818, - [SMALL_STATE(10884)] = 430834, - [SMALL_STATE(10885)] = 430848, - [SMALL_STATE(10886)] = 430862, - [SMALL_STATE(10887)] = 430876, - [SMALL_STATE(10888)] = 430890, - [SMALL_STATE(10889)] = 430904, - [SMALL_STATE(10890)] = 430918, - [SMALL_STATE(10891)] = 430932, - [SMALL_STATE(10892)] = 430946, - [SMALL_STATE(10893)] = 430960, - [SMALL_STATE(10894)] = 430974, - [SMALL_STATE(10895)] = 430988, - [SMALL_STATE(10896)] = 431002, - [SMALL_STATE(10897)] = 431016, - [SMALL_STATE(10898)] = 431030, - [SMALL_STATE(10899)] = 431044, - [SMALL_STATE(10900)] = 431058, - [SMALL_STATE(10901)] = 431072, - [SMALL_STATE(10902)] = 431086, - [SMALL_STATE(10903)] = 431100, - [SMALL_STATE(10904)] = 431114, - [SMALL_STATE(10905)] = 431128, - [SMALL_STATE(10906)] = 431142, - [SMALL_STATE(10907)] = 431156, - [SMALL_STATE(10908)] = 431170, - [SMALL_STATE(10909)] = 431184, - [SMALL_STATE(10910)] = 431198, - [SMALL_STATE(10911)] = 431212, - [SMALL_STATE(10912)] = 431226, - [SMALL_STATE(10913)] = 431240, - [SMALL_STATE(10914)] = 431254, - [SMALL_STATE(10915)] = 431268, - [SMALL_STATE(10916)] = 431282, - [SMALL_STATE(10917)] = 431296, - [SMALL_STATE(10918)] = 431310, - [SMALL_STATE(10919)] = 431324, - [SMALL_STATE(10920)] = 431338, - [SMALL_STATE(10921)] = 431352, - [SMALL_STATE(10922)] = 431366, - [SMALL_STATE(10923)] = 431380, - [SMALL_STATE(10924)] = 431394, - [SMALL_STATE(10925)] = 431408, - [SMALL_STATE(10926)] = 431422, - [SMALL_STATE(10927)] = 431436, - [SMALL_STATE(10928)] = 431450, - [SMALL_STATE(10929)] = 431464, - [SMALL_STATE(10930)] = 431478, - [SMALL_STATE(10931)] = 431492, - [SMALL_STATE(10932)] = 431506, - [SMALL_STATE(10933)] = 431520, - [SMALL_STATE(10934)] = 431534, - [SMALL_STATE(10935)] = 431548, - [SMALL_STATE(10936)] = 431562, - [SMALL_STATE(10937)] = 431576, - [SMALL_STATE(10938)] = 431590, - [SMALL_STATE(10939)] = 431604, - [SMALL_STATE(10940)] = 431618, - [SMALL_STATE(10941)] = 431632, - [SMALL_STATE(10942)] = 431646, - [SMALL_STATE(10943)] = 431660, - [SMALL_STATE(10944)] = 431674, - [SMALL_STATE(10945)] = 431688, - [SMALL_STATE(10946)] = 431702, - [SMALL_STATE(10947)] = 431716, - [SMALL_STATE(10948)] = 431730, - [SMALL_STATE(10949)] = 431744, - [SMALL_STATE(10950)] = 431758, - [SMALL_STATE(10951)] = 431772, - [SMALL_STATE(10952)] = 431786, - [SMALL_STATE(10953)] = 431800, - [SMALL_STATE(10954)] = 431814, - [SMALL_STATE(10955)] = 431828, - [SMALL_STATE(10956)] = 431842, - [SMALL_STATE(10957)] = 431856, - [SMALL_STATE(10958)] = 431870, - [SMALL_STATE(10959)] = 431884, - [SMALL_STATE(10960)] = 431898, - [SMALL_STATE(10961)] = 431912, - [SMALL_STATE(10962)] = 431926, - [SMALL_STATE(10963)] = 431940, - [SMALL_STATE(10964)] = 431954, - [SMALL_STATE(10965)] = 431968, - [SMALL_STATE(10966)] = 431982, - [SMALL_STATE(10967)] = 431996, - [SMALL_STATE(10968)] = 432010, - [SMALL_STATE(10969)] = 432024, - [SMALL_STATE(10970)] = 432038, - [SMALL_STATE(10971)] = 432052, - [SMALL_STATE(10972)] = 432066, - [SMALL_STATE(10973)] = 432080, - [SMALL_STATE(10974)] = 432094, - [SMALL_STATE(10975)] = 432108, - [SMALL_STATE(10976)] = 432122, - [SMALL_STATE(10977)] = 432136, - [SMALL_STATE(10978)] = 432150, - [SMALL_STATE(10979)] = 432164, - [SMALL_STATE(10980)] = 432178, - [SMALL_STATE(10981)] = 432192, - [SMALL_STATE(10982)] = 432206, - [SMALL_STATE(10983)] = 432220, - [SMALL_STATE(10984)] = 432234, - [SMALL_STATE(10985)] = 432248, - [SMALL_STATE(10986)] = 432262, - [SMALL_STATE(10987)] = 432276, - [SMALL_STATE(10988)] = 432290, - [SMALL_STATE(10989)] = 432304, - [SMALL_STATE(10990)] = 432318, - [SMALL_STATE(10991)] = 432332, - [SMALL_STATE(10992)] = 432346, - [SMALL_STATE(10993)] = 432360, - [SMALL_STATE(10994)] = 432374, - [SMALL_STATE(10995)] = 432388, - [SMALL_STATE(10996)] = 432404, - [SMALL_STATE(10997)] = 432418, - [SMALL_STATE(10998)] = 432432, - [SMALL_STATE(10999)] = 432446, - [SMALL_STATE(11000)] = 432460, - [SMALL_STATE(11001)] = 432474, - [SMALL_STATE(11002)] = 432488, - [SMALL_STATE(11003)] = 432502, - [SMALL_STATE(11004)] = 432516, - [SMALL_STATE(11005)] = 432530, - [SMALL_STATE(11006)] = 432544, - [SMALL_STATE(11007)] = 432558, - [SMALL_STATE(11008)] = 432572, - [SMALL_STATE(11009)] = 432586, - [SMALL_STATE(11010)] = 432600, - [SMALL_STATE(11011)] = 432614, - [SMALL_STATE(11012)] = 432628, - [SMALL_STATE(11013)] = 432642, - [SMALL_STATE(11014)] = 432656, - [SMALL_STATE(11015)] = 432670, - [SMALL_STATE(11016)] = 432684, - [SMALL_STATE(11017)] = 432698, - [SMALL_STATE(11018)] = 432712, - [SMALL_STATE(11019)] = 432726, - [SMALL_STATE(11020)] = 432740, - [SMALL_STATE(11021)] = 432754, - [SMALL_STATE(11022)] = 432768, - [SMALL_STATE(11023)] = 432782, - [SMALL_STATE(11024)] = 432796, - [SMALL_STATE(11025)] = 432810, - [SMALL_STATE(11026)] = 432824, - [SMALL_STATE(11027)] = 432838, - [SMALL_STATE(11028)] = 432852, - [SMALL_STATE(11029)] = 432866, - [SMALL_STATE(11030)] = 432880, - [SMALL_STATE(11031)] = 432894, - [SMALL_STATE(11032)] = 432908, - [SMALL_STATE(11033)] = 432922, - [SMALL_STATE(11034)] = 432936, - [SMALL_STATE(11035)] = 432950, - [SMALL_STATE(11036)] = 432964, - [SMALL_STATE(11037)] = 432978, - [SMALL_STATE(11038)] = 432992, - [SMALL_STATE(11039)] = 433006, - [SMALL_STATE(11040)] = 433020, - [SMALL_STATE(11041)] = 433034, - [SMALL_STATE(11042)] = 433048, - [SMALL_STATE(11043)] = 433062, - [SMALL_STATE(11044)] = 433076, - [SMALL_STATE(11045)] = 433090, - [SMALL_STATE(11046)] = 433104, - [SMALL_STATE(11047)] = 433118, - [SMALL_STATE(11048)] = 433132, - [SMALL_STATE(11049)] = 433146, - [SMALL_STATE(11050)] = 433160, - [SMALL_STATE(11051)] = 433174, - [SMALL_STATE(11052)] = 433188, - [SMALL_STATE(11053)] = 433202, - [SMALL_STATE(11054)] = 433216, - [SMALL_STATE(11055)] = 433230, - [SMALL_STATE(11056)] = 433244, - [SMALL_STATE(11057)] = 433258, - [SMALL_STATE(11058)] = 433272, - [SMALL_STATE(11059)] = 433286, - [SMALL_STATE(11060)] = 433300, - [SMALL_STATE(11061)] = 433314, - [SMALL_STATE(11062)] = 433328, - [SMALL_STATE(11063)] = 433342, - [SMALL_STATE(11064)] = 433356, - [SMALL_STATE(11065)] = 433370, - [SMALL_STATE(11066)] = 433384, - [SMALL_STATE(11067)] = 433398, - [SMALL_STATE(11068)] = 433412, - [SMALL_STATE(11069)] = 433426, - [SMALL_STATE(11070)] = 433440, - [SMALL_STATE(11071)] = 433454, - [SMALL_STATE(11072)] = 433468, - [SMALL_STATE(11073)] = 433482, - [SMALL_STATE(11074)] = 433496, - [SMALL_STATE(11075)] = 433510, - [SMALL_STATE(11076)] = 433524, - [SMALL_STATE(11077)] = 433538, - [SMALL_STATE(11078)] = 433552, - [SMALL_STATE(11079)] = 433566, - [SMALL_STATE(11080)] = 433580, - [SMALL_STATE(11081)] = 433594, - [SMALL_STATE(11082)] = 433608, - [SMALL_STATE(11083)] = 433622, - [SMALL_STATE(11084)] = 433636, - [SMALL_STATE(11085)] = 433650, - [SMALL_STATE(11086)] = 433664, - [SMALL_STATE(11087)] = 433678, - [SMALL_STATE(11088)] = 433692, - [SMALL_STATE(11089)] = 433706, - [SMALL_STATE(11090)] = 433720, - [SMALL_STATE(11091)] = 433734, - [SMALL_STATE(11092)] = 433748, - [SMALL_STATE(11093)] = 433762, - [SMALL_STATE(11094)] = 433776, - [SMALL_STATE(11095)] = 433790, - [SMALL_STATE(11096)] = 433804, - [SMALL_STATE(11097)] = 433818, - [SMALL_STATE(11098)] = 433832, - [SMALL_STATE(11099)] = 433846, - [SMALL_STATE(11100)] = 433860, - [SMALL_STATE(11101)] = 433874, - [SMALL_STATE(11102)] = 433888, - [SMALL_STATE(11103)] = 433902, - [SMALL_STATE(11104)] = 433916, - [SMALL_STATE(11105)] = 433930, - [SMALL_STATE(11106)] = 433944, - [SMALL_STATE(11107)] = 433958, - [SMALL_STATE(11108)] = 433972, - [SMALL_STATE(11109)] = 433986, - [SMALL_STATE(11110)] = 434000, - [SMALL_STATE(11111)] = 434014, - [SMALL_STATE(11112)] = 434028, - [SMALL_STATE(11113)] = 434042, - [SMALL_STATE(11114)] = 434056, - [SMALL_STATE(11115)] = 434070, - [SMALL_STATE(11116)] = 434084, - [SMALL_STATE(11117)] = 434098, - [SMALL_STATE(11118)] = 434112, - [SMALL_STATE(11119)] = 434126, - [SMALL_STATE(11120)] = 434140, - [SMALL_STATE(11121)] = 434154, - [SMALL_STATE(11122)] = 434168, - [SMALL_STATE(11123)] = 434182, - [SMALL_STATE(11124)] = 434196, - [SMALL_STATE(11125)] = 434210, - [SMALL_STATE(11126)] = 434224, - [SMALL_STATE(11127)] = 434238, - [SMALL_STATE(11128)] = 434252, - [SMALL_STATE(11129)] = 434266, - [SMALL_STATE(11130)] = 434280, - [SMALL_STATE(11131)] = 434294, - [SMALL_STATE(11132)] = 434308, - [SMALL_STATE(11133)] = 434322, - [SMALL_STATE(11134)] = 434336, - [SMALL_STATE(11135)] = 434350, - [SMALL_STATE(11136)] = 434364, - [SMALL_STATE(11137)] = 434378, - [SMALL_STATE(11138)] = 434392, - [SMALL_STATE(11139)] = 434406, - [SMALL_STATE(11140)] = 434420, - [SMALL_STATE(11141)] = 434434, - [SMALL_STATE(11142)] = 434448, - [SMALL_STATE(11143)] = 434462, - [SMALL_STATE(11144)] = 434476, - [SMALL_STATE(11145)] = 434490, - [SMALL_STATE(11146)] = 434504, - [SMALL_STATE(11147)] = 434518, - [SMALL_STATE(11148)] = 434532, - [SMALL_STATE(11149)] = 434546, - [SMALL_STATE(11150)] = 434560, - [SMALL_STATE(11151)] = 434574, - [SMALL_STATE(11152)] = 434588, - [SMALL_STATE(11153)] = 434602, - [SMALL_STATE(11154)] = 434616, - [SMALL_STATE(11155)] = 434630, - [SMALL_STATE(11156)] = 434644, - [SMALL_STATE(11157)] = 434658, - [SMALL_STATE(11158)] = 434672, - [SMALL_STATE(11159)] = 434686, - [SMALL_STATE(11160)] = 434700, - [SMALL_STATE(11161)] = 434714, - [SMALL_STATE(11162)] = 434728, - [SMALL_STATE(11163)] = 434742, - [SMALL_STATE(11164)] = 434756, - [SMALL_STATE(11165)] = 434770, - [SMALL_STATE(11166)] = 434784, - [SMALL_STATE(11167)] = 434798, - [SMALL_STATE(11168)] = 434812, - [SMALL_STATE(11169)] = 434826, - [SMALL_STATE(11170)] = 434840, - [SMALL_STATE(11171)] = 434854, - [SMALL_STATE(11172)] = 434868, - [SMALL_STATE(11173)] = 434882, - [SMALL_STATE(11174)] = 434896, - [SMALL_STATE(11175)] = 434910, - [SMALL_STATE(11176)] = 434924, - [SMALL_STATE(11177)] = 434938, - [SMALL_STATE(11178)] = 434952, - [SMALL_STATE(11179)] = 434968, - [SMALL_STATE(11180)] = 434982, - [SMALL_STATE(11181)] = 434996, - [SMALL_STATE(11182)] = 435010, - [SMALL_STATE(11183)] = 435024, - [SMALL_STATE(11184)] = 435038, - [SMALL_STATE(11185)] = 435052, - [SMALL_STATE(11186)] = 435066, - [SMALL_STATE(11187)] = 435080, - [SMALL_STATE(11188)] = 435094, - [SMALL_STATE(11189)] = 435108, - [SMALL_STATE(11190)] = 435122, - [SMALL_STATE(11191)] = 435136, - [SMALL_STATE(11192)] = 435150, - [SMALL_STATE(11193)] = 435164, - [SMALL_STATE(11194)] = 435178, - [SMALL_STATE(11195)] = 435192, - [SMALL_STATE(11196)] = 435206, - [SMALL_STATE(11197)] = 435220, - [SMALL_STATE(11198)] = 435234, - [SMALL_STATE(11199)] = 435248, - [SMALL_STATE(11200)] = 435262, - [SMALL_STATE(11201)] = 435276, - [SMALL_STATE(11202)] = 435290, - [SMALL_STATE(11203)] = 435304, - [SMALL_STATE(11204)] = 435318, - [SMALL_STATE(11205)] = 435332, - [SMALL_STATE(11206)] = 435346, - [SMALL_STATE(11207)] = 435360, - [SMALL_STATE(11208)] = 435374, - [SMALL_STATE(11209)] = 435388, - [SMALL_STATE(11210)] = 435402, - [SMALL_STATE(11211)] = 435416, - [SMALL_STATE(11212)] = 435430, - [SMALL_STATE(11213)] = 435444, - [SMALL_STATE(11214)] = 435458, - [SMALL_STATE(11215)] = 435474, - [SMALL_STATE(11216)] = 435488, - [SMALL_STATE(11217)] = 435502, - [SMALL_STATE(11218)] = 435516, - [SMALL_STATE(11219)] = 435530, - [SMALL_STATE(11220)] = 435544, - [SMALL_STATE(11221)] = 435558, - [SMALL_STATE(11222)] = 435572, - [SMALL_STATE(11223)] = 435586, - [SMALL_STATE(11224)] = 435600, - [SMALL_STATE(11225)] = 435614, - [SMALL_STATE(11226)] = 435628, - [SMALL_STATE(11227)] = 435642, - [SMALL_STATE(11228)] = 435656, - [SMALL_STATE(11229)] = 435670, - [SMALL_STATE(11230)] = 435684, - [SMALL_STATE(11231)] = 435698, - [SMALL_STATE(11232)] = 435712, - [SMALL_STATE(11233)] = 435726, - [SMALL_STATE(11234)] = 435740, - [SMALL_STATE(11235)] = 435754, - [SMALL_STATE(11236)] = 435768, - [SMALL_STATE(11237)] = 435782, - [SMALL_STATE(11238)] = 435796, - [SMALL_STATE(11239)] = 435812, - [SMALL_STATE(11240)] = 435828, - [SMALL_STATE(11241)] = 435842, - [SMALL_STATE(11242)] = 435856, - [SMALL_STATE(11243)] = 435870, - [SMALL_STATE(11244)] = 435884, - [SMALL_STATE(11245)] = 435898, - [SMALL_STATE(11246)] = 435912, - [SMALL_STATE(11247)] = 435926, - [SMALL_STATE(11248)] = 435940, - [SMALL_STATE(11249)] = 435954, - [SMALL_STATE(11250)] = 435968, - [SMALL_STATE(11251)] = 435982, - [SMALL_STATE(11252)] = 435996, - [SMALL_STATE(11253)] = 436010, - [SMALL_STATE(11254)] = 436024, - [SMALL_STATE(11255)] = 436038, - [SMALL_STATE(11256)] = 436052, - [SMALL_STATE(11257)] = 436066, - [SMALL_STATE(11258)] = 436080, - [SMALL_STATE(11259)] = 436094, - [SMALL_STATE(11260)] = 436108, - [SMALL_STATE(11261)] = 436122, - [SMALL_STATE(11262)] = 436136, - [SMALL_STATE(11263)] = 436150, - [SMALL_STATE(11264)] = 436164, - [SMALL_STATE(11265)] = 436178, - [SMALL_STATE(11266)] = 436192, - [SMALL_STATE(11267)] = 436206, - [SMALL_STATE(11268)] = 436220, - [SMALL_STATE(11269)] = 436234, - [SMALL_STATE(11270)] = 436248, - [SMALL_STATE(11271)] = 436262, - [SMALL_STATE(11272)] = 436276, - [SMALL_STATE(11273)] = 436290, - [SMALL_STATE(11274)] = 436304, - [SMALL_STATE(11275)] = 436318, - [SMALL_STATE(11276)] = 436332, - [SMALL_STATE(11277)] = 436346, - [SMALL_STATE(11278)] = 436360, - [SMALL_STATE(11279)] = 436374, - [SMALL_STATE(11280)] = 436388, - [SMALL_STATE(11281)] = 436402, - [SMALL_STATE(11282)] = 436416, - [SMALL_STATE(11283)] = 436430, - [SMALL_STATE(11284)] = 436444, - [SMALL_STATE(11285)] = 436458, - [SMALL_STATE(11286)] = 436472, - [SMALL_STATE(11287)] = 436486, - [SMALL_STATE(11288)] = 436500, - [SMALL_STATE(11289)] = 436514, - [SMALL_STATE(11290)] = 436528, - [SMALL_STATE(11291)] = 436542, - [SMALL_STATE(11292)] = 436556, - [SMALL_STATE(11293)] = 436570, - [SMALL_STATE(11294)] = 436584, - [SMALL_STATE(11295)] = 436598, - [SMALL_STATE(11296)] = 436612, - [SMALL_STATE(11297)] = 436626, - [SMALL_STATE(11298)] = 436640, - [SMALL_STATE(11299)] = 436654, - [SMALL_STATE(11300)] = 436668, - [SMALL_STATE(11301)] = 436682, - [SMALL_STATE(11302)] = 436696, - [SMALL_STATE(11303)] = 436710, - [SMALL_STATE(11304)] = 436724, - [SMALL_STATE(11305)] = 436738, - [SMALL_STATE(11306)] = 436752, - [SMALL_STATE(11307)] = 436766, - [SMALL_STATE(11308)] = 436780, - [SMALL_STATE(11309)] = 436794, - [SMALL_STATE(11310)] = 436808, - [SMALL_STATE(11311)] = 436822, - [SMALL_STATE(11312)] = 436836, - [SMALL_STATE(11313)] = 436850, - [SMALL_STATE(11314)] = 436864, - [SMALL_STATE(11315)] = 436878, - [SMALL_STATE(11316)] = 436892, - [SMALL_STATE(11317)] = 436906, - [SMALL_STATE(11318)] = 436920, - [SMALL_STATE(11319)] = 436934, - [SMALL_STATE(11320)] = 436948, - [SMALL_STATE(11321)] = 436962, - [SMALL_STATE(11322)] = 436976, - [SMALL_STATE(11323)] = 436990, - [SMALL_STATE(11324)] = 437004, - [SMALL_STATE(11325)] = 437018, - [SMALL_STATE(11326)] = 437032, - [SMALL_STATE(11327)] = 437046, - [SMALL_STATE(11328)] = 437060, - [SMALL_STATE(11329)] = 437074, - [SMALL_STATE(11330)] = 437088, - [SMALL_STATE(11331)] = 437102, - [SMALL_STATE(11332)] = 437116, - [SMALL_STATE(11333)] = 437130, - [SMALL_STATE(11334)] = 437144, - [SMALL_STATE(11335)] = 437158, - [SMALL_STATE(11336)] = 437172, - [SMALL_STATE(11337)] = 437186, - [SMALL_STATE(11338)] = 437200, - [SMALL_STATE(11339)] = 437214, - [SMALL_STATE(11340)] = 437228, - [SMALL_STATE(11341)] = 437242, - [SMALL_STATE(11342)] = 437256, - [SMALL_STATE(11343)] = 437270, - [SMALL_STATE(11344)] = 437284, - [SMALL_STATE(11345)] = 437298, - [SMALL_STATE(11346)] = 437312, - [SMALL_STATE(11347)] = 437326, - [SMALL_STATE(11348)] = 437340, - [SMALL_STATE(11349)] = 437354, - [SMALL_STATE(11350)] = 437368, - [SMALL_STATE(11351)] = 437382, - [SMALL_STATE(11352)] = 437396, - [SMALL_STATE(11353)] = 437410, - [SMALL_STATE(11354)] = 437424, - [SMALL_STATE(11355)] = 437438, - [SMALL_STATE(11356)] = 437452, - [SMALL_STATE(11357)] = 437466, - [SMALL_STATE(11358)] = 437480, - [SMALL_STATE(11359)] = 437494, - [SMALL_STATE(11360)] = 437508, - [SMALL_STATE(11361)] = 437522, - [SMALL_STATE(11362)] = 437536, - [SMALL_STATE(11363)] = 437550, - [SMALL_STATE(11364)] = 437564, - [SMALL_STATE(11365)] = 437578, - [SMALL_STATE(11366)] = 437592, - [SMALL_STATE(11367)] = 437606, - [SMALL_STATE(11368)] = 437620, - [SMALL_STATE(11369)] = 437634, - [SMALL_STATE(11370)] = 437648, - [SMALL_STATE(11371)] = 437662, - [SMALL_STATE(11372)] = 437676, - [SMALL_STATE(11373)] = 437692, - [SMALL_STATE(11374)] = 437706, - [SMALL_STATE(11375)] = 437720, - [SMALL_STATE(11376)] = 437734, - [SMALL_STATE(11377)] = 437748, - [SMALL_STATE(11378)] = 437762, - [SMALL_STATE(11379)] = 437776, - [SMALL_STATE(11380)] = 437790, - [SMALL_STATE(11381)] = 437804, - [SMALL_STATE(11382)] = 437818, - [SMALL_STATE(11383)] = 437832, - [SMALL_STATE(11384)] = 437846, - [SMALL_STATE(11385)] = 437860, - [SMALL_STATE(11386)] = 437874, - [SMALL_STATE(11387)] = 437888, - [SMALL_STATE(11388)] = 437902, - [SMALL_STATE(11389)] = 437916, - [SMALL_STATE(11390)] = 437930, - [SMALL_STATE(11391)] = 437944, - [SMALL_STATE(11392)] = 437958, - [SMALL_STATE(11393)] = 437972, - [SMALL_STATE(11394)] = 437986, - [SMALL_STATE(11395)] = 438000, - [SMALL_STATE(11396)] = 438014, - [SMALL_STATE(11397)] = 438030, - [SMALL_STATE(11398)] = 438044, - [SMALL_STATE(11399)] = 438058, - [SMALL_STATE(11400)] = 438072, - [SMALL_STATE(11401)] = 438086, - [SMALL_STATE(11402)] = 438100, - [SMALL_STATE(11403)] = 438114, - [SMALL_STATE(11404)] = 438128, - [SMALL_STATE(11405)] = 438142, - [SMALL_STATE(11406)] = 438156, - [SMALL_STATE(11407)] = 438170, - [SMALL_STATE(11408)] = 438184, - [SMALL_STATE(11409)] = 438198, - [SMALL_STATE(11410)] = 438212, - [SMALL_STATE(11411)] = 438226, - [SMALL_STATE(11412)] = 438240, - [SMALL_STATE(11413)] = 438254, - [SMALL_STATE(11414)] = 438268, - [SMALL_STATE(11415)] = 438282, - [SMALL_STATE(11416)] = 438296, - [SMALL_STATE(11417)] = 438310, - [SMALL_STATE(11418)] = 438324, - [SMALL_STATE(11419)] = 438338, - [SMALL_STATE(11420)] = 438352, - [SMALL_STATE(11421)] = 438366, - [SMALL_STATE(11422)] = 438380, - [SMALL_STATE(11423)] = 438394, - [SMALL_STATE(11424)] = 438408, - [SMALL_STATE(11425)] = 438422, - [SMALL_STATE(11426)] = 438436, - [SMALL_STATE(11427)] = 438450, - [SMALL_STATE(11428)] = 438464, - [SMALL_STATE(11429)] = 438480, - [SMALL_STATE(11430)] = 438494, - [SMALL_STATE(11431)] = 438510, - [SMALL_STATE(11432)] = 438524, - [SMALL_STATE(11433)] = 438538, - [SMALL_STATE(11434)] = 438552, - [SMALL_STATE(11435)] = 438566, - [SMALL_STATE(11436)] = 438580, - [SMALL_STATE(11437)] = 438594, - [SMALL_STATE(11438)] = 438608, - [SMALL_STATE(11439)] = 438622, - [SMALL_STATE(11440)] = 438636, - [SMALL_STATE(11441)] = 438650, - [SMALL_STATE(11442)] = 438664, - [SMALL_STATE(11443)] = 438678, - [SMALL_STATE(11444)] = 438692, - [SMALL_STATE(11445)] = 438706, - [SMALL_STATE(11446)] = 438720, - [SMALL_STATE(11447)] = 438734, - [SMALL_STATE(11448)] = 438748, - [SMALL_STATE(11449)] = 438762, - [SMALL_STATE(11450)] = 438776, - [SMALL_STATE(11451)] = 438790, - [SMALL_STATE(11452)] = 438804, - [SMALL_STATE(11453)] = 438818, - [SMALL_STATE(11454)] = 438832, - [SMALL_STATE(11455)] = 438846, - [SMALL_STATE(11456)] = 438860, - [SMALL_STATE(11457)] = 438874, - [SMALL_STATE(11458)] = 438888, - [SMALL_STATE(11459)] = 438902, - [SMALL_STATE(11460)] = 438916, - [SMALL_STATE(11461)] = 438930, - [SMALL_STATE(11462)] = 438944, - [SMALL_STATE(11463)] = 438958, - [SMALL_STATE(11464)] = 438972, - [SMALL_STATE(11465)] = 438986, - [SMALL_STATE(11466)] = 439000, - [SMALL_STATE(11467)] = 439014, - [SMALL_STATE(11468)] = 439028, - [SMALL_STATE(11469)] = 439042, - [SMALL_STATE(11470)] = 439056, - [SMALL_STATE(11471)] = 439070, - [SMALL_STATE(11472)] = 439084, - [SMALL_STATE(11473)] = 439098, - [SMALL_STATE(11474)] = 439112, - [SMALL_STATE(11475)] = 439126, - [SMALL_STATE(11476)] = 439140, - [SMALL_STATE(11477)] = 439154, - [SMALL_STATE(11478)] = 439168, - [SMALL_STATE(11479)] = 439182, - [SMALL_STATE(11480)] = 439196, - [SMALL_STATE(11481)] = 439210, - [SMALL_STATE(11482)] = 439224, - [SMALL_STATE(11483)] = 439238, - [SMALL_STATE(11484)] = 439252, - [SMALL_STATE(11485)] = 439266, - [SMALL_STATE(11486)] = 439280, - [SMALL_STATE(11487)] = 439294, - [SMALL_STATE(11488)] = 439308, - [SMALL_STATE(11489)] = 439322, - [SMALL_STATE(11490)] = 439336, - [SMALL_STATE(11491)] = 439350, - [SMALL_STATE(11492)] = 439364, - [SMALL_STATE(11493)] = 439378, - [SMALL_STATE(11494)] = 439392, - [SMALL_STATE(11495)] = 439406, - [SMALL_STATE(11496)] = 439420, - [SMALL_STATE(11497)] = 439434, - [SMALL_STATE(11498)] = 439448, - [SMALL_STATE(11499)] = 439462, - [SMALL_STATE(11500)] = 439476, - [SMALL_STATE(11501)] = 439490, - [SMALL_STATE(11502)] = 439504, - [SMALL_STATE(11503)] = 439518, - [SMALL_STATE(11504)] = 439532, - [SMALL_STATE(11505)] = 439546, - [SMALL_STATE(11506)] = 439560, - [SMALL_STATE(11507)] = 439574, - [SMALL_STATE(11508)] = 439588, - [SMALL_STATE(11509)] = 439602, - [SMALL_STATE(11510)] = 439616, - [SMALL_STATE(11511)] = 439630, - [SMALL_STATE(11512)] = 439644, - [SMALL_STATE(11513)] = 439658, - [SMALL_STATE(11514)] = 439672, - [SMALL_STATE(11515)] = 439686, - [SMALL_STATE(11516)] = 439700, - [SMALL_STATE(11517)] = 439714, - [SMALL_STATE(11518)] = 439728, - [SMALL_STATE(11519)] = 439742, - [SMALL_STATE(11520)] = 439756, - [SMALL_STATE(11521)] = 439770, - [SMALL_STATE(11522)] = 439784, - [SMALL_STATE(11523)] = 439798, - [SMALL_STATE(11524)] = 439812, - [SMALL_STATE(11525)] = 439826, - [SMALL_STATE(11526)] = 439840, - [SMALL_STATE(11527)] = 439854, - [SMALL_STATE(11528)] = 439868, - [SMALL_STATE(11529)] = 439882, - [SMALL_STATE(11530)] = 439898, - [SMALL_STATE(11531)] = 439912, - [SMALL_STATE(11532)] = 439926, - [SMALL_STATE(11533)] = 439940, - [SMALL_STATE(11534)] = 439954, - [SMALL_STATE(11535)] = 439968, - [SMALL_STATE(11536)] = 439982, - [SMALL_STATE(11537)] = 439996, - [SMALL_STATE(11538)] = 440010, - [SMALL_STATE(11539)] = 440024, - [SMALL_STATE(11540)] = 440038, - [SMALL_STATE(11541)] = 440052, - [SMALL_STATE(11542)] = 440066, - [SMALL_STATE(11543)] = 440080, - [SMALL_STATE(11544)] = 440094, - [SMALL_STATE(11545)] = 440108, - [SMALL_STATE(11546)] = 440122, - [SMALL_STATE(11547)] = 440136, - [SMALL_STATE(11548)] = 440150, - [SMALL_STATE(11549)] = 440164, - [SMALL_STATE(11550)] = 440178, - [SMALL_STATE(11551)] = 440192, - [SMALL_STATE(11552)] = 440206, - [SMALL_STATE(11553)] = 440220, - [SMALL_STATE(11554)] = 440234, - [SMALL_STATE(11555)] = 440248, - [SMALL_STATE(11556)] = 440262, - [SMALL_STATE(11557)] = 440276, - [SMALL_STATE(11558)] = 440290, - [SMALL_STATE(11559)] = 440304, - [SMALL_STATE(11560)] = 440318, - [SMALL_STATE(11561)] = 440332, - [SMALL_STATE(11562)] = 440346, - [SMALL_STATE(11563)] = 440360, - [SMALL_STATE(11564)] = 440374, - [SMALL_STATE(11565)] = 440388, - [SMALL_STATE(11566)] = 440402, - [SMALL_STATE(11567)] = 440416, - [SMALL_STATE(11568)] = 440430, - [SMALL_STATE(11569)] = 440444, - [SMALL_STATE(11570)] = 440458, - [SMALL_STATE(11571)] = 440472, - [SMALL_STATE(11572)] = 440486, - [SMALL_STATE(11573)] = 440500, - [SMALL_STATE(11574)] = 440514, - [SMALL_STATE(11575)] = 440528, - [SMALL_STATE(11576)] = 440542, - [SMALL_STATE(11577)] = 440556, - [SMALL_STATE(11578)] = 440570, - [SMALL_STATE(11579)] = 440584, - [SMALL_STATE(11580)] = 440598, - [SMALL_STATE(11581)] = 440612, - [SMALL_STATE(11582)] = 440626, - [SMALL_STATE(11583)] = 440640, - [SMALL_STATE(11584)] = 440654, - [SMALL_STATE(11585)] = 440668, - [SMALL_STATE(11586)] = 440682, - [SMALL_STATE(11587)] = 440696, - [SMALL_STATE(11588)] = 440710, - [SMALL_STATE(11589)] = 440724, - [SMALL_STATE(11590)] = 440738, - [SMALL_STATE(11591)] = 440752, - [SMALL_STATE(11592)] = 440766, - [SMALL_STATE(11593)] = 440780, - [SMALL_STATE(11594)] = 440794, - [SMALL_STATE(11595)] = 440808, - [SMALL_STATE(11596)] = 440822, - [SMALL_STATE(11597)] = 440836, - [SMALL_STATE(11598)] = 440850, - [SMALL_STATE(11599)] = 440864, - [SMALL_STATE(11600)] = 440878, - [SMALL_STATE(11601)] = 440892, - [SMALL_STATE(11602)] = 440906, - [SMALL_STATE(11603)] = 440920, - [SMALL_STATE(11604)] = 440934, - [SMALL_STATE(11605)] = 440948, - [SMALL_STATE(11606)] = 440962, - [SMALL_STATE(11607)] = 440976, - [SMALL_STATE(11608)] = 440990, - [SMALL_STATE(11609)] = 441004, - [SMALL_STATE(11610)] = 441018, - [SMALL_STATE(11611)] = 441032, - [SMALL_STATE(11612)] = 441046, - [SMALL_STATE(11613)] = 441060, - [SMALL_STATE(11614)] = 441074, - [SMALL_STATE(11615)] = 441088, - [SMALL_STATE(11616)] = 441102, - [SMALL_STATE(11617)] = 441116, - [SMALL_STATE(11618)] = 441130, - [SMALL_STATE(11619)] = 441144, - [SMALL_STATE(11620)] = 441158, - [SMALL_STATE(11621)] = 441172, - [SMALL_STATE(11622)] = 441186, - [SMALL_STATE(11623)] = 441200, - [SMALL_STATE(11624)] = 441214, - [SMALL_STATE(11625)] = 441228, - [SMALL_STATE(11626)] = 441242, - [SMALL_STATE(11627)] = 441256, - [SMALL_STATE(11628)] = 441270, - [SMALL_STATE(11629)] = 441284, - [SMALL_STATE(11630)] = 441298, - [SMALL_STATE(11631)] = 441312, - [SMALL_STATE(11632)] = 441326, - [SMALL_STATE(11633)] = 441340, - [SMALL_STATE(11634)] = 441354, - [SMALL_STATE(11635)] = 441368, - [SMALL_STATE(11636)] = 441382, - [SMALL_STATE(11637)] = 441396, - [SMALL_STATE(11638)] = 441410, - [SMALL_STATE(11639)] = 441424, - [SMALL_STATE(11640)] = 441438, - [SMALL_STATE(11641)] = 441452, - [SMALL_STATE(11642)] = 441466, - [SMALL_STATE(11643)] = 441480, - [SMALL_STATE(11644)] = 441494, - [SMALL_STATE(11645)] = 441508, - [SMALL_STATE(11646)] = 441522, - [SMALL_STATE(11647)] = 441536, - [SMALL_STATE(11648)] = 441550, - [SMALL_STATE(11649)] = 441564, - [SMALL_STATE(11650)] = 441578, - [SMALL_STATE(11651)] = 441592, - [SMALL_STATE(11652)] = 441608, - [SMALL_STATE(11653)] = 441622, - [SMALL_STATE(11654)] = 441636, - [SMALL_STATE(11655)] = 441650, - [SMALL_STATE(11656)] = 441664, - [SMALL_STATE(11657)] = 441678, - [SMALL_STATE(11658)] = 441692, - [SMALL_STATE(11659)] = 441706, - [SMALL_STATE(11660)] = 441720, - [SMALL_STATE(11661)] = 441734, - [SMALL_STATE(11662)] = 441748, - [SMALL_STATE(11663)] = 441762, - [SMALL_STATE(11664)] = 441776, - [SMALL_STATE(11665)] = 441790, - [SMALL_STATE(11666)] = 441804, - [SMALL_STATE(11667)] = 441818, - [SMALL_STATE(11668)] = 441832, - [SMALL_STATE(11669)] = 441846, - [SMALL_STATE(11670)] = 441860, - [SMALL_STATE(11671)] = 441874, - [SMALL_STATE(11672)] = 441888, - [SMALL_STATE(11673)] = 441902, - [SMALL_STATE(11674)] = 441916, - [SMALL_STATE(11675)] = 441930, - [SMALL_STATE(11676)] = 441944, - [SMALL_STATE(11677)] = 441958, - [SMALL_STATE(11678)] = 441972, - [SMALL_STATE(11679)] = 441986, - [SMALL_STATE(11680)] = 442000, - [SMALL_STATE(11681)] = 442014, - [SMALL_STATE(11682)] = 442028, - [SMALL_STATE(11683)] = 442042, - [SMALL_STATE(11684)] = 442056, - [SMALL_STATE(11685)] = 442070, - [SMALL_STATE(11686)] = 442084, - [SMALL_STATE(11687)] = 442098, - [SMALL_STATE(11688)] = 442112, - [SMALL_STATE(11689)] = 442126, - [SMALL_STATE(11690)] = 442140, - [SMALL_STATE(11691)] = 442154, - [SMALL_STATE(11692)] = 442168, - [SMALL_STATE(11693)] = 442182, - [SMALL_STATE(11694)] = 442196, - [SMALL_STATE(11695)] = 442210, - [SMALL_STATE(11696)] = 442224, - [SMALL_STATE(11697)] = 442238, - [SMALL_STATE(11698)] = 442252, - [SMALL_STATE(11699)] = 442266, - [SMALL_STATE(11700)] = 442280, - [SMALL_STATE(11701)] = 442294, - [SMALL_STATE(11702)] = 442308, - [SMALL_STATE(11703)] = 442322, - [SMALL_STATE(11704)] = 442336, - [SMALL_STATE(11705)] = 442350, - [SMALL_STATE(11706)] = 442364, - [SMALL_STATE(11707)] = 442378, - [SMALL_STATE(11708)] = 442392, - [SMALL_STATE(11709)] = 442406, - [SMALL_STATE(11710)] = 442420, - [SMALL_STATE(11711)] = 442434, - [SMALL_STATE(11712)] = 442448, - [SMALL_STATE(11713)] = 442462, - [SMALL_STATE(11714)] = 442476, - [SMALL_STATE(11715)] = 442490, - [SMALL_STATE(11716)] = 442504, - [SMALL_STATE(11717)] = 442518, - [SMALL_STATE(11718)] = 442532, - [SMALL_STATE(11719)] = 442546, - [SMALL_STATE(11720)] = 442560, - [SMALL_STATE(11721)] = 442574, - [SMALL_STATE(11722)] = 442588, - [SMALL_STATE(11723)] = 442602, - [SMALL_STATE(11724)] = 442616, - [SMALL_STATE(11725)] = 442630, - [SMALL_STATE(11726)] = 442644, - [SMALL_STATE(11727)] = 442658, - [SMALL_STATE(11728)] = 442672, - [SMALL_STATE(11729)] = 442686, - [SMALL_STATE(11730)] = 442700, - [SMALL_STATE(11731)] = 442714, - [SMALL_STATE(11732)] = 442728, - [SMALL_STATE(11733)] = 442742, - [SMALL_STATE(11734)] = 442756, - [SMALL_STATE(11735)] = 442770, - [SMALL_STATE(11736)] = 442784, - [SMALL_STATE(11737)] = 442798, - [SMALL_STATE(11738)] = 442812, - [SMALL_STATE(11739)] = 442826, - [SMALL_STATE(11740)] = 442840, - [SMALL_STATE(11741)] = 442854, - [SMALL_STATE(11742)] = 442868, - [SMALL_STATE(11743)] = 442882, - [SMALL_STATE(11744)] = 442896, - [SMALL_STATE(11745)] = 442910, - [SMALL_STATE(11746)] = 442924, - [SMALL_STATE(11747)] = 442938, - [SMALL_STATE(11748)] = 442952, - [SMALL_STATE(11749)] = 442966, - [SMALL_STATE(11750)] = 442980, - [SMALL_STATE(11751)] = 442994, - [SMALL_STATE(11752)] = 443010, - [SMALL_STATE(11753)] = 443024, - [SMALL_STATE(11754)] = 443038, - [SMALL_STATE(11755)] = 443052, - [SMALL_STATE(11756)] = 443066, - [SMALL_STATE(11757)] = 443080, - [SMALL_STATE(11758)] = 443094, - [SMALL_STATE(11759)] = 443108, - [SMALL_STATE(11760)] = 443122, - [SMALL_STATE(11761)] = 443136, - [SMALL_STATE(11762)] = 443150, - [SMALL_STATE(11763)] = 443164, - [SMALL_STATE(11764)] = 443178, - [SMALL_STATE(11765)] = 443192, - [SMALL_STATE(11766)] = 443206, - [SMALL_STATE(11767)] = 443220, - [SMALL_STATE(11768)] = 443234, - [SMALL_STATE(11769)] = 443248, - [SMALL_STATE(11770)] = 443262, - [SMALL_STATE(11771)] = 443276, - [SMALL_STATE(11772)] = 443290, - [SMALL_STATE(11773)] = 443304, - [SMALL_STATE(11774)] = 443318, - [SMALL_STATE(11775)] = 443332, - [SMALL_STATE(11776)] = 443346, - [SMALL_STATE(11777)] = 443360, - [SMALL_STATE(11778)] = 443374, - [SMALL_STATE(11779)] = 443388, - [SMALL_STATE(11780)] = 443402, - [SMALL_STATE(11781)] = 443416, - [SMALL_STATE(11782)] = 443430, - [SMALL_STATE(11783)] = 443444, - [SMALL_STATE(11784)] = 443458, - [SMALL_STATE(11785)] = 443472, - [SMALL_STATE(11786)] = 443486, - [SMALL_STATE(11787)] = 443500, - [SMALL_STATE(11788)] = 443514, - [SMALL_STATE(11789)] = 443528, - [SMALL_STATE(11790)] = 443542, - [SMALL_STATE(11791)] = 443556, - [SMALL_STATE(11792)] = 443570, - [SMALL_STATE(11793)] = 443584, - [SMALL_STATE(11794)] = 443598, - [SMALL_STATE(11795)] = 443612, - [SMALL_STATE(11796)] = 443626, - [SMALL_STATE(11797)] = 443640, - [SMALL_STATE(11798)] = 443654, - [SMALL_STATE(11799)] = 443668, - [SMALL_STATE(11800)] = 443682, - [SMALL_STATE(11801)] = 443696, - [SMALL_STATE(11802)] = 443710, - [SMALL_STATE(11803)] = 443724, - [SMALL_STATE(11804)] = 443738, - [SMALL_STATE(11805)] = 443752, - [SMALL_STATE(11806)] = 443766, - [SMALL_STATE(11807)] = 443780, - [SMALL_STATE(11808)] = 443794, - [SMALL_STATE(11809)] = 443808, - [SMALL_STATE(11810)] = 443822, - [SMALL_STATE(11811)] = 443836, - [SMALL_STATE(11812)] = 443850, - [SMALL_STATE(11813)] = 443864, - [SMALL_STATE(11814)] = 443878, - [SMALL_STATE(11815)] = 443892, - [SMALL_STATE(11816)] = 443906, - [SMALL_STATE(11817)] = 443920, - [SMALL_STATE(11818)] = 443934, - [SMALL_STATE(11819)] = 443948, - [SMALL_STATE(11820)] = 443962, - [SMALL_STATE(11821)] = 443976, - [SMALL_STATE(11822)] = 443990, - [SMALL_STATE(11823)] = 444004, - [SMALL_STATE(11824)] = 444018, - [SMALL_STATE(11825)] = 444032, - [SMALL_STATE(11826)] = 444046, - [SMALL_STATE(11827)] = 444060, - [SMALL_STATE(11828)] = 444074, - [SMALL_STATE(11829)] = 444088, - [SMALL_STATE(11830)] = 444102, - [SMALL_STATE(11831)] = 444116, - [SMALL_STATE(11832)] = 444130, - [SMALL_STATE(11833)] = 444144, - [SMALL_STATE(11834)] = 444158, - [SMALL_STATE(11835)] = 444172, - [SMALL_STATE(11836)] = 444186, - [SMALL_STATE(11837)] = 444200, - [SMALL_STATE(11838)] = 444214, - [SMALL_STATE(11839)] = 444228, - [SMALL_STATE(11840)] = 444242, - [SMALL_STATE(11841)] = 444256, - [SMALL_STATE(11842)] = 444270, - [SMALL_STATE(11843)] = 444284, - [SMALL_STATE(11844)] = 444298, - [SMALL_STATE(11845)] = 444312, - [SMALL_STATE(11846)] = 444326, - [SMALL_STATE(11847)] = 444340, - [SMALL_STATE(11848)] = 444354, - [SMALL_STATE(11849)] = 444368, - [SMALL_STATE(11850)] = 444382, - [SMALL_STATE(11851)] = 444396, - [SMALL_STATE(11852)] = 444410, - [SMALL_STATE(11853)] = 444424, - [SMALL_STATE(11854)] = 444438, - [SMALL_STATE(11855)] = 444452, - [SMALL_STATE(11856)] = 444466, - [SMALL_STATE(11857)] = 444480, - [SMALL_STATE(11858)] = 444494, - [SMALL_STATE(11859)] = 444508, - [SMALL_STATE(11860)] = 444522, - [SMALL_STATE(11861)] = 444536, - [SMALL_STATE(11862)] = 444550, - [SMALL_STATE(11863)] = 444564, - [SMALL_STATE(11864)] = 444578, - [SMALL_STATE(11865)] = 444592, - [SMALL_STATE(11866)] = 444606, - [SMALL_STATE(11867)] = 444620, - [SMALL_STATE(11868)] = 444634, - [SMALL_STATE(11869)] = 444650, - [SMALL_STATE(11870)] = 444664, - [SMALL_STATE(11871)] = 444678, - [SMALL_STATE(11872)] = 444692, - [SMALL_STATE(11873)] = 444706, - [SMALL_STATE(11874)] = 444720, - [SMALL_STATE(11875)] = 444734, - [SMALL_STATE(11876)] = 444748, - [SMALL_STATE(11877)] = 444762, - [SMALL_STATE(11878)] = 444776, - [SMALL_STATE(11879)] = 444790, - [SMALL_STATE(11880)] = 444804, - [SMALL_STATE(11881)] = 444818, - [SMALL_STATE(11882)] = 444832, - [SMALL_STATE(11883)] = 444846, - [SMALL_STATE(11884)] = 444860, - [SMALL_STATE(11885)] = 444874, - [SMALL_STATE(11886)] = 444888, - [SMALL_STATE(11887)] = 444902, - [SMALL_STATE(11888)] = 444916, - [SMALL_STATE(11889)] = 444930, - [SMALL_STATE(11890)] = 444944, - [SMALL_STATE(11891)] = 444958, - [SMALL_STATE(11892)] = 444972, - [SMALL_STATE(11893)] = 444986, - [SMALL_STATE(11894)] = 445000, - [SMALL_STATE(11895)] = 445014, - [SMALL_STATE(11896)] = 445028, - [SMALL_STATE(11897)] = 445042, - [SMALL_STATE(11898)] = 445056, - [SMALL_STATE(11899)] = 445070, - [SMALL_STATE(11900)] = 445084, - [SMALL_STATE(11901)] = 445098, - [SMALL_STATE(11902)] = 445112, - [SMALL_STATE(11903)] = 445126, - [SMALL_STATE(11904)] = 445140, - [SMALL_STATE(11905)] = 445154, - [SMALL_STATE(11906)] = 445168, - [SMALL_STATE(11907)] = 445182, - [SMALL_STATE(11908)] = 445196, - [SMALL_STATE(11909)] = 445210, - [SMALL_STATE(11910)] = 445224, - [SMALL_STATE(11911)] = 445238, - [SMALL_STATE(11912)] = 445252, - [SMALL_STATE(11913)] = 445266, - [SMALL_STATE(11914)] = 445280, - [SMALL_STATE(11915)] = 445294, - [SMALL_STATE(11916)] = 445308, - [SMALL_STATE(11917)] = 445322, - [SMALL_STATE(11918)] = 445336, - [SMALL_STATE(11919)] = 445350, - [SMALL_STATE(11920)] = 445364, - [SMALL_STATE(11921)] = 445378, - [SMALL_STATE(11922)] = 445392, - [SMALL_STATE(11923)] = 445406, - [SMALL_STATE(11924)] = 445420, - [SMALL_STATE(11925)] = 445434, - [SMALL_STATE(11926)] = 445448, - [SMALL_STATE(11927)] = 445464, - [SMALL_STATE(11928)] = 445478, - [SMALL_STATE(11929)] = 445492, - [SMALL_STATE(11930)] = 445506, - [SMALL_STATE(11931)] = 445520, - [SMALL_STATE(11932)] = 445534, - [SMALL_STATE(11933)] = 445548, - [SMALL_STATE(11934)] = 445562, - [SMALL_STATE(11935)] = 445576, - [SMALL_STATE(11936)] = 445590, - [SMALL_STATE(11937)] = 445604, - [SMALL_STATE(11938)] = 445618, - [SMALL_STATE(11939)] = 445632, - [SMALL_STATE(11940)] = 445646, - [SMALL_STATE(11941)] = 445660, - [SMALL_STATE(11942)] = 445674, - [SMALL_STATE(11943)] = 445690, - [SMALL_STATE(11944)] = 445704, - [SMALL_STATE(11945)] = 445718, - [SMALL_STATE(11946)] = 445732, - [SMALL_STATE(11947)] = 445746, - [SMALL_STATE(11948)] = 445760, - [SMALL_STATE(11949)] = 445774, - [SMALL_STATE(11950)] = 445788, - [SMALL_STATE(11951)] = 445802, - [SMALL_STATE(11952)] = 445816, - [SMALL_STATE(11953)] = 445830, - [SMALL_STATE(11954)] = 445844, - [SMALL_STATE(11955)] = 445858, - [SMALL_STATE(11956)] = 445872, - [SMALL_STATE(11957)] = 445886, - [SMALL_STATE(11958)] = 445900, - [SMALL_STATE(11959)] = 445914, - [SMALL_STATE(11960)] = 445928, - [SMALL_STATE(11961)] = 445942, - [SMALL_STATE(11962)] = 445956, - [SMALL_STATE(11963)] = 445970, - [SMALL_STATE(11964)] = 445984, - [SMALL_STATE(11965)] = 445998, - [SMALL_STATE(11966)] = 446012, - [SMALL_STATE(11967)] = 446026, - [SMALL_STATE(11968)] = 446040, - [SMALL_STATE(11969)] = 446054, - [SMALL_STATE(11970)] = 446068, - [SMALL_STATE(11971)] = 446082, - [SMALL_STATE(11972)] = 446096, - [SMALL_STATE(11973)] = 446110, - [SMALL_STATE(11974)] = 446124, - [SMALL_STATE(11975)] = 446138, - [SMALL_STATE(11976)] = 446152, - [SMALL_STATE(11977)] = 446166, - [SMALL_STATE(11978)] = 446180, - [SMALL_STATE(11979)] = 446194, - [SMALL_STATE(11980)] = 446208, - [SMALL_STATE(11981)] = 446222, - [SMALL_STATE(11982)] = 446226, + [SMALL_STATE(10347)] = 422826, + [SMALL_STATE(10348)] = 422846, + [SMALL_STATE(10349)] = 422866, + [SMALL_STATE(10350)] = 422886, + [SMALL_STATE(10351)] = 422906, + [SMALL_STATE(10352)] = 422926, + [SMALL_STATE(10353)] = 422946, + [SMALL_STATE(10354)] = 422966, + [SMALL_STATE(10355)] = 422986, + [SMALL_STATE(10356)] = 423006, + [SMALL_STATE(10357)] = 423026, + [SMALL_STATE(10358)] = 423046, + [SMALL_STATE(10359)] = 423066, + [SMALL_STATE(10360)] = 423086, + [SMALL_STATE(10361)] = 423104, + [SMALL_STATE(10362)] = 423124, + [SMALL_STATE(10363)] = 423144, + [SMALL_STATE(10364)] = 423164, + [SMALL_STATE(10365)] = 423184, + [SMALL_STATE(10366)] = 423204, + [SMALL_STATE(10367)] = 423220, + [SMALL_STATE(10368)] = 423240, + [SMALL_STATE(10369)] = 423260, + [SMALL_STATE(10370)] = 423280, + [SMALL_STATE(10371)] = 423300, + [SMALL_STATE(10372)] = 423320, + [SMALL_STATE(10373)] = 423340, + [SMALL_STATE(10374)] = 423360, + [SMALL_STATE(10375)] = 423380, + [SMALL_STATE(10376)] = 423395, + [SMALL_STATE(10377)] = 423412, + [SMALL_STATE(10378)] = 423429, + [SMALL_STATE(10379)] = 423446, + [SMALL_STATE(10380)] = 423463, + [SMALL_STATE(10381)] = 423480, + [SMALL_STATE(10382)] = 423497, + [SMALL_STATE(10383)] = 423514, + [SMALL_STATE(10384)] = 423531, + [SMALL_STATE(10385)] = 423548, + [SMALL_STATE(10386)] = 423565, + [SMALL_STATE(10387)] = 423582, + [SMALL_STATE(10388)] = 423599, + [SMALL_STATE(10389)] = 423616, + [SMALL_STATE(10390)] = 423633, + [SMALL_STATE(10391)] = 423648, + [SMALL_STATE(10392)] = 423665, + [SMALL_STATE(10393)] = 423682, + [SMALL_STATE(10394)] = 423697, + [SMALL_STATE(10395)] = 423714, + [SMALL_STATE(10396)] = 423731, + [SMALL_STATE(10397)] = 423748, + [SMALL_STATE(10398)] = 423765, + [SMALL_STATE(10399)] = 423782, + [SMALL_STATE(10400)] = 423799, + [SMALL_STATE(10401)] = 423816, + [SMALL_STATE(10402)] = 423833, + [SMALL_STATE(10403)] = 423850, + [SMALL_STATE(10404)] = 423867, + [SMALL_STATE(10405)] = 423882, + [SMALL_STATE(10406)] = 423897, + [SMALL_STATE(10407)] = 423912, + [SMALL_STATE(10408)] = 423927, + [SMALL_STATE(10409)] = 423944, + [SMALL_STATE(10410)] = 423959, + [SMALL_STATE(10411)] = 423974, + [SMALL_STATE(10412)] = 423989, + [SMALL_STATE(10413)] = 424004, + [SMALL_STATE(10414)] = 424019, + [SMALL_STATE(10415)] = 424036, + [SMALL_STATE(10416)] = 424053, + [SMALL_STATE(10417)] = 424070, + [SMALL_STATE(10418)] = 424087, + [SMALL_STATE(10419)] = 424104, + [SMALL_STATE(10420)] = 424121, + [SMALL_STATE(10421)] = 424136, + [SMALL_STATE(10422)] = 424151, + [SMALL_STATE(10423)] = 424166, + [SMALL_STATE(10424)] = 424183, + [SMALL_STATE(10425)] = 424200, + [SMALL_STATE(10426)] = 424217, + [SMALL_STATE(10427)] = 424234, + [SMALL_STATE(10428)] = 424251, + [SMALL_STATE(10429)] = 424268, + [SMALL_STATE(10430)] = 424285, + [SMALL_STATE(10431)] = 424302, + [SMALL_STATE(10432)] = 424317, + [SMALL_STATE(10433)] = 424334, + [SMALL_STATE(10434)] = 424349, + [SMALL_STATE(10435)] = 424366, + [SMALL_STATE(10436)] = 424381, + [SMALL_STATE(10437)] = 424396, + [SMALL_STATE(10438)] = 424413, + [SMALL_STATE(10439)] = 424428, + [SMALL_STATE(10440)] = 424445, + [SMALL_STATE(10441)] = 424462, + [SMALL_STATE(10442)] = 424479, + [SMALL_STATE(10443)] = 424496, + [SMALL_STATE(10444)] = 424511, + [SMALL_STATE(10445)] = 424528, + [SMALL_STATE(10446)] = 424543, + [SMALL_STATE(10447)] = 424560, + [SMALL_STATE(10448)] = 424577, + [SMALL_STATE(10449)] = 424594, + [SMALL_STATE(10450)] = 424611, + [SMALL_STATE(10451)] = 424626, + [SMALL_STATE(10452)] = 424641, + [SMALL_STATE(10453)] = 424658, + [SMALL_STATE(10454)] = 424675, + [SMALL_STATE(10455)] = 424692, + [SMALL_STATE(10456)] = 424709, + [SMALL_STATE(10457)] = 424726, + [SMALL_STATE(10458)] = 424743, + [SMALL_STATE(10459)] = 424760, + [SMALL_STATE(10460)] = 424777, + [SMALL_STATE(10461)] = 424794, + [SMALL_STATE(10462)] = 424809, + [SMALL_STATE(10463)] = 424826, + [SMALL_STATE(10464)] = 424843, + [SMALL_STATE(10465)] = 424860, + [SMALL_STATE(10466)] = 424877, + [SMALL_STATE(10467)] = 424894, + [SMALL_STATE(10468)] = 424911, + [SMALL_STATE(10469)] = 424928, + [SMALL_STATE(10470)] = 424945, + [SMALL_STATE(10471)] = 424960, + [SMALL_STATE(10472)] = 424975, + [SMALL_STATE(10473)] = 424992, + [SMALL_STATE(10474)] = 425009, + [SMALL_STATE(10475)] = 425024, + [SMALL_STATE(10476)] = 425041, + [SMALL_STATE(10477)] = 425058, + [SMALL_STATE(10478)] = 425073, + [SMALL_STATE(10479)] = 425090, + [SMALL_STATE(10480)] = 425107, + [SMALL_STATE(10481)] = 425124, + [SMALL_STATE(10482)] = 425139, + [SMALL_STATE(10483)] = 425154, + [SMALL_STATE(10484)] = 425171, + [SMALL_STATE(10485)] = 425188, + [SMALL_STATE(10486)] = 425205, + [SMALL_STATE(10487)] = 425222, + [SMALL_STATE(10488)] = 425239, + [SMALL_STATE(10489)] = 425256, + [SMALL_STATE(10490)] = 425273, + [SMALL_STATE(10491)] = 425290, + [SMALL_STATE(10492)] = 425307, + [SMALL_STATE(10493)] = 425324, + [SMALL_STATE(10494)] = 425341, + [SMALL_STATE(10495)] = 425358, + [SMALL_STATE(10496)] = 425375, + [SMALL_STATE(10497)] = 425392, + [SMALL_STATE(10498)] = 425407, + [SMALL_STATE(10499)] = 425422, + [SMALL_STATE(10500)] = 425437, + [SMALL_STATE(10501)] = 425454, + [SMALL_STATE(10502)] = 425471, + [SMALL_STATE(10503)] = 425488, + [SMALL_STATE(10504)] = 425505, + [SMALL_STATE(10505)] = 425520, + [SMALL_STATE(10506)] = 425537, + [SMALL_STATE(10507)] = 425554, + [SMALL_STATE(10508)] = 425568, + [SMALL_STATE(10509)] = 425582, + [SMALL_STATE(10510)] = 425596, + [SMALL_STATE(10511)] = 425610, + [SMALL_STATE(10512)] = 425624, + [SMALL_STATE(10513)] = 425638, + [SMALL_STATE(10514)] = 425652, + [SMALL_STATE(10515)] = 425666, + [SMALL_STATE(10516)] = 425680, + [SMALL_STATE(10517)] = 425694, + [SMALL_STATE(10518)] = 425708, + [SMALL_STATE(10519)] = 425724, + [SMALL_STATE(10520)] = 425738, + [SMALL_STATE(10521)] = 425752, + [SMALL_STATE(10522)] = 425766, + [SMALL_STATE(10523)] = 425780, + [SMALL_STATE(10524)] = 425794, + [SMALL_STATE(10525)] = 425808, + [SMALL_STATE(10526)] = 425822, + [SMALL_STATE(10527)] = 425836, + [SMALL_STATE(10528)] = 425850, + [SMALL_STATE(10529)] = 425864, + [SMALL_STATE(10530)] = 425878, + [SMALL_STATE(10531)] = 425892, + [SMALL_STATE(10532)] = 425906, + [SMALL_STATE(10533)] = 425920, + [SMALL_STATE(10534)] = 425934, + [SMALL_STATE(10535)] = 425948, + [SMALL_STATE(10536)] = 425962, + [SMALL_STATE(10537)] = 425976, + [SMALL_STATE(10538)] = 425990, + [SMALL_STATE(10539)] = 426004, + [SMALL_STATE(10540)] = 426018, + [SMALL_STATE(10541)] = 426032, + [SMALL_STATE(10542)] = 426046, + [SMALL_STATE(10543)] = 426060, + [SMALL_STATE(10544)] = 426074, + [SMALL_STATE(10545)] = 426088, + [SMALL_STATE(10546)] = 426102, + [SMALL_STATE(10547)] = 426116, + [SMALL_STATE(10548)] = 426130, + [SMALL_STATE(10549)] = 426144, + [SMALL_STATE(10550)] = 426158, + [SMALL_STATE(10551)] = 426172, + [SMALL_STATE(10552)] = 426186, + [SMALL_STATE(10553)] = 426200, + [SMALL_STATE(10554)] = 426214, + [SMALL_STATE(10555)] = 426228, + [SMALL_STATE(10556)] = 426242, + [SMALL_STATE(10557)] = 426256, + [SMALL_STATE(10558)] = 426270, + [SMALL_STATE(10559)] = 426284, + [SMALL_STATE(10560)] = 426298, + [SMALL_STATE(10561)] = 426312, + [SMALL_STATE(10562)] = 426326, + [SMALL_STATE(10563)] = 426340, + [SMALL_STATE(10564)] = 426354, + [SMALL_STATE(10565)] = 426368, + [SMALL_STATE(10566)] = 426382, + [SMALL_STATE(10567)] = 426396, + [SMALL_STATE(10568)] = 426410, + [SMALL_STATE(10569)] = 426424, + [SMALL_STATE(10570)] = 426438, + [SMALL_STATE(10571)] = 426452, + [SMALL_STATE(10572)] = 426466, + [SMALL_STATE(10573)] = 426480, + [SMALL_STATE(10574)] = 426494, + [SMALL_STATE(10575)] = 426508, + [SMALL_STATE(10576)] = 426522, + [SMALL_STATE(10577)] = 426536, + [SMALL_STATE(10578)] = 426550, + [SMALL_STATE(10579)] = 426564, + [SMALL_STATE(10580)] = 426578, + [SMALL_STATE(10581)] = 426592, + [SMALL_STATE(10582)] = 426606, + [SMALL_STATE(10583)] = 426620, + [SMALL_STATE(10584)] = 426634, + [SMALL_STATE(10585)] = 426648, + [SMALL_STATE(10586)] = 426662, + [SMALL_STATE(10587)] = 426676, + [SMALL_STATE(10588)] = 426690, + [SMALL_STATE(10589)] = 426704, + [SMALL_STATE(10590)] = 426718, + [SMALL_STATE(10591)] = 426732, + [SMALL_STATE(10592)] = 426746, + [SMALL_STATE(10593)] = 426760, + [SMALL_STATE(10594)] = 426774, + [SMALL_STATE(10595)] = 426788, + [SMALL_STATE(10596)] = 426802, + [SMALL_STATE(10597)] = 426816, + [SMALL_STATE(10598)] = 426830, + [SMALL_STATE(10599)] = 426844, + [SMALL_STATE(10600)] = 426858, + [SMALL_STATE(10601)] = 426872, + [SMALL_STATE(10602)] = 426886, + [SMALL_STATE(10603)] = 426900, + [SMALL_STATE(10604)] = 426914, + [SMALL_STATE(10605)] = 426928, + [SMALL_STATE(10606)] = 426942, + [SMALL_STATE(10607)] = 426956, + [SMALL_STATE(10608)] = 426970, + [SMALL_STATE(10609)] = 426984, + [SMALL_STATE(10610)] = 426998, + [SMALL_STATE(10611)] = 427012, + [SMALL_STATE(10612)] = 427026, + [SMALL_STATE(10613)] = 427040, + [SMALL_STATE(10614)] = 427056, + [SMALL_STATE(10615)] = 427070, + [SMALL_STATE(10616)] = 427084, + [SMALL_STATE(10617)] = 427098, + [SMALL_STATE(10618)] = 427112, + [SMALL_STATE(10619)] = 427126, + [SMALL_STATE(10620)] = 427140, + [SMALL_STATE(10621)] = 427154, + [SMALL_STATE(10622)] = 427168, + [SMALL_STATE(10623)] = 427182, + [SMALL_STATE(10624)] = 427196, + [SMALL_STATE(10625)] = 427210, + [SMALL_STATE(10626)] = 427224, + [SMALL_STATE(10627)] = 427238, + [SMALL_STATE(10628)] = 427252, + [SMALL_STATE(10629)] = 427266, + [SMALL_STATE(10630)] = 427280, + [SMALL_STATE(10631)] = 427294, + [SMALL_STATE(10632)] = 427308, + [SMALL_STATE(10633)] = 427322, + [SMALL_STATE(10634)] = 427336, + [SMALL_STATE(10635)] = 427350, + [SMALL_STATE(10636)] = 427364, + [SMALL_STATE(10637)] = 427378, + [SMALL_STATE(10638)] = 427394, + [SMALL_STATE(10639)] = 427408, + [SMALL_STATE(10640)] = 427422, + [SMALL_STATE(10641)] = 427436, + [SMALL_STATE(10642)] = 427450, + [SMALL_STATE(10643)] = 427464, + [SMALL_STATE(10644)] = 427478, + [SMALL_STATE(10645)] = 427492, + [SMALL_STATE(10646)] = 427506, + [SMALL_STATE(10647)] = 427520, + [SMALL_STATE(10648)] = 427534, + [SMALL_STATE(10649)] = 427548, + [SMALL_STATE(10650)] = 427562, + [SMALL_STATE(10651)] = 427576, + [SMALL_STATE(10652)] = 427590, + [SMALL_STATE(10653)] = 427604, + [SMALL_STATE(10654)] = 427618, + [SMALL_STATE(10655)] = 427632, + [SMALL_STATE(10656)] = 427646, + [SMALL_STATE(10657)] = 427660, + [SMALL_STATE(10658)] = 427674, + [SMALL_STATE(10659)] = 427688, + [SMALL_STATE(10660)] = 427702, + [SMALL_STATE(10661)] = 427716, + [SMALL_STATE(10662)] = 427730, + [SMALL_STATE(10663)] = 427744, + [SMALL_STATE(10664)] = 427758, + [SMALL_STATE(10665)] = 427772, + [SMALL_STATE(10666)] = 427786, + [SMALL_STATE(10667)] = 427800, + [SMALL_STATE(10668)] = 427814, + [SMALL_STATE(10669)] = 427828, + [SMALL_STATE(10670)] = 427842, + [SMALL_STATE(10671)] = 427856, + [SMALL_STATE(10672)] = 427870, + [SMALL_STATE(10673)] = 427884, + [SMALL_STATE(10674)] = 427898, + [SMALL_STATE(10675)] = 427912, + [SMALL_STATE(10676)] = 427926, + [SMALL_STATE(10677)] = 427940, + [SMALL_STATE(10678)] = 427954, + [SMALL_STATE(10679)] = 427968, + [SMALL_STATE(10680)] = 427982, + [SMALL_STATE(10681)] = 427996, + [SMALL_STATE(10682)] = 428010, + [SMALL_STATE(10683)] = 428024, + [SMALL_STATE(10684)] = 428038, + [SMALL_STATE(10685)] = 428052, + [SMALL_STATE(10686)] = 428066, + [SMALL_STATE(10687)] = 428080, + [SMALL_STATE(10688)] = 428094, + [SMALL_STATE(10689)] = 428108, + [SMALL_STATE(10690)] = 428122, + [SMALL_STATE(10691)] = 428136, + [SMALL_STATE(10692)] = 428150, + [SMALL_STATE(10693)] = 428164, + [SMALL_STATE(10694)] = 428180, + [SMALL_STATE(10695)] = 428194, + [SMALL_STATE(10696)] = 428208, + [SMALL_STATE(10697)] = 428222, + [SMALL_STATE(10698)] = 428236, + [SMALL_STATE(10699)] = 428250, + [SMALL_STATE(10700)] = 428264, + [SMALL_STATE(10701)] = 428278, + [SMALL_STATE(10702)] = 428292, + [SMALL_STATE(10703)] = 428306, + [SMALL_STATE(10704)] = 428320, + [SMALL_STATE(10705)] = 428334, + [SMALL_STATE(10706)] = 428348, + [SMALL_STATE(10707)] = 428362, + [SMALL_STATE(10708)] = 428376, + [SMALL_STATE(10709)] = 428390, + [SMALL_STATE(10710)] = 428404, + [SMALL_STATE(10711)] = 428418, + [SMALL_STATE(10712)] = 428432, + [SMALL_STATE(10713)] = 428446, + [SMALL_STATE(10714)] = 428460, + [SMALL_STATE(10715)] = 428474, + [SMALL_STATE(10716)] = 428488, + [SMALL_STATE(10717)] = 428502, + [SMALL_STATE(10718)] = 428516, + [SMALL_STATE(10719)] = 428530, + [SMALL_STATE(10720)] = 428544, + [SMALL_STATE(10721)] = 428558, + [SMALL_STATE(10722)] = 428572, + [SMALL_STATE(10723)] = 428586, + [SMALL_STATE(10724)] = 428600, + [SMALL_STATE(10725)] = 428614, + [SMALL_STATE(10726)] = 428628, + [SMALL_STATE(10727)] = 428642, + [SMALL_STATE(10728)] = 428656, + [SMALL_STATE(10729)] = 428670, + [SMALL_STATE(10730)] = 428684, + [SMALL_STATE(10731)] = 428698, + [SMALL_STATE(10732)] = 428712, + [SMALL_STATE(10733)] = 428726, + [SMALL_STATE(10734)] = 428740, + [SMALL_STATE(10735)] = 428754, + [SMALL_STATE(10736)] = 428768, + [SMALL_STATE(10737)] = 428782, + [SMALL_STATE(10738)] = 428796, + [SMALL_STATE(10739)] = 428810, + [SMALL_STATE(10740)] = 428824, + [SMALL_STATE(10741)] = 428838, + [SMALL_STATE(10742)] = 428854, + [SMALL_STATE(10743)] = 428868, + [SMALL_STATE(10744)] = 428882, + [SMALL_STATE(10745)] = 428896, + [SMALL_STATE(10746)] = 428910, + [SMALL_STATE(10747)] = 428924, + [SMALL_STATE(10748)] = 428938, + [SMALL_STATE(10749)] = 428952, + [SMALL_STATE(10750)] = 428966, + [SMALL_STATE(10751)] = 428980, + [SMALL_STATE(10752)] = 428994, + [SMALL_STATE(10753)] = 429008, + [SMALL_STATE(10754)] = 429022, + [SMALL_STATE(10755)] = 429036, + [SMALL_STATE(10756)] = 429050, + [SMALL_STATE(10757)] = 429064, + [SMALL_STATE(10758)] = 429078, + [SMALL_STATE(10759)] = 429092, + [SMALL_STATE(10760)] = 429106, + [SMALL_STATE(10761)] = 429122, + [SMALL_STATE(10762)] = 429136, + [SMALL_STATE(10763)] = 429150, + [SMALL_STATE(10764)] = 429164, + [SMALL_STATE(10765)] = 429178, + [SMALL_STATE(10766)] = 429192, + [SMALL_STATE(10767)] = 429206, + [SMALL_STATE(10768)] = 429220, + [SMALL_STATE(10769)] = 429234, + [SMALL_STATE(10770)] = 429248, + [SMALL_STATE(10771)] = 429262, + [SMALL_STATE(10772)] = 429276, + [SMALL_STATE(10773)] = 429290, + [SMALL_STATE(10774)] = 429304, + [SMALL_STATE(10775)] = 429318, + [SMALL_STATE(10776)] = 429332, + [SMALL_STATE(10777)] = 429346, + [SMALL_STATE(10778)] = 429360, + [SMALL_STATE(10779)] = 429374, + [SMALL_STATE(10780)] = 429388, + [SMALL_STATE(10781)] = 429402, + [SMALL_STATE(10782)] = 429416, + [SMALL_STATE(10783)] = 429430, + [SMALL_STATE(10784)] = 429444, + [SMALL_STATE(10785)] = 429458, + [SMALL_STATE(10786)] = 429472, + [SMALL_STATE(10787)] = 429486, + [SMALL_STATE(10788)] = 429500, + [SMALL_STATE(10789)] = 429514, + [SMALL_STATE(10790)] = 429528, + [SMALL_STATE(10791)] = 429542, + [SMALL_STATE(10792)] = 429556, + [SMALL_STATE(10793)] = 429570, + [SMALL_STATE(10794)] = 429584, + [SMALL_STATE(10795)] = 429598, + [SMALL_STATE(10796)] = 429612, + [SMALL_STATE(10797)] = 429626, + [SMALL_STATE(10798)] = 429640, + [SMALL_STATE(10799)] = 429654, + [SMALL_STATE(10800)] = 429668, + [SMALL_STATE(10801)] = 429684, + [SMALL_STATE(10802)] = 429698, + [SMALL_STATE(10803)] = 429712, + [SMALL_STATE(10804)] = 429726, + [SMALL_STATE(10805)] = 429740, + [SMALL_STATE(10806)] = 429754, + [SMALL_STATE(10807)] = 429768, + [SMALL_STATE(10808)] = 429782, + [SMALL_STATE(10809)] = 429796, + [SMALL_STATE(10810)] = 429810, + [SMALL_STATE(10811)] = 429824, + [SMALL_STATE(10812)] = 429838, + [SMALL_STATE(10813)] = 429852, + [SMALL_STATE(10814)] = 429866, + [SMALL_STATE(10815)] = 429880, + [SMALL_STATE(10816)] = 429894, + [SMALL_STATE(10817)] = 429908, + [SMALL_STATE(10818)] = 429922, + [SMALL_STATE(10819)] = 429936, + [SMALL_STATE(10820)] = 429950, + [SMALL_STATE(10821)] = 429964, + [SMALL_STATE(10822)] = 429978, + [SMALL_STATE(10823)] = 429992, + [SMALL_STATE(10824)] = 430006, + [SMALL_STATE(10825)] = 430020, + [SMALL_STATE(10826)] = 430034, + [SMALL_STATE(10827)] = 430048, + [SMALL_STATE(10828)] = 430062, + [SMALL_STATE(10829)] = 430076, + [SMALL_STATE(10830)] = 430090, + [SMALL_STATE(10831)] = 430104, + [SMALL_STATE(10832)] = 430118, + [SMALL_STATE(10833)] = 430132, + [SMALL_STATE(10834)] = 430146, + [SMALL_STATE(10835)] = 430160, + [SMALL_STATE(10836)] = 430174, + [SMALL_STATE(10837)] = 430188, + [SMALL_STATE(10838)] = 430202, + [SMALL_STATE(10839)] = 430216, + [SMALL_STATE(10840)] = 430230, + [SMALL_STATE(10841)] = 430244, + [SMALL_STATE(10842)] = 430258, + [SMALL_STATE(10843)] = 430272, + [SMALL_STATE(10844)] = 430286, + [SMALL_STATE(10845)] = 430300, + [SMALL_STATE(10846)] = 430314, + [SMALL_STATE(10847)] = 430328, + [SMALL_STATE(10848)] = 430342, + [SMALL_STATE(10849)] = 430356, + [SMALL_STATE(10850)] = 430370, + [SMALL_STATE(10851)] = 430384, + [SMALL_STATE(10852)] = 430398, + [SMALL_STATE(10853)] = 430412, + [SMALL_STATE(10854)] = 430426, + [SMALL_STATE(10855)] = 430440, + [SMALL_STATE(10856)] = 430454, + [SMALL_STATE(10857)] = 430468, + [SMALL_STATE(10858)] = 430482, + [SMALL_STATE(10859)] = 430496, + [SMALL_STATE(10860)] = 430510, + [SMALL_STATE(10861)] = 430524, + [SMALL_STATE(10862)] = 430538, + [SMALL_STATE(10863)] = 430552, + [SMALL_STATE(10864)] = 430566, + [SMALL_STATE(10865)] = 430580, + [SMALL_STATE(10866)] = 430594, + [SMALL_STATE(10867)] = 430608, + [SMALL_STATE(10868)] = 430622, + [SMALL_STATE(10869)] = 430636, + [SMALL_STATE(10870)] = 430650, + [SMALL_STATE(10871)] = 430664, + [SMALL_STATE(10872)] = 430678, + [SMALL_STATE(10873)] = 430692, + [SMALL_STATE(10874)] = 430706, + [SMALL_STATE(10875)] = 430720, + [SMALL_STATE(10876)] = 430734, + [SMALL_STATE(10877)] = 430748, + [SMALL_STATE(10878)] = 430762, + [SMALL_STATE(10879)] = 430776, + [SMALL_STATE(10880)] = 430790, + [SMALL_STATE(10881)] = 430804, + [SMALL_STATE(10882)] = 430818, + [SMALL_STATE(10883)] = 430832, + [SMALL_STATE(10884)] = 430848, + [SMALL_STATE(10885)] = 430862, + [SMALL_STATE(10886)] = 430876, + [SMALL_STATE(10887)] = 430890, + [SMALL_STATE(10888)] = 430904, + [SMALL_STATE(10889)] = 430918, + [SMALL_STATE(10890)] = 430932, + [SMALL_STATE(10891)] = 430946, + [SMALL_STATE(10892)] = 430960, + [SMALL_STATE(10893)] = 430974, + [SMALL_STATE(10894)] = 430988, + [SMALL_STATE(10895)] = 431002, + [SMALL_STATE(10896)] = 431016, + [SMALL_STATE(10897)] = 431030, + [SMALL_STATE(10898)] = 431044, + [SMALL_STATE(10899)] = 431058, + [SMALL_STATE(10900)] = 431072, + [SMALL_STATE(10901)] = 431086, + [SMALL_STATE(10902)] = 431100, + [SMALL_STATE(10903)] = 431114, + [SMALL_STATE(10904)] = 431128, + [SMALL_STATE(10905)] = 431142, + [SMALL_STATE(10906)] = 431156, + [SMALL_STATE(10907)] = 431170, + [SMALL_STATE(10908)] = 431184, + [SMALL_STATE(10909)] = 431198, + [SMALL_STATE(10910)] = 431212, + [SMALL_STATE(10911)] = 431226, + [SMALL_STATE(10912)] = 431240, + [SMALL_STATE(10913)] = 431254, + [SMALL_STATE(10914)] = 431268, + [SMALL_STATE(10915)] = 431282, + [SMALL_STATE(10916)] = 431296, + [SMALL_STATE(10917)] = 431310, + [SMALL_STATE(10918)] = 431324, + [SMALL_STATE(10919)] = 431338, + [SMALL_STATE(10920)] = 431352, + [SMALL_STATE(10921)] = 431366, + [SMALL_STATE(10922)] = 431380, + [SMALL_STATE(10923)] = 431394, + [SMALL_STATE(10924)] = 431408, + [SMALL_STATE(10925)] = 431422, + [SMALL_STATE(10926)] = 431436, + [SMALL_STATE(10927)] = 431450, + [SMALL_STATE(10928)] = 431464, + [SMALL_STATE(10929)] = 431478, + [SMALL_STATE(10930)] = 431492, + [SMALL_STATE(10931)] = 431506, + [SMALL_STATE(10932)] = 431520, + [SMALL_STATE(10933)] = 431534, + [SMALL_STATE(10934)] = 431548, + [SMALL_STATE(10935)] = 431562, + [SMALL_STATE(10936)] = 431576, + [SMALL_STATE(10937)] = 431590, + [SMALL_STATE(10938)] = 431604, + [SMALL_STATE(10939)] = 431618, + [SMALL_STATE(10940)] = 431632, + [SMALL_STATE(10941)] = 431646, + [SMALL_STATE(10942)] = 431660, + [SMALL_STATE(10943)] = 431674, + [SMALL_STATE(10944)] = 431688, + [SMALL_STATE(10945)] = 431702, + [SMALL_STATE(10946)] = 431716, + [SMALL_STATE(10947)] = 431730, + [SMALL_STATE(10948)] = 431744, + [SMALL_STATE(10949)] = 431758, + [SMALL_STATE(10950)] = 431772, + [SMALL_STATE(10951)] = 431786, + [SMALL_STATE(10952)] = 431800, + [SMALL_STATE(10953)] = 431814, + [SMALL_STATE(10954)] = 431828, + [SMALL_STATE(10955)] = 431842, + [SMALL_STATE(10956)] = 431856, + [SMALL_STATE(10957)] = 431870, + [SMALL_STATE(10958)] = 431884, + [SMALL_STATE(10959)] = 431898, + [SMALL_STATE(10960)] = 431912, + [SMALL_STATE(10961)] = 431926, + [SMALL_STATE(10962)] = 431940, + [SMALL_STATE(10963)] = 431954, + [SMALL_STATE(10964)] = 431968, + [SMALL_STATE(10965)] = 431982, + [SMALL_STATE(10966)] = 431996, + [SMALL_STATE(10967)] = 432010, + [SMALL_STATE(10968)] = 432024, + [SMALL_STATE(10969)] = 432038, + [SMALL_STATE(10970)] = 432052, + [SMALL_STATE(10971)] = 432066, + [SMALL_STATE(10972)] = 432080, + [SMALL_STATE(10973)] = 432094, + [SMALL_STATE(10974)] = 432108, + [SMALL_STATE(10975)] = 432122, + [SMALL_STATE(10976)] = 432136, + [SMALL_STATE(10977)] = 432150, + [SMALL_STATE(10978)] = 432164, + [SMALL_STATE(10979)] = 432178, + [SMALL_STATE(10980)] = 432192, + [SMALL_STATE(10981)] = 432206, + [SMALL_STATE(10982)] = 432220, + [SMALL_STATE(10983)] = 432234, + [SMALL_STATE(10984)] = 432248, + [SMALL_STATE(10985)] = 432262, + [SMALL_STATE(10986)] = 432276, + [SMALL_STATE(10987)] = 432290, + [SMALL_STATE(10988)] = 432304, + [SMALL_STATE(10989)] = 432318, + [SMALL_STATE(10990)] = 432332, + [SMALL_STATE(10991)] = 432346, + [SMALL_STATE(10992)] = 432360, + [SMALL_STATE(10993)] = 432374, + [SMALL_STATE(10994)] = 432388, + [SMALL_STATE(10995)] = 432402, + [SMALL_STATE(10996)] = 432418, + [SMALL_STATE(10997)] = 432432, + [SMALL_STATE(10998)] = 432446, + [SMALL_STATE(10999)] = 432460, + [SMALL_STATE(11000)] = 432474, + [SMALL_STATE(11001)] = 432488, + [SMALL_STATE(11002)] = 432502, + [SMALL_STATE(11003)] = 432516, + [SMALL_STATE(11004)] = 432530, + [SMALL_STATE(11005)] = 432544, + [SMALL_STATE(11006)] = 432558, + [SMALL_STATE(11007)] = 432572, + [SMALL_STATE(11008)] = 432586, + [SMALL_STATE(11009)] = 432600, + [SMALL_STATE(11010)] = 432614, + [SMALL_STATE(11011)] = 432628, + [SMALL_STATE(11012)] = 432642, + [SMALL_STATE(11013)] = 432656, + [SMALL_STATE(11014)] = 432670, + [SMALL_STATE(11015)] = 432684, + [SMALL_STATE(11016)] = 432698, + [SMALL_STATE(11017)] = 432712, + [SMALL_STATE(11018)] = 432726, + [SMALL_STATE(11019)] = 432740, + [SMALL_STATE(11020)] = 432754, + [SMALL_STATE(11021)] = 432768, + [SMALL_STATE(11022)] = 432782, + [SMALL_STATE(11023)] = 432796, + [SMALL_STATE(11024)] = 432810, + [SMALL_STATE(11025)] = 432824, + [SMALL_STATE(11026)] = 432838, + [SMALL_STATE(11027)] = 432852, + [SMALL_STATE(11028)] = 432866, + [SMALL_STATE(11029)] = 432880, + [SMALL_STATE(11030)] = 432894, + [SMALL_STATE(11031)] = 432908, + [SMALL_STATE(11032)] = 432922, + [SMALL_STATE(11033)] = 432936, + [SMALL_STATE(11034)] = 432950, + [SMALL_STATE(11035)] = 432964, + [SMALL_STATE(11036)] = 432978, + [SMALL_STATE(11037)] = 432992, + [SMALL_STATE(11038)] = 433006, + [SMALL_STATE(11039)] = 433020, + [SMALL_STATE(11040)] = 433034, + [SMALL_STATE(11041)] = 433048, + [SMALL_STATE(11042)] = 433062, + [SMALL_STATE(11043)] = 433076, + [SMALL_STATE(11044)] = 433090, + [SMALL_STATE(11045)] = 433104, + [SMALL_STATE(11046)] = 433118, + [SMALL_STATE(11047)] = 433132, + [SMALL_STATE(11048)] = 433146, + [SMALL_STATE(11049)] = 433160, + [SMALL_STATE(11050)] = 433174, + [SMALL_STATE(11051)] = 433188, + [SMALL_STATE(11052)] = 433202, + [SMALL_STATE(11053)] = 433216, + [SMALL_STATE(11054)] = 433230, + [SMALL_STATE(11055)] = 433244, + [SMALL_STATE(11056)] = 433258, + [SMALL_STATE(11057)] = 433272, + [SMALL_STATE(11058)] = 433286, + [SMALL_STATE(11059)] = 433300, + [SMALL_STATE(11060)] = 433314, + [SMALL_STATE(11061)] = 433328, + [SMALL_STATE(11062)] = 433342, + [SMALL_STATE(11063)] = 433356, + [SMALL_STATE(11064)] = 433370, + [SMALL_STATE(11065)] = 433384, + [SMALL_STATE(11066)] = 433398, + [SMALL_STATE(11067)] = 433412, + [SMALL_STATE(11068)] = 433426, + [SMALL_STATE(11069)] = 433440, + [SMALL_STATE(11070)] = 433454, + [SMALL_STATE(11071)] = 433468, + [SMALL_STATE(11072)] = 433482, + [SMALL_STATE(11073)] = 433496, + [SMALL_STATE(11074)] = 433510, + [SMALL_STATE(11075)] = 433524, + [SMALL_STATE(11076)] = 433538, + [SMALL_STATE(11077)] = 433552, + [SMALL_STATE(11078)] = 433566, + [SMALL_STATE(11079)] = 433580, + [SMALL_STATE(11080)] = 433594, + [SMALL_STATE(11081)] = 433608, + [SMALL_STATE(11082)] = 433622, + [SMALL_STATE(11083)] = 433636, + [SMALL_STATE(11084)] = 433650, + [SMALL_STATE(11085)] = 433664, + [SMALL_STATE(11086)] = 433678, + [SMALL_STATE(11087)] = 433692, + [SMALL_STATE(11088)] = 433706, + [SMALL_STATE(11089)] = 433720, + [SMALL_STATE(11090)] = 433734, + [SMALL_STATE(11091)] = 433748, + [SMALL_STATE(11092)] = 433762, + [SMALL_STATE(11093)] = 433776, + [SMALL_STATE(11094)] = 433790, + [SMALL_STATE(11095)] = 433804, + [SMALL_STATE(11096)] = 433818, + [SMALL_STATE(11097)] = 433832, + [SMALL_STATE(11098)] = 433846, + [SMALL_STATE(11099)] = 433860, + [SMALL_STATE(11100)] = 433874, + [SMALL_STATE(11101)] = 433888, + [SMALL_STATE(11102)] = 433902, + [SMALL_STATE(11103)] = 433916, + [SMALL_STATE(11104)] = 433930, + [SMALL_STATE(11105)] = 433944, + [SMALL_STATE(11106)] = 433958, + [SMALL_STATE(11107)] = 433972, + [SMALL_STATE(11108)] = 433986, + [SMALL_STATE(11109)] = 434000, + [SMALL_STATE(11110)] = 434014, + [SMALL_STATE(11111)] = 434028, + [SMALL_STATE(11112)] = 434042, + [SMALL_STATE(11113)] = 434056, + [SMALL_STATE(11114)] = 434070, + [SMALL_STATE(11115)] = 434084, + [SMALL_STATE(11116)] = 434098, + [SMALL_STATE(11117)] = 434112, + [SMALL_STATE(11118)] = 434126, + [SMALL_STATE(11119)] = 434140, + [SMALL_STATE(11120)] = 434154, + [SMALL_STATE(11121)] = 434168, + [SMALL_STATE(11122)] = 434182, + [SMALL_STATE(11123)] = 434196, + [SMALL_STATE(11124)] = 434210, + [SMALL_STATE(11125)] = 434224, + [SMALL_STATE(11126)] = 434238, + [SMALL_STATE(11127)] = 434252, + [SMALL_STATE(11128)] = 434266, + [SMALL_STATE(11129)] = 434280, + [SMALL_STATE(11130)] = 434294, + [SMALL_STATE(11131)] = 434308, + [SMALL_STATE(11132)] = 434322, + [SMALL_STATE(11133)] = 434336, + [SMALL_STATE(11134)] = 434350, + [SMALL_STATE(11135)] = 434364, + [SMALL_STATE(11136)] = 434378, + [SMALL_STATE(11137)] = 434392, + [SMALL_STATE(11138)] = 434406, + [SMALL_STATE(11139)] = 434420, + [SMALL_STATE(11140)] = 434434, + [SMALL_STATE(11141)] = 434448, + [SMALL_STATE(11142)] = 434462, + [SMALL_STATE(11143)] = 434476, + [SMALL_STATE(11144)] = 434490, + [SMALL_STATE(11145)] = 434504, + [SMALL_STATE(11146)] = 434518, + [SMALL_STATE(11147)] = 434532, + [SMALL_STATE(11148)] = 434546, + [SMALL_STATE(11149)] = 434560, + [SMALL_STATE(11150)] = 434574, + [SMALL_STATE(11151)] = 434588, + [SMALL_STATE(11152)] = 434602, + [SMALL_STATE(11153)] = 434616, + [SMALL_STATE(11154)] = 434630, + [SMALL_STATE(11155)] = 434644, + [SMALL_STATE(11156)] = 434658, + [SMALL_STATE(11157)] = 434672, + [SMALL_STATE(11158)] = 434686, + [SMALL_STATE(11159)] = 434700, + [SMALL_STATE(11160)] = 434714, + [SMALL_STATE(11161)] = 434728, + [SMALL_STATE(11162)] = 434742, + [SMALL_STATE(11163)] = 434756, + [SMALL_STATE(11164)] = 434770, + [SMALL_STATE(11165)] = 434784, + [SMALL_STATE(11166)] = 434798, + [SMALL_STATE(11167)] = 434812, + [SMALL_STATE(11168)] = 434826, + [SMALL_STATE(11169)] = 434840, + [SMALL_STATE(11170)] = 434854, + [SMALL_STATE(11171)] = 434868, + [SMALL_STATE(11172)] = 434882, + [SMALL_STATE(11173)] = 434896, + [SMALL_STATE(11174)] = 434910, + [SMALL_STATE(11175)] = 434924, + [SMALL_STATE(11176)] = 434938, + [SMALL_STATE(11177)] = 434952, + [SMALL_STATE(11178)] = 434966, + [SMALL_STATE(11179)] = 434982, + [SMALL_STATE(11180)] = 434996, + [SMALL_STATE(11181)] = 435010, + [SMALL_STATE(11182)] = 435024, + [SMALL_STATE(11183)] = 435038, + [SMALL_STATE(11184)] = 435052, + [SMALL_STATE(11185)] = 435066, + [SMALL_STATE(11186)] = 435080, + [SMALL_STATE(11187)] = 435094, + [SMALL_STATE(11188)] = 435108, + [SMALL_STATE(11189)] = 435122, + [SMALL_STATE(11190)] = 435136, + [SMALL_STATE(11191)] = 435150, + [SMALL_STATE(11192)] = 435164, + [SMALL_STATE(11193)] = 435178, + [SMALL_STATE(11194)] = 435192, + [SMALL_STATE(11195)] = 435206, + [SMALL_STATE(11196)] = 435220, + [SMALL_STATE(11197)] = 435234, + [SMALL_STATE(11198)] = 435248, + [SMALL_STATE(11199)] = 435262, + [SMALL_STATE(11200)] = 435276, + [SMALL_STATE(11201)] = 435290, + [SMALL_STATE(11202)] = 435304, + [SMALL_STATE(11203)] = 435318, + [SMALL_STATE(11204)] = 435332, + [SMALL_STATE(11205)] = 435346, + [SMALL_STATE(11206)] = 435360, + [SMALL_STATE(11207)] = 435374, + [SMALL_STATE(11208)] = 435388, + [SMALL_STATE(11209)] = 435402, + [SMALL_STATE(11210)] = 435416, + [SMALL_STATE(11211)] = 435430, + [SMALL_STATE(11212)] = 435444, + [SMALL_STATE(11213)] = 435458, + [SMALL_STATE(11214)] = 435472, + [SMALL_STATE(11215)] = 435488, + [SMALL_STATE(11216)] = 435502, + [SMALL_STATE(11217)] = 435516, + [SMALL_STATE(11218)] = 435530, + [SMALL_STATE(11219)] = 435544, + [SMALL_STATE(11220)] = 435558, + [SMALL_STATE(11221)] = 435572, + [SMALL_STATE(11222)] = 435586, + [SMALL_STATE(11223)] = 435600, + [SMALL_STATE(11224)] = 435614, + [SMALL_STATE(11225)] = 435628, + [SMALL_STATE(11226)] = 435642, + [SMALL_STATE(11227)] = 435656, + [SMALL_STATE(11228)] = 435670, + [SMALL_STATE(11229)] = 435684, + [SMALL_STATE(11230)] = 435698, + [SMALL_STATE(11231)] = 435712, + [SMALL_STATE(11232)] = 435726, + [SMALL_STATE(11233)] = 435740, + [SMALL_STATE(11234)] = 435754, + [SMALL_STATE(11235)] = 435768, + [SMALL_STATE(11236)] = 435782, + [SMALL_STATE(11237)] = 435796, + [SMALL_STATE(11238)] = 435810, + [SMALL_STATE(11239)] = 435826, + [SMALL_STATE(11240)] = 435842, + [SMALL_STATE(11241)] = 435856, + [SMALL_STATE(11242)] = 435870, + [SMALL_STATE(11243)] = 435884, + [SMALL_STATE(11244)] = 435898, + [SMALL_STATE(11245)] = 435912, + [SMALL_STATE(11246)] = 435926, + [SMALL_STATE(11247)] = 435940, + [SMALL_STATE(11248)] = 435954, + [SMALL_STATE(11249)] = 435968, + [SMALL_STATE(11250)] = 435982, + [SMALL_STATE(11251)] = 435996, + [SMALL_STATE(11252)] = 436010, + [SMALL_STATE(11253)] = 436024, + [SMALL_STATE(11254)] = 436038, + [SMALL_STATE(11255)] = 436052, + [SMALL_STATE(11256)] = 436066, + [SMALL_STATE(11257)] = 436080, + [SMALL_STATE(11258)] = 436094, + [SMALL_STATE(11259)] = 436108, + [SMALL_STATE(11260)] = 436122, + [SMALL_STATE(11261)] = 436136, + [SMALL_STATE(11262)] = 436150, + [SMALL_STATE(11263)] = 436164, + [SMALL_STATE(11264)] = 436178, + [SMALL_STATE(11265)] = 436192, + [SMALL_STATE(11266)] = 436206, + [SMALL_STATE(11267)] = 436220, + [SMALL_STATE(11268)] = 436234, + [SMALL_STATE(11269)] = 436248, + [SMALL_STATE(11270)] = 436262, + [SMALL_STATE(11271)] = 436276, + [SMALL_STATE(11272)] = 436290, + [SMALL_STATE(11273)] = 436304, + [SMALL_STATE(11274)] = 436318, + [SMALL_STATE(11275)] = 436332, + [SMALL_STATE(11276)] = 436346, + [SMALL_STATE(11277)] = 436360, + [SMALL_STATE(11278)] = 436374, + [SMALL_STATE(11279)] = 436388, + [SMALL_STATE(11280)] = 436402, + [SMALL_STATE(11281)] = 436416, + [SMALL_STATE(11282)] = 436430, + [SMALL_STATE(11283)] = 436444, + [SMALL_STATE(11284)] = 436458, + [SMALL_STATE(11285)] = 436472, + [SMALL_STATE(11286)] = 436486, + [SMALL_STATE(11287)] = 436500, + [SMALL_STATE(11288)] = 436514, + [SMALL_STATE(11289)] = 436528, + [SMALL_STATE(11290)] = 436542, + [SMALL_STATE(11291)] = 436556, + [SMALL_STATE(11292)] = 436570, + [SMALL_STATE(11293)] = 436584, + [SMALL_STATE(11294)] = 436598, + [SMALL_STATE(11295)] = 436612, + [SMALL_STATE(11296)] = 436626, + [SMALL_STATE(11297)] = 436640, + [SMALL_STATE(11298)] = 436654, + [SMALL_STATE(11299)] = 436668, + [SMALL_STATE(11300)] = 436682, + [SMALL_STATE(11301)] = 436696, + [SMALL_STATE(11302)] = 436710, + [SMALL_STATE(11303)] = 436724, + [SMALL_STATE(11304)] = 436738, + [SMALL_STATE(11305)] = 436752, + [SMALL_STATE(11306)] = 436766, + [SMALL_STATE(11307)] = 436780, + [SMALL_STATE(11308)] = 436794, + [SMALL_STATE(11309)] = 436808, + [SMALL_STATE(11310)] = 436822, + [SMALL_STATE(11311)] = 436836, + [SMALL_STATE(11312)] = 436850, + [SMALL_STATE(11313)] = 436864, + [SMALL_STATE(11314)] = 436878, + [SMALL_STATE(11315)] = 436892, + [SMALL_STATE(11316)] = 436906, + [SMALL_STATE(11317)] = 436920, + [SMALL_STATE(11318)] = 436934, + [SMALL_STATE(11319)] = 436948, + [SMALL_STATE(11320)] = 436962, + [SMALL_STATE(11321)] = 436976, + [SMALL_STATE(11322)] = 436990, + [SMALL_STATE(11323)] = 437004, + [SMALL_STATE(11324)] = 437018, + [SMALL_STATE(11325)] = 437032, + [SMALL_STATE(11326)] = 437046, + [SMALL_STATE(11327)] = 437060, + [SMALL_STATE(11328)] = 437074, + [SMALL_STATE(11329)] = 437088, + [SMALL_STATE(11330)] = 437102, + [SMALL_STATE(11331)] = 437116, + [SMALL_STATE(11332)] = 437130, + [SMALL_STATE(11333)] = 437144, + [SMALL_STATE(11334)] = 437158, + [SMALL_STATE(11335)] = 437172, + [SMALL_STATE(11336)] = 437186, + [SMALL_STATE(11337)] = 437200, + [SMALL_STATE(11338)] = 437214, + [SMALL_STATE(11339)] = 437228, + [SMALL_STATE(11340)] = 437242, + [SMALL_STATE(11341)] = 437256, + [SMALL_STATE(11342)] = 437270, + [SMALL_STATE(11343)] = 437284, + [SMALL_STATE(11344)] = 437298, + [SMALL_STATE(11345)] = 437312, + [SMALL_STATE(11346)] = 437326, + [SMALL_STATE(11347)] = 437340, + [SMALL_STATE(11348)] = 437354, + [SMALL_STATE(11349)] = 437368, + [SMALL_STATE(11350)] = 437382, + [SMALL_STATE(11351)] = 437396, + [SMALL_STATE(11352)] = 437410, + [SMALL_STATE(11353)] = 437424, + [SMALL_STATE(11354)] = 437438, + [SMALL_STATE(11355)] = 437452, + [SMALL_STATE(11356)] = 437466, + [SMALL_STATE(11357)] = 437480, + [SMALL_STATE(11358)] = 437494, + [SMALL_STATE(11359)] = 437508, + [SMALL_STATE(11360)] = 437522, + [SMALL_STATE(11361)] = 437536, + [SMALL_STATE(11362)] = 437550, + [SMALL_STATE(11363)] = 437564, + [SMALL_STATE(11364)] = 437578, + [SMALL_STATE(11365)] = 437592, + [SMALL_STATE(11366)] = 437606, + [SMALL_STATE(11367)] = 437620, + [SMALL_STATE(11368)] = 437634, + [SMALL_STATE(11369)] = 437648, + [SMALL_STATE(11370)] = 437662, + [SMALL_STATE(11371)] = 437676, + [SMALL_STATE(11372)] = 437690, + [SMALL_STATE(11373)] = 437706, + [SMALL_STATE(11374)] = 437720, + [SMALL_STATE(11375)] = 437734, + [SMALL_STATE(11376)] = 437748, + [SMALL_STATE(11377)] = 437762, + [SMALL_STATE(11378)] = 437776, + [SMALL_STATE(11379)] = 437790, + [SMALL_STATE(11380)] = 437804, + [SMALL_STATE(11381)] = 437818, + [SMALL_STATE(11382)] = 437832, + [SMALL_STATE(11383)] = 437846, + [SMALL_STATE(11384)] = 437860, + [SMALL_STATE(11385)] = 437874, + [SMALL_STATE(11386)] = 437888, + [SMALL_STATE(11387)] = 437902, + [SMALL_STATE(11388)] = 437916, + [SMALL_STATE(11389)] = 437930, + [SMALL_STATE(11390)] = 437944, + [SMALL_STATE(11391)] = 437958, + [SMALL_STATE(11392)] = 437972, + [SMALL_STATE(11393)] = 437986, + [SMALL_STATE(11394)] = 438000, + [SMALL_STATE(11395)] = 438014, + [SMALL_STATE(11396)] = 438028, + [SMALL_STATE(11397)] = 438044, + [SMALL_STATE(11398)] = 438058, + [SMALL_STATE(11399)] = 438072, + [SMALL_STATE(11400)] = 438086, + [SMALL_STATE(11401)] = 438100, + [SMALL_STATE(11402)] = 438114, + [SMALL_STATE(11403)] = 438128, + [SMALL_STATE(11404)] = 438142, + [SMALL_STATE(11405)] = 438156, + [SMALL_STATE(11406)] = 438170, + [SMALL_STATE(11407)] = 438184, + [SMALL_STATE(11408)] = 438198, + [SMALL_STATE(11409)] = 438212, + [SMALL_STATE(11410)] = 438226, + [SMALL_STATE(11411)] = 438240, + [SMALL_STATE(11412)] = 438254, + [SMALL_STATE(11413)] = 438268, + [SMALL_STATE(11414)] = 438282, + [SMALL_STATE(11415)] = 438296, + [SMALL_STATE(11416)] = 438310, + [SMALL_STATE(11417)] = 438324, + [SMALL_STATE(11418)] = 438338, + [SMALL_STATE(11419)] = 438352, + [SMALL_STATE(11420)] = 438366, + [SMALL_STATE(11421)] = 438380, + [SMALL_STATE(11422)] = 438394, + [SMALL_STATE(11423)] = 438408, + [SMALL_STATE(11424)] = 438422, + [SMALL_STATE(11425)] = 438436, + [SMALL_STATE(11426)] = 438450, + [SMALL_STATE(11427)] = 438464, + [SMALL_STATE(11428)] = 438478, + [SMALL_STATE(11429)] = 438494, + [SMALL_STATE(11430)] = 438508, + [SMALL_STATE(11431)] = 438524, + [SMALL_STATE(11432)] = 438538, + [SMALL_STATE(11433)] = 438552, + [SMALL_STATE(11434)] = 438566, + [SMALL_STATE(11435)] = 438580, + [SMALL_STATE(11436)] = 438594, + [SMALL_STATE(11437)] = 438608, + [SMALL_STATE(11438)] = 438622, + [SMALL_STATE(11439)] = 438636, + [SMALL_STATE(11440)] = 438650, + [SMALL_STATE(11441)] = 438664, + [SMALL_STATE(11442)] = 438678, + [SMALL_STATE(11443)] = 438692, + [SMALL_STATE(11444)] = 438706, + [SMALL_STATE(11445)] = 438720, + [SMALL_STATE(11446)] = 438734, + [SMALL_STATE(11447)] = 438748, + [SMALL_STATE(11448)] = 438762, + [SMALL_STATE(11449)] = 438776, + [SMALL_STATE(11450)] = 438790, + [SMALL_STATE(11451)] = 438804, + [SMALL_STATE(11452)] = 438818, + [SMALL_STATE(11453)] = 438832, + [SMALL_STATE(11454)] = 438846, + [SMALL_STATE(11455)] = 438860, + [SMALL_STATE(11456)] = 438874, + [SMALL_STATE(11457)] = 438888, + [SMALL_STATE(11458)] = 438902, + [SMALL_STATE(11459)] = 438916, + [SMALL_STATE(11460)] = 438930, + [SMALL_STATE(11461)] = 438944, + [SMALL_STATE(11462)] = 438958, + [SMALL_STATE(11463)] = 438972, + [SMALL_STATE(11464)] = 438986, + [SMALL_STATE(11465)] = 439000, + [SMALL_STATE(11466)] = 439014, + [SMALL_STATE(11467)] = 439028, + [SMALL_STATE(11468)] = 439042, + [SMALL_STATE(11469)] = 439056, + [SMALL_STATE(11470)] = 439070, + [SMALL_STATE(11471)] = 439084, + [SMALL_STATE(11472)] = 439098, + [SMALL_STATE(11473)] = 439112, + [SMALL_STATE(11474)] = 439126, + [SMALL_STATE(11475)] = 439140, + [SMALL_STATE(11476)] = 439154, + [SMALL_STATE(11477)] = 439168, + [SMALL_STATE(11478)] = 439182, + [SMALL_STATE(11479)] = 439196, + [SMALL_STATE(11480)] = 439210, + [SMALL_STATE(11481)] = 439224, + [SMALL_STATE(11482)] = 439238, + [SMALL_STATE(11483)] = 439252, + [SMALL_STATE(11484)] = 439266, + [SMALL_STATE(11485)] = 439280, + [SMALL_STATE(11486)] = 439294, + [SMALL_STATE(11487)] = 439308, + [SMALL_STATE(11488)] = 439322, + [SMALL_STATE(11489)] = 439336, + [SMALL_STATE(11490)] = 439350, + [SMALL_STATE(11491)] = 439364, + [SMALL_STATE(11492)] = 439378, + [SMALL_STATE(11493)] = 439392, + [SMALL_STATE(11494)] = 439406, + [SMALL_STATE(11495)] = 439420, + [SMALL_STATE(11496)] = 439434, + [SMALL_STATE(11497)] = 439448, + [SMALL_STATE(11498)] = 439462, + [SMALL_STATE(11499)] = 439476, + [SMALL_STATE(11500)] = 439490, + [SMALL_STATE(11501)] = 439504, + [SMALL_STATE(11502)] = 439518, + [SMALL_STATE(11503)] = 439532, + [SMALL_STATE(11504)] = 439546, + [SMALL_STATE(11505)] = 439560, + [SMALL_STATE(11506)] = 439574, + [SMALL_STATE(11507)] = 439588, + [SMALL_STATE(11508)] = 439602, + [SMALL_STATE(11509)] = 439616, + [SMALL_STATE(11510)] = 439630, + [SMALL_STATE(11511)] = 439644, + [SMALL_STATE(11512)] = 439658, + [SMALL_STATE(11513)] = 439672, + [SMALL_STATE(11514)] = 439686, + [SMALL_STATE(11515)] = 439700, + [SMALL_STATE(11516)] = 439714, + [SMALL_STATE(11517)] = 439728, + [SMALL_STATE(11518)] = 439742, + [SMALL_STATE(11519)] = 439756, + [SMALL_STATE(11520)] = 439770, + [SMALL_STATE(11521)] = 439784, + [SMALL_STATE(11522)] = 439798, + [SMALL_STATE(11523)] = 439812, + [SMALL_STATE(11524)] = 439826, + [SMALL_STATE(11525)] = 439840, + [SMALL_STATE(11526)] = 439854, + [SMALL_STATE(11527)] = 439868, + [SMALL_STATE(11528)] = 439882, + [SMALL_STATE(11529)] = 439896, + [SMALL_STATE(11530)] = 439912, + [SMALL_STATE(11531)] = 439926, + [SMALL_STATE(11532)] = 439940, + [SMALL_STATE(11533)] = 439954, + [SMALL_STATE(11534)] = 439968, + [SMALL_STATE(11535)] = 439982, + [SMALL_STATE(11536)] = 439996, + [SMALL_STATE(11537)] = 440010, + [SMALL_STATE(11538)] = 440024, + [SMALL_STATE(11539)] = 440038, + [SMALL_STATE(11540)] = 440052, + [SMALL_STATE(11541)] = 440066, + [SMALL_STATE(11542)] = 440080, + [SMALL_STATE(11543)] = 440094, + [SMALL_STATE(11544)] = 440108, + [SMALL_STATE(11545)] = 440122, + [SMALL_STATE(11546)] = 440136, + [SMALL_STATE(11547)] = 440150, + [SMALL_STATE(11548)] = 440164, + [SMALL_STATE(11549)] = 440178, + [SMALL_STATE(11550)] = 440192, + [SMALL_STATE(11551)] = 440206, + [SMALL_STATE(11552)] = 440220, + [SMALL_STATE(11553)] = 440234, + [SMALL_STATE(11554)] = 440248, + [SMALL_STATE(11555)] = 440262, + [SMALL_STATE(11556)] = 440276, + [SMALL_STATE(11557)] = 440290, + [SMALL_STATE(11558)] = 440304, + [SMALL_STATE(11559)] = 440318, + [SMALL_STATE(11560)] = 440332, + [SMALL_STATE(11561)] = 440346, + [SMALL_STATE(11562)] = 440360, + [SMALL_STATE(11563)] = 440374, + [SMALL_STATE(11564)] = 440388, + [SMALL_STATE(11565)] = 440402, + [SMALL_STATE(11566)] = 440416, + [SMALL_STATE(11567)] = 440430, + [SMALL_STATE(11568)] = 440444, + [SMALL_STATE(11569)] = 440458, + [SMALL_STATE(11570)] = 440472, + [SMALL_STATE(11571)] = 440486, + [SMALL_STATE(11572)] = 440500, + [SMALL_STATE(11573)] = 440514, + [SMALL_STATE(11574)] = 440528, + [SMALL_STATE(11575)] = 440542, + [SMALL_STATE(11576)] = 440556, + [SMALL_STATE(11577)] = 440570, + [SMALL_STATE(11578)] = 440584, + [SMALL_STATE(11579)] = 440598, + [SMALL_STATE(11580)] = 440612, + [SMALL_STATE(11581)] = 440626, + [SMALL_STATE(11582)] = 440640, + [SMALL_STATE(11583)] = 440654, + [SMALL_STATE(11584)] = 440668, + [SMALL_STATE(11585)] = 440682, + [SMALL_STATE(11586)] = 440696, + [SMALL_STATE(11587)] = 440710, + [SMALL_STATE(11588)] = 440724, + [SMALL_STATE(11589)] = 440738, + [SMALL_STATE(11590)] = 440752, + [SMALL_STATE(11591)] = 440766, + [SMALL_STATE(11592)] = 440780, + [SMALL_STATE(11593)] = 440794, + [SMALL_STATE(11594)] = 440808, + [SMALL_STATE(11595)] = 440822, + [SMALL_STATE(11596)] = 440836, + [SMALL_STATE(11597)] = 440850, + [SMALL_STATE(11598)] = 440864, + [SMALL_STATE(11599)] = 440878, + [SMALL_STATE(11600)] = 440892, + [SMALL_STATE(11601)] = 440906, + [SMALL_STATE(11602)] = 440920, + [SMALL_STATE(11603)] = 440934, + [SMALL_STATE(11604)] = 440948, + [SMALL_STATE(11605)] = 440962, + [SMALL_STATE(11606)] = 440976, + [SMALL_STATE(11607)] = 440990, + [SMALL_STATE(11608)] = 441004, + [SMALL_STATE(11609)] = 441018, + [SMALL_STATE(11610)] = 441032, + [SMALL_STATE(11611)] = 441046, + [SMALL_STATE(11612)] = 441060, + [SMALL_STATE(11613)] = 441074, + [SMALL_STATE(11614)] = 441088, + [SMALL_STATE(11615)] = 441102, + [SMALL_STATE(11616)] = 441116, + [SMALL_STATE(11617)] = 441130, + [SMALL_STATE(11618)] = 441144, + [SMALL_STATE(11619)] = 441158, + [SMALL_STATE(11620)] = 441172, + [SMALL_STATE(11621)] = 441186, + [SMALL_STATE(11622)] = 441200, + [SMALL_STATE(11623)] = 441214, + [SMALL_STATE(11624)] = 441228, + [SMALL_STATE(11625)] = 441242, + [SMALL_STATE(11626)] = 441256, + [SMALL_STATE(11627)] = 441270, + [SMALL_STATE(11628)] = 441284, + [SMALL_STATE(11629)] = 441298, + [SMALL_STATE(11630)] = 441312, + [SMALL_STATE(11631)] = 441326, + [SMALL_STATE(11632)] = 441340, + [SMALL_STATE(11633)] = 441354, + [SMALL_STATE(11634)] = 441368, + [SMALL_STATE(11635)] = 441382, + [SMALL_STATE(11636)] = 441396, + [SMALL_STATE(11637)] = 441410, + [SMALL_STATE(11638)] = 441424, + [SMALL_STATE(11639)] = 441438, + [SMALL_STATE(11640)] = 441452, + [SMALL_STATE(11641)] = 441466, + [SMALL_STATE(11642)] = 441480, + [SMALL_STATE(11643)] = 441494, + [SMALL_STATE(11644)] = 441508, + [SMALL_STATE(11645)] = 441522, + [SMALL_STATE(11646)] = 441536, + [SMALL_STATE(11647)] = 441550, + [SMALL_STATE(11648)] = 441564, + [SMALL_STATE(11649)] = 441578, + [SMALL_STATE(11650)] = 441592, + [SMALL_STATE(11651)] = 441606, + [SMALL_STATE(11652)] = 441622, + [SMALL_STATE(11653)] = 441636, + [SMALL_STATE(11654)] = 441650, + [SMALL_STATE(11655)] = 441664, + [SMALL_STATE(11656)] = 441678, + [SMALL_STATE(11657)] = 441692, + [SMALL_STATE(11658)] = 441706, + [SMALL_STATE(11659)] = 441720, + [SMALL_STATE(11660)] = 441734, + [SMALL_STATE(11661)] = 441748, + [SMALL_STATE(11662)] = 441762, + [SMALL_STATE(11663)] = 441776, + [SMALL_STATE(11664)] = 441790, + [SMALL_STATE(11665)] = 441804, + [SMALL_STATE(11666)] = 441818, + [SMALL_STATE(11667)] = 441832, + [SMALL_STATE(11668)] = 441846, + [SMALL_STATE(11669)] = 441860, + [SMALL_STATE(11670)] = 441874, + [SMALL_STATE(11671)] = 441888, + [SMALL_STATE(11672)] = 441902, + [SMALL_STATE(11673)] = 441916, + [SMALL_STATE(11674)] = 441930, + [SMALL_STATE(11675)] = 441944, + [SMALL_STATE(11676)] = 441958, + [SMALL_STATE(11677)] = 441972, + [SMALL_STATE(11678)] = 441986, + [SMALL_STATE(11679)] = 442000, + [SMALL_STATE(11680)] = 442014, + [SMALL_STATE(11681)] = 442028, + [SMALL_STATE(11682)] = 442042, + [SMALL_STATE(11683)] = 442056, + [SMALL_STATE(11684)] = 442070, + [SMALL_STATE(11685)] = 442084, + [SMALL_STATE(11686)] = 442098, + [SMALL_STATE(11687)] = 442112, + [SMALL_STATE(11688)] = 442126, + [SMALL_STATE(11689)] = 442140, + [SMALL_STATE(11690)] = 442154, + [SMALL_STATE(11691)] = 442168, + [SMALL_STATE(11692)] = 442182, + [SMALL_STATE(11693)] = 442196, + [SMALL_STATE(11694)] = 442210, + [SMALL_STATE(11695)] = 442224, + [SMALL_STATE(11696)] = 442238, + [SMALL_STATE(11697)] = 442252, + [SMALL_STATE(11698)] = 442266, + [SMALL_STATE(11699)] = 442280, + [SMALL_STATE(11700)] = 442294, + [SMALL_STATE(11701)] = 442308, + [SMALL_STATE(11702)] = 442322, + [SMALL_STATE(11703)] = 442336, + [SMALL_STATE(11704)] = 442350, + [SMALL_STATE(11705)] = 442364, + [SMALL_STATE(11706)] = 442378, + [SMALL_STATE(11707)] = 442392, + [SMALL_STATE(11708)] = 442406, + [SMALL_STATE(11709)] = 442420, + [SMALL_STATE(11710)] = 442434, + [SMALL_STATE(11711)] = 442448, + [SMALL_STATE(11712)] = 442462, + [SMALL_STATE(11713)] = 442476, + [SMALL_STATE(11714)] = 442490, + [SMALL_STATE(11715)] = 442504, + [SMALL_STATE(11716)] = 442518, + [SMALL_STATE(11717)] = 442532, + [SMALL_STATE(11718)] = 442546, + [SMALL_STATE(11719)] = 442560, + [SMALL_STATE(11720)] = 442574, + [SMALL_STATE(11721)] = 442588, + [SMALL_STATE(11722)] = 442602, + [SMALL_STATE(11723)] = 442616, + [SMALL_STATE(11724)] = 442630, + [SMALL_STATE(11725)] = 442644, + [SMALL_STATE(11726)] = 442658, + [SMALL_STATE(11727)] = 442672, + [SMALL_STATE(11728)] = 442686, + [SMALL_STATE(11729)] = 442700, + [SMALL_STATE(11730)] = 442714, + [SMALL_STATE(11731)] = 442728, + [SMALL_STATE(11732)] = 442742, + [SMALL_STATE(11733)] = 442756, + [SMALL_STATE(11734)] = 442770, + [SMALL_STATE(11735)] = 442784, + [SMALL_STATE(11736)] = 442798, + [SMALL_STATE(11737)] = 442812, + [SMALL_STATE(11738)] = 442826, + [SMALL_STATE(11739)] = 442840, + [SMALL_STATE(11740)] = 442854, + [SMALL_STATE(11741)] = 442868, + [SMALL_STATE(11742)] = 442882, + [SMALL_STATE(11743)] = 442896, + [SMALL_STATE(11744)] = 442910, + [SMALL_STATE(11745)] = 442924, + [SMALL_STATE(11746)] = 442938, + [SMALL_STATE(11747)] = 442952, + [SMALL_STATE(11748)] = 442966, + [SMALL_STATE(11749)] = 442980, + [SMALL_STATE(11750)] = 442994, + [SMALL_STATE(11751)] = 443008, + [SMALL_STATE(11752)] = 443024, + [SMALL_STATE(11753)] = 443038, + [SMALL_STATE(11754)] = 443052, + [SMALL_STATE(11755)] = 443066, + [SMALL_STATE(11756)] = 443080, + [SMALL_STATE(11757)] = 443094, + [SMALL_STATE(11758)] = 443108, + [SMALL_STATE(11759)] = 443122, + [SMALL_STATE(11760)] = 443136, + [SMALL_STATE(11761)] = 443150, + [SMALL_STATE(11762)] = 443164, + [SMALL_STATE(11763)] = 443178, + [SMALL_STATE(11764)] = 443192, + [SMALL_STATE(11765)] = 443206, + [SMALL_STATE(11766)] = 443220, + [SMALL_STATE(11767)] = 443234, + [SMALL_STATE(11768)] = 443248, + [SMALL_STATE(11769)] = 443262, + [SMALL_STATE(11770)] = 443276, + [SMALL_STATE(11771)] = 443290, + [SMALL_STATE(11772)] = 443304, + [SMALL_STATE(11773)] = 443318, + [SMALL_STATE(11774)] = 443332, + [SMALL_STATE(11775)] = 443346, + [SMALL_STATE(11776)] = 443360, + [SMALL_STATE(11777)] = 443374, + [SMALL_STATE(11778)] = 443388, + [SMALL_STATE(11779)] = 443402, + [SMALL_STATE(11780)] = 443416, + [SMALL_STATE(11781)] = 443430, + [SMALL_STATE(11782)] = 443444, + [SMALL_STATE(11783)] = 443458, + [SMALL_STATE(11784)] = 443472, + [SMALL_STATE(11785)] = 443486, + [SMALL_STATE(11786)] = 443500, + [SMALL_STATE(11787)] = 443514, + [SMALL_STATE(11788)] = 443528, + [SMALL_STATE(11789)] = 443542, + [SMALL_STATE(11790)] = 443556, + [SMALL_STATE(11791)] = 443570, + [SMALL_STATE(11792)] = 443584, + [SMALL_STATE(11793)] = 443598, + [SMALL_STATE(11794)] = 443612, + [SMALL_STATE(11795)] = 443626, + [SMALL_STATE(11796)] = 443640, + [SMALL_STATE(11797)] = 443654, + [SMALL_STATE(11798)] = 443668, + [SMALL_STATE(11799)] = 443682, + [SMALL_STATE(11800)] = 443696, + [SMALL_STATE(11801)] = 443710, + [SMALL_STATE(11802)] = 443724, + [SMALL_STATE(11803)] = 443738, + [SMALL_STATE(11804)] = 443752, + [SMALL_STATE(11805)] = 443766, + [SMALL_STATE(11806)] = 443780, + [SMALL_STATE(11807)] = 443794, + [SMALL_STATE(11808)] = 443808, + [SMALL_STATE(11809)] = 443822, + [SMALL_STATE(11810)] = 443836, + [SMALL_STATE(11811)] = 443850, + [SMALL_STATE(11812)] = 443864, + [SMALL_STATE(11813)] = 443878, + [SMALL_STATE(11814)] = 443892, + [SMALL_STATE(11815)] = 443906, + [SMALL_STATE(11816)] = 443920, + [SMALL_STATE(11817)] = 443934, + [SMALL_STATE(11818)] = 443948, + [SMALL_STATE(11819)] = 443962, + [SMALL_STATE(11820)] = 443976, + [SMALL_STATE(11821)] = 443990, + [SMALL_STATE(11822)] = 444004, + [SMALL_STATE(11823)] = 444018, + [SMALL_STATE(11824)] = 444032, + [SMALL_STATE(11825)] = 444046, + [SMALL_STATE(11826)] = 444060, + [SMALL_STATE(11827)] = 444074, + [SMALL_STATE(11828)] = 444088, + [SMALL_STATE(11829)] = 444102, + [SMALL_STATE(11830)] = 444116, + [SMALL_STATE(11831)] = 444130, + [SMALL_STATE(11832)] = 444144, + [SMALL_STATE(11833)] = 444158, + [SMALL_STATE(11834)] = 444172, + [SMALL_STATE(11835)] = 444186, + [SMALL_STATE(11836)] = 444200, + [SMALL_STATE(11837)] = 444214, + [SMALL_STATE(11838)] = 444228, + [SMALL_STATE(11839)] = 444242, + [SMALL_STATE(11840)] = 444256, + [SMALL_STATE(11841)] = 444270, + [SMALL_STATE(11842)] = 444284, + [SMALL_STATE(11843)] = 444298, + [SMALL_STATE(11844)] = 444312, + [SMALL_STATE(11845)] = 444326, + [SMALL_STATE(11846)] = 444340, + [SMALL_STATE(11847)] = 444354, + [SMALL_STATE(11848)] = 444368, + [SMALL_STATE(11849)] = 444382, + [SMALL_STATE(11850)] = 444396, + [SMALL_STATE(11851)] = 444410, + [SMALL_STATE(11852)] = 444424, + [SMALL_STATE(11853)] = 444438, + [SMALL_STATE(11854)] = 444452, + [SMALL_STATE(11855)] = 444466, + [SMALL_STATE(11856)] = 444480, + [SMALL_STATE(11857)] = 444494, + [SMALL_STATE(11858)] = 444508, + [SMALL_STATE(11859)] = 444522, + [SMALL_STATE(11860)] = 444536, + [SMALL_STATE(11861)] = 444550, + [SMALL_STATE(11862)] = 444564, + [SMALL_STATE(11863)] = 444578, + [SMALL_STATE(11864)] = 444592, + [SMALL_STATE(11865)] = 444606, + [SMALL_STATE(11866)] = 444620, + [SMALL_STATE(11867)] = 444634, + [SMALL_STATE(11868)] = 444648, + [SMALL_STATE(11869)] = 444664, + [SMALL_STATE(11870)] = 444678, + [SMALL_STATE(11871)] = 444692, + [SMALL_STATE(11872)] = 444706, + [SMALL_STATE(11873)] = 444720, + [SMALL_STATE(11874)] = 444734, + [SMALL_STATE(11875)] = 444748, + [SMALL_STATE(11876)] = 444762, + [SMALL_STATE(11877)] = 444776, + [SMALL_STATE(11878)] = 444790, + [SMALL_STATE(11879)] = 444804, + [SMALL_STATE(11880)] = 444818, + [SMALL_STATE(11881)] = 444832, + [SMALL_STATE(11882)] = 444846, + [SMALL_STATE(11883)] = 444860, + [SMALL_STATE(11884)] = 444874, + [SMALL_STATE(11885)] = 444888, + [SMALL_STATE(11886)] = 444902, + [SMALL_STATE(11887)] = 444916, + [SMALL_STATE(11888)] = 444930, + [SMALL_STATE(11889)] = 444944, + [SMALL_STATE(11890)] = 444958, + [SMALL_STATE(11891)] = 444972, + [SMALL_STATE(11892)] = 444986, + [SMALL_STATE(11893)] = 445000, + [SMALL_STATE(11894)] = 445014, + [SMALL_STATE(11895)] = 445028, + [SMALL_STATE(11896)] = 445042, + [SMALL_STATE(11897)] = 445056, + [SMALL_STATE(11898)] = 445070, + [SMALL_STATE(11899)] = 445084, + [SMALL_STATE(11900)] = 445098, + [SMALL_STATE(11901)] = 445112, + [SMALL_STATE(11902)] = 445126, + [SMALL_STATE(11903)] = 445140, + [SMALL_STATE(11904)] = 445154, + [SMALL_STATE(11905)] = 445168, + [SMALL_STATE(11906)] = 445182, + [SMALL_STATE(11907)] = 445196, + [SMALL_STATE(11908)] = 445210, + [SMALL_STATE(11909)] = 445224, + [SMALL_STATE(11910)] = 445238, + [SMALL_STATE(11911)] = 445252, + [SMALL_STATE(11912)] = 445266, + [SMALL_STATE(11913)] = 445280, + [SMALL_STATE(11914)] = 445294, + [SMALL_STATE(11915)] = 445308, + [SMALL_STATE(11916)] = 445322, + [SMALL_STATE(11917)] = 445336, + [SMALL_STATE(11918)] = 445350, + [SMALL_STATE(11919)] = 445364, + [SMALL_STATE(11920)] = 445378, + [SMALL_STATE(11921)] = 445392, + [SMALL_STATE(11922)] = 445406, + [SMALL_STATE(11923)] = 445420, + [SMALL_STATE(11924)] = 445434, + [SMALL_STATE(11925)] = 445448, + [SMALL_STATE(11926)] = 445462, + [SMALL_STATE(11927)] = 445478, + [SMALL_STATE(11928)] = 445492, + [SMALL_STATE(11929)] = 445506, + [SMALL_STATE(11930)] = 445520, + [SMALL_STATE(11931)] = 445534, + [SMALL_STATE(11932)] = 445548, + [SMALL_STATE(11933)] = 445562, + [SMALL_STATE(11934)] = 445576, + [SMALL_STATE(11935)] = 445590, + [SMALL_STATE(11936)] = 445604, + [SMALL_STATE(11937)] = 445618, + [SMALL_STATE(11938)] = 445632, + [SMALL_STATE(11939)] = 445646, + [SMALL_STATE(11940)] = 445660, + [SMALL_STATE(11941)] = 445674, + [SMALL_STATE(11942)] = 445688, + [SMALL_STATE(11943)] = 445704, + [SMALL_STATE(11944)] = 445718, + [SMALL_STATE(11945)] = 445732, + [SMALL_STATE(11946)] = 445746, + [SMALL_STATE(11947)] = 445760, + [SMALL_STATE(11948)] = 445774, + [SMALL_STATE(11949)] = 445788, + [SMALL_STATE(11950)] = 445802, + [SMALL_STATE(11951)] = 445816, + [SMALL_STATE(11952)] = 445830, + [SMALL_STATE(11953)] = 445844, + [SMALL_STATE(11954)] = 445858, + [SMALL_STATE(11955)] = 445872, + [SMALL_STATE(11956)] = 445886, + [SMALL_STATE(11957)] = 445900, + [SMALL_STATE(11958)] = 445914, + [SMALL_STATE(11959)] = 445928, + [SMALL_STATE(11960)] = 445942, + [SMALL_STATE(11961)] = 445956, + [SMALL_STATE(11962)] = 445970, + [SMALL_STATE(11963)] = 445984, + [SMALL_STATE(11964)] = 445998, + [SMALL_STATE(11965)] = 446012, + [SMALL_STATE(11966)] = 446026, + [SMALL_STATE(11967)] = 446040, + [SMALL_STATE(11968)] = 446054, + [SMALL_STATE(11969)] = 446068, + [SMALL_STATE(11970)] = 446082, + [SMALL_STATE(11971)] = 446096, + [SMALL_STATE(11972)] = 446110, + [SMALL_STATE(11973)] = 446124, + [SMALL_STATE(11974)] = 446138, + [SMALL_STATE(11975)] = 446152, + [SMALL_STATE(11976)] = 446166, + [SMALL_STATE(11977)] = 446180, + [SMALL_STATE(11978)] = 446194, + [SMALL_STATE(11979)] = 446208, + [SMALL_STATE(11980)] = 446222, + [SMALL_STATE(11981)] = 446236, + [SMALL_STATE(11982)] = 446240, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -705568,14 +705590,14 @@ static const TSParseActionEntry ts_parse_actions[] = { [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10409), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10035), [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9260), [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9044), [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9156), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10267), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10357), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10280), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10371), [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8212), [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9475), [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9518), @@ -705586,7 +705608,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10295), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10308), [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9274), [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9268), [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), @@ -705607,7 +705629,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10402), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10480), [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8744), @@ -705629,7 +705651,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10491), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9953), [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9255), [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9019), @@ -705697,7 +705719,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10502), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10013), [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9267), [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9017), @@ -705763,7 +705785,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10450), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10055), [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9214), [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9043), @@ -705824,7 +705846,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10424), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9979), [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9275), [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9018), @@ -705895,7 +705917,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10454), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9990), [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9234), [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8945), @@ -705956,7 +705978,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5521), [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5443), [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10469), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10069), [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9225), [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9000), @@ -706042,7 +706064,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10467), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9998), [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9293), [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9105), @@ -706191,7 +706213,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10390), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9966), [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9228), [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8898), @@ -706236,9 +706258,9 @@ static const TSParseActionEntry ts_parse_actions[] = { [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10330), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10344), [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10331), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10345), [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8203), [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9378), [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9601), @@ -706247,7 +706269,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11097), [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10335), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10349), [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9235), [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9233), [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), @@ -706258,7 +706280,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10160), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10173), [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10415), [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), @@ -706287,7 +706309,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4694), [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10399), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10029), [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9323), [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8918), @@ -706344,7 +706366,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9085), [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9057), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9948), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9950), [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9090), [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8948), @@ -706373,7 +706395,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10471), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10343), [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9309), [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8957), @@ -706438,7 +706460,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6259), [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6494), [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10027), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10037), [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8288), [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7928), [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5457), @@ -706461,15 +706483,15 @@ static const TSParseActionEntry ts_parse_actions[] = { [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2976), [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2956), [1812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2958), - [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10409), + [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10035), [1818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2976), [1821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9260), [1824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9044), [1827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1168), [1830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9156), - [1833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10267), + [1833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10280), [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), - [1838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10357), + [1838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10371), [1841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(8212), [1844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9475), [1847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9518), @@ -706480,7 +706502,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [1862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1263), [1865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1335), [1868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(5505), - [1871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10295), + [1871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10308), [1874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9274), [1877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9268), [1880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(602), @@ -706501,7 +706523,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [1925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(126), [1928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1576), [1931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1602), - [1934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10402), + [1934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10480), [1937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1603), [1940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1037), [1943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(8744), @@ -706569,7 +706591,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6200), [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6201), [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10486), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9909), [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9317), [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8958), @@ -706647,7 +706669,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6590), [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6360), [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10423), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10041), [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6590), [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9292), [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8976), @@ -706775,9 +706797,9 @@ static const TSParseActionEntry ts_parse_actions[] = { [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9909), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9910), [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 1, 0, 0), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9934), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9936), [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8310), [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9478), [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9374), @@ -706786,7 +706808,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10712), [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9913), + [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9914), [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9207), [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9221), [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), @@ -706797,7 +706819,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10269), + [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10282), [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10478), [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), @@ -706826,7 +706848,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6464), [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9084), [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7942), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10045), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10057), [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9089), [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in, 4, 0, 139), [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), @@ -706842,7 +706864,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6810), [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6817), [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6824), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10445), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9935), [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9296), [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9101), @@ -706942,7 +706964,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10006), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10014), [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), @@ -707157,7 +707179,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11735), [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10298), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10311), [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), @@ -707307,7 +707329,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [3560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(4372), [3563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(4373), [3566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(4374), - [3569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(10471), + [3569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(10343), [3572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(4372), [3575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(9309), [3578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(8957), @@ -707560,7 +707582,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [4109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(4372), [4112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(4373), [4115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(4374), - [4118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(10471), + [4118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(10343), [4121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(4372), [4124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(9309), [4127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(8957), @@ -710299,10 +710321,10 @@ static const TSParseActionEntry ts_parse_actions[] = { [9854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extend, 2, 0, 0), [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9004), [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8101), - [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9910), + [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9911), [9862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9158), [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9191), - [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10287), + [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10300), [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9439), [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7649), [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7820), @@ -710337,7 +710359,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [9931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 7, 0, 151), [9933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 50), [9935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 7, 0, 151), - [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10422), + [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10404), [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11865), [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11866), [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11979), @@ -710472,7 +710494,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [10209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9384), [10211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9385), [10213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), - [10215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10162), + [10215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10175), [10217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7661), [10219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9408), [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9409), @@ -710483,7 +710505,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9406), [10233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9483), [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9484), - [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10270), + [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10283), [10239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_forall_repeat1, 2, 0, 0), SHIFT_REPEAT(11554), [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), [10244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7661), @@ -710577,7 +710599,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), [10426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_repeat1, 2, 0, 0), - [10428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_repeat1, 2, 0, 0), SHIFT_REPEAT(9910), + [10428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_repeat1, 2, 0, 0), SHIFT_REPEAT(9911), [10431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_param_repeat1, 2, 0, 0), [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), [10435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9283), @@ -710589,7 +710611,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8969), [10449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9159), [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9203), - [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10218), + [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10231), [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9497), [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7725), @@ -710644,13 +710666,13 @@ static const TSParseActionEntry ts_parse_actions[] = { [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), - [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10076), + [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10089), [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7964), - [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10089), - [10576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10174), + [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10102), + [10576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10187), [10578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7688), [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), @@ -710814,7 +710836,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9941), + [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9943), [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9315), [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), @@ -710858,7 +710880,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8810), [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9749), - [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10395), + [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10427), [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11484), [11002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param_list, 2, 0, 0), [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8055), @@ -710916,7 +710938,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9957), + [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9960), [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11200), [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), @@ -711083,10 +711105,10 @@ static const TSParseActionEntry ts_parse_actions[] = { [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7416), [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8350), [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7201), - [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10208), + [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10221), [11462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 1, 0, 0), [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7412), - [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10073), + [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10086), [11468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 2, 0, 0), [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7396), [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8359), @@ -711131,7 +711153,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9672), [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8206), [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11419), - [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10449), + [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10434), [11562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 1, 0, 0), [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7413), [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), @@ -711147,7 +711169,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [11586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_when_repeat1, 2, 0, 140), [11588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_repeat1, 2, 0, 140), SHIFT_REPEAT(796), [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10663), - [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10373), + [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10464), [11595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 2, 0, 0), [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), [11599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_in_repeat1, 2, 0, 29), @@ -711185,7 +711207,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), [11666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9415), - [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10459), + [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10474), [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7628), [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7056), @@ -711251,7 +711273,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8628), [11804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_percent_literal_repeat1, 1, 0, 0), - [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10456), + [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10471), [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), @@ -711488,8 +711510,8 @@ static const TSParseActionEntry ts_parse_actions[] = { [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7565), [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8327), - [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10361), - [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9982), + [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10461), + [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9987), [12290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 3, 0, 42), [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), @@ -711516,8 +711538,8 @@ static const TSParseActionEntry ts_parse_actions[] = { [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8227), [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10479), - [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9918), + [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10499), + [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9919), [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8450), [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), @@ -711565,7 +711587,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9362), [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8920), [12438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param_list, 1, 0, 0), - [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10032), + [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10043), [12442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 3, 0, 20), [12444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(965), [12447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), @@ -711707,669 +711729,669 @@ static const TSParseActionEntry ts_parse_actions[] = { [12721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), [12723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), [12725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [12727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [12729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8328), - [12731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10378), - [12733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8503), - [12735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [12737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [12739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), - [12741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [12743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), - [12745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8346), - [12747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7507), - [12749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8370), - [12751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [12753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [12755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7593), - [12757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [12759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8395), - [12761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), - [12763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [12765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), - [12767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9152), - [12770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_param_list_repeat1, 2, 0, 0), - [12772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), - [12774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8605), - [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), - [12778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_hash_repeat1, 2, 0, 0), - [12780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_repeat1, 2, 0, 0), SHIFT_REPEAT(1169), - [12783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8875), - [12785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [12787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [12789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8363), - [12791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [12793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [12795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), - [12797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8584), - [12799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8341), - [12801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc_param_list, 1, 0, 0), - [12803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8786), - [12805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), - [12807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8188), - [12809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), - [12811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8402), - [12813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7521), - [12815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [12817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), - [12819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [12821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), - [12823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), - [12825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7497), - [12827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), - [12829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8369), - [12831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [12833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), - [12835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7499), - [12837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), - [12839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [12841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [12843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), - [12845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), - [12847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8410), - [12849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), - [12851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7554), - [12853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), - [12855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8374), - [12857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), - [12859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7952), - [12861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), - [12863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8397), - [12865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8362), - [12867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10436), - [12869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), - [12871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7958), - [12873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), - [12875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), - [12877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), - [12879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_nested_param_repeat1, 2, 0, 0), - [12881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_nested_param_repeat1, 2, 0, 0), SHIFT_REPEAT(10475), - [12884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), - [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), - [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), - [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), - [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), - [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), - [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), - [12900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_param_list, 1, 0, 0), - [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9127), - [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8417), - [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8336), - [12914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_proc_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7614), - [12917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [12919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), - [12921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10082), - [12923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), - [12925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [12927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [12929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [12931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8259), - [12933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [12935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [12937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [12939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8997), - [12941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [12943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [12945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8443), - [12947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [12949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7500), - [12951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8435), - [12953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_proc_param_list_repeat1, 2, 0, 0), - [12955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_proc_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9107), - [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8459), - [12962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8280), - [12964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [12968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [12970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [12972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [12974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10172), - [12976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [12978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8154), - [12980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [12982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [12984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), - [12986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [12988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8444), - [12990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [12992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7505), - [12994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [12996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [12998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [13000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [13006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [13008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8460), - [13010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10177), - [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7590), - [13014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8447), - [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [13020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [13022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [13024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10181), - [13026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 2, 0, 0), - [13028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8114), - [13031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [13033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_tuple_repeat1, 2, 0, 0), - [13035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_tuple_repeat1, 2, 0, 0), SHIFT_REPEAT(8836), - [13038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [13040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8292), - [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [13044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [13046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7510), - [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6893), - [13052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [13054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 5, 0, 146), - [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [13058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [13060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8472), - [13062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), - [13064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8398), - [13066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 3, 0, 49), - [13068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), - [13070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [13072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [13074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9359), - [13078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [13080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [13082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), - [13084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8666), - [13086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8476), - [13088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8323), - [13090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), - [13092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [13094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), - [13096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8339), - [13098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), - [13100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), - [13102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [13104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7961), - [13106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [13108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [13110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_then, 1, 0, 0), - [13112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), - [13114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_splat_param, 3, 0, 49), - [13116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7051), - [13118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8391), - [13120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [13122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [13124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [13126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [13128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8349), - [13130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 4, 0, 120), - [13132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [13134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [13136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [13138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [13140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), - [13142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), - [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), - [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), - [13150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), - [13152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8371), - [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), - [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), - [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [13160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [13162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [13164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8469), - [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8463), - [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7563), - [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8401), - [13174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [13176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), - [13178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [13182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [13184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7576), - [13186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [13188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [13190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [13192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), - [13194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [13196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8407), - [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6822), - [13200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [13202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8347), - [13204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7558), - [13206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [13208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8348), - [13210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8355), - [13212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when, 4, 0, 29), - [13214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [13216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7613), - [13218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), - [13220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8493), - [13222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [13224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [13226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [13228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), - [13230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [13232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [13234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), - [13236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7924), - [13238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6831), - [13240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [13242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [13244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [13246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7560), - [13248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [13250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), - [13252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8358), - [13254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [13256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8356), - [13258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [13260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [13262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [13264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [13266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [13268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [13270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), - [13272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), - [13274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), - [13276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [13278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8379), - [13280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [13282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7578), - [13284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [13286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8422), - [13288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [13290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), - [13292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7936), - [13294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [13296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), - [13298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7561), - [13300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8392), - [13302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [13304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [13306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9124), - [13308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), - [13310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), - [13312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [13314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 3, 0, 83), - [13316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [13318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), - [13320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8409), - [13322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), - [13324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [13326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 2, 0, 9), - [13328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), - [13330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_splat_param, 2, 0, 9), - [13332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), - [13334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7960), - [13336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), - [13338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_instance_param_list, 1, 0, 0), - [13340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8380), - [13342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), - [13344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7584), - [13346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8452), - [13348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10100), - [13350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [13352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [13354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [13356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), - [13358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8423), - [13360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [13362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [13364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7860), - [13366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7568), - [13368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6475), - [13370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), - [13372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), - [13374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), - [13376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [13378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7868), - [13380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8441), - [13382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7024), - [13384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [13386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), - [13388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), - [13390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [13392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [13394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), - [13396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7566), - [13398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), - [13400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8433), - [13402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [13404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), - [13406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [13408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [13410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), - [13412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6489), - [13414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6797), - [13416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [13418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [13420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), - [13422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [13424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [13426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [13428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), - [13430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6320), - [13432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [13434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [13436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [13438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [13440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [13442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [13444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7983), - [13446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7585), - [13448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7567), - [13450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8439), - [13452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6497), - [13454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), - [13456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8456), - [13458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6804), - [13460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), - [13462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [13464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6511), - [13466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6515), - [13468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), - [13470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [13472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), - [13474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6809), - [13476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6814), - [13478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [13480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), - [13482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8361), - [13484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), - [13486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7516), - [13488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), - [13490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8461), - [13492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [13494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [13496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [13498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7498), - [13500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [13502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [13504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10209), - [13506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [13508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8388), - [13510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [13512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8415), - [13514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [13516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [13518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [13520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [13522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [13524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8482), - [13526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [13528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10440), - [13530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7963), - [13532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), - [13534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [13536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8324), - [13538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [13540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [13542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [13544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [13546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [13548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [13550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7574), - [13552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [13554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8367), - [13556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 1, 0, 0), - [13558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8013), - [13560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [13562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [13564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [13566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9940), - [13568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [13570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7586), - [13572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [13574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8373), - [13576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(978), - [13579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [13581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [13583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8430), - [13585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [13587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), - [13589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7501), - [13591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [13593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8404), - [13595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [13597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [13599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [13601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7504), - [13603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8416), - [13605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9949), - [13607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [13609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [13611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10461), - [13613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [13615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [13617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [13619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7553), - [13621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8332), - [13623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [13625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [13627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), - [13629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [13631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [13633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8490), - [13635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [13637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [13639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [13641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8431), - [13643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [13645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), - [13647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [13649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9739), - [13651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8207), - [13653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), - [13655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [13657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [13659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), - [13661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8455), - [13663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [13665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_nested_param, 4, 0, 0), - [13667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 4, 0, 54), - [13669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [13671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11261), - [13673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2, 0, 0), - [13675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [13677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [13679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), - [13681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11289), - [13683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [13685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11309), - [13687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), - [13689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11312), - [13691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [13693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11315), - [13695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 3, 0, 49), - [13697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7417), - [13699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8375), - [13701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11318), - [13703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), - [13705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11321), - [13707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [13709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11324), - [13711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [13713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11327), - [13715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7790), - [13717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11330), - [13719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [13721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11339), - [13723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [13725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11980), - [13727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [13729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11345), - [13731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), - [13733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11348), - [13735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [13737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11351), - [13739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [13741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11354), - [13743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7861), - [13745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11357), - [13747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), - [13749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11360), - [13751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [13753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11363), - [13755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [13757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11366), - [13759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11894), - [13761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11894), - [13763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8451), - [13765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11120), - [13767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11300), - [13769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [13771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10873), - [13773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [13775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [13777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6017), - [13779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), - [13781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11015), - [13783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11211), - [13785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11229), - [13787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11229), - [13789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8235), - [13791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11281), - [13793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 3, 0, 130), - [13795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8921), - [13797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11252), - [13799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [13801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [13803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [13805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [13807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11343), - [13809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11343), - [13811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10888), - [13813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 5, 0, 171), - [13815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_symbol_array_percent_literal_repeat1, 1, 0, 6), - [13817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_splat_param, 5, 0, 171), - [13819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8962), - [13821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10094), - [13823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10094), - [13825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [13827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [13829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [13831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11306), - [13833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exhaustive_case_repeat1, 1, 0, 0), - [13835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11241), - [13837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11518), - [13839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11518), - [13841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11407), - [13843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11407), - [13845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in, 5, 0, 139), - [13847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10799), - [13849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_body_splat_param, 2, 0, 9), - [13851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [13853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [13855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [13857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10909), - [13859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [13861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [13863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), - [13865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [13867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [13869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [13871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [13873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [13875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_param_splat, 2, 0, 0), - [13877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_nested_param, 5, 0, 0), - [13879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), - [13881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [13883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5633), - [13885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), - [13887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [13889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [13891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8335), - [13893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10756), - [13895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [13897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [13899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_splat_param, 4, 0, 54), - [13901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11189), - [13903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11189), - [13905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11177), - [13907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11333), - [13909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11280), - [13911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 2, 0, 9), - [13913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), - [13915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11836), - [13917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11836), - [13919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10980), - [13921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11352), - [13923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10508), - [13925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10508), - [13927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [13929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [13931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_percent_literal_array_word, 2, 0, 0), - [13933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [13935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [13937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [13939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [13941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_percent_literal_array_word, 3, 0, 0), - [13943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [13945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [13947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [13949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_array_percent_literal_repeat1, 1, 0, 0), - [13951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11336), - [13953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in, 4, 0, 29), - [13955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10743), - [13957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10743), - [13959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), - [13961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [13963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11137), - [13965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11137), - [13967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [13969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [13971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11898), - [13973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11898), - [13975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11226), - [13977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6735), - [13979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), - [13981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), - [13983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [13985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11297), - [13987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8919), - [13989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_nested_param, 3, 0, 0), - [13991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [13993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11303), - [13995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [13997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [13999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [14001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11272), - [14003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11272), - [14005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [14007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [14009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11085), - [14011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [14013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [14015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [14017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10709), - [14019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10709), - [14021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [14023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10836), - [14025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [14027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [14029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10945), - [14031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11155), - [14033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), - [14035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), - [14037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 4, 0, 155), - [14039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6499), - [14041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), - [14043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11196), - [14045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10984), - [14047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10984), - [14049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9463), - [14051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9463), - [14053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11271), - [14055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), - [14057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [14059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11050), + [12727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11272), + [12729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11272), + [12731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [12733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8328), + [12735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10416), + [12737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8503), + [12739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [12741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), + [12743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), + [12745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [12747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), + [12749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8346), + [12751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7507), + [12753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8370), + [12755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [12757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [12759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7593), + [12761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [12763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8395), + [12765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), + [12767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [12769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), + [12771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9152), + [12774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_param_list_repeat1, 2, 0, 0), + [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8605), + [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), + [12782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_hash_repeat1, 2, 0, 0), + [12784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_repeat1, 2, 0, 0), SHIFT_REPEAT(1169), + [12787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11189), + [12789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11189), + [12791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8875), + [12793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [12795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [12797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8363), + [12799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [12801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [12803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), + [12805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8584), + [12807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10709), + [12809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10709), + [12811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8341), + [12813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc_param_list, 1, 0, 0), + [12815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8786), + [12817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), + [12819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8188), + [12821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), + [12823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8402), + [12825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7521), + [12827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [12829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), + [12831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [12833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), + [12835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11894), + [12837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11894), + [12839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), + [12841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7497), + [12843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [12845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8369), + [12847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [12849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), + [12851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7499), + [12853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), + [12855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [12857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [12859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), + [12861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), + [12863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8410), + [12865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), + [12867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11407), + [12869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11407), + [12871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7554), + [12873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), + [12875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8374), + [12877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), + [12879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7952), + [12881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), + [12883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8397), + [12885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8362), + [12887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10498), + [12889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), + [12891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7958), + [12893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10508), + [12895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10508), + [12897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), + [12899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), + [12901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), + [12903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_nested_param_repeat1, 2, 0, 0), + [12905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_nested_param_repeat1, 2, 0, 0), SHIFT_REPEAT(10424), + [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [12914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10743), + [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10743), + [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), + [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), + [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), + [12926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), + [12928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_param_list, 1, 0, 0), + [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9127), + [12932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [12934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [12936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [12938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8417), + [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8336), + [12942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_proc_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7614), + [12945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [12947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), + [12949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10095), + [12951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10984), + [12953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10984), + [12955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [12957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [12959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [12961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [12963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8259), + [12965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [12967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [12969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [12971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8997), + [12973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [12975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [12977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8443), + [12979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [12981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7500), + [12983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8435), + [12985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_proc_param_list_repeat1, 2, 0, 0), + [12987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_proc_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9107), + [12990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [12992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8459), + [12994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11229), + [12996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11229), + [12998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8280), + [13000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [13006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11343), + [13008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11343), + [13010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [13014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10185), + [13016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11518), + [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11518), + [13020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [13022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8154), + [13024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [13026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [13028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), + [13030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [13032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8444), + [13034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [13036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7505), + [13038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [13040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11836), + [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11836), + [13044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [13046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [13052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [13054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8460), + [13058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10190), + [13060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7590), + [13062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [13064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8447), + [13066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [13068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11137), + [13070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11137), + [13072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [13074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10194), + [13078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 2, 0, 0), + [13080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8114), + [13083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [13085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_tuple_repeat1, 2, 0, 0), + [13087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_tuple_repeat1, 2, 0, 0), SHIFT_REPEAT(8836), + [13090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [13092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8292), + [13094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [13096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [13098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [13100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7510), + [13102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6893), + [13104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [13106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 5, 0, 146), + [13108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [13110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [13112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8472), + [13114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), + [13116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8398), + [13118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 3, 0, 49), + [13120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), + [13122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [13124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [13126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [13128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9359), + [13130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [13132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [13134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), + [13136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8666), + [13138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8476), + [13140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8323), + [13142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), + [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), + [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8339), + [13150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), + [13152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), + [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7961), + [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [13160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [13162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_then, 1, 0, 0), + [13164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [13166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_splat_param, 3, 0, 49), + [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7051), + [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8391), + [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [13174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [13176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [13178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8349), + [13182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 4, 0, 120), + [13184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [13186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [13188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [13190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [13192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), + [13194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), + [13196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), + [13200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), + [13202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [13204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8371), + [13206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), + [13208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), + [13210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [13212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [13214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [13216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8469), + [13218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [13220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8463), + [13222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7563), + [13224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8401), + [13226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [13228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), + [13230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [13232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [13234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [13236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7576), + [13238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [13240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [13242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [13244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), + [13246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [13248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8407), + [13250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6822), + [13252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [13254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8347), + [13256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7558), + [13258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [13260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8348), + [13262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8355), + [13264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when, 4, 0, 29), + [13266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [13268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7613), + [13270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), + [13272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8493), + [13274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), + [13276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [13278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [13280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [13282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [13284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [13286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [13288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7924), + [13290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6831), + [13292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [13294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [13296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [13298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7560), + [13300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [13302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), + [13304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8358), + [13306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [13308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8356), + [13310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [13312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [13314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [13316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [13318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [13320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [13322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [13324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [13326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), + [13328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [13330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8379), + [13332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [13334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7578), + [13336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [13338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8422), + [13340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [13342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), + [13344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7936), + [13346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [13348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), + [13350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7561), + [13352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8392), + [13354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [13356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [13358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9124), + [13360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), + [13362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), + [13364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [13366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 3, 0, 83), + [13368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [13370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), + [13372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8409), + [13374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), + [13376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [13378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 2, 0, 9), + [13380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), + [13382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_splat_param, 2, 0, 9), + [13384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), + [13386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7960), + [13388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), + [13390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_instance_param_list, 1, 0, 0), + [13392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8380), + [13394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), + [13396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7584), + [13398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8452), + [13400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10113), + [13402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [13404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [13406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [13408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), + [13410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8423), + [13412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [13414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [13416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7860), + [13418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7568), + [13420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6475), + [13422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), + [13424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), + [13426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), + [13428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [13430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7868), + [13432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8441), + [13434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7024), + [13436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [13438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), + [13440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), + [13442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [13444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [13446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [13448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7566), + [13450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), + [13452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8433), + [13454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [13456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), + [13458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [13460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [13462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), + [13464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6489), + [13466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6797), + [13468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [13470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [13472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), + [13474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [13476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [13478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [13480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), + [13482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6320), + [13484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [13486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [13488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [13490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), + [13492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [13494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [13496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7983), + [13498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7585), + [13500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7567), + [13502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8439), + [13504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6497), + [13506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), + [13508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8456), + [13510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6804), + [13512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), + [13514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [13516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6511), + [13518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6515), + [13520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [13522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [13524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), + [13526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6809), + [13528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6814), + [13530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [13532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), + [13534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8361), + [13536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), + [13538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7516), + [13540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [13542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8461), + [13544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [13546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [13548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [13550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7498), + [13552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [13554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [13556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10222), + [13558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [13560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8388), + [13562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [13564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8415), + [13566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [13568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [13570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [13572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [13574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [13576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8482), + [13578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [13580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10400), + [13582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7963), + [13584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), + [13586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [13588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8324), + [13590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [13592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [13594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [13596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [13598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [13600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [13602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7574), + [13604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [13606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8367), + [13608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 1, 0, 0), + [13610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8013), + [13612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [13614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [13616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [13618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9942), + [13620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [13622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7586), + [13624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [13626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8373), + [13628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(978), + [13631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [13633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [13635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8430), + [13637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [13639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [13641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7501), + [13643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [13645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8404), + [13647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [13649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [13651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [13653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7504), + [13655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8416), + [13657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11898), + [13659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11898), + [13661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9951), + [13663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [13665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [13667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10392), + [13669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [13671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [13673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [13675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7553), + [13677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8332), + [13679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [13681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [13683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), + [13685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [13687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [13689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8490), + [13691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [13693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [13695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [13697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8431), + [13699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [13701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), + [13703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [13705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9739), + [13707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8207), + [13709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [13711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [13713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [13715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), + [13717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8455), + [13719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [13721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [13723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11324), + [13725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [13727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11327), + [13729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [13731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11050), + [13733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7790), + [13735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11330), + [13737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [13739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11339), + [13741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [13743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11980), + [13745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [13747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11345), + [13749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), + [13751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11348), + [13753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [13755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11351), + [13757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [13759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11354), + [13761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7861), + [13763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11357), + [13765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [13767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11360), + [13769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [13771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11363), + [13773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [13775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11366), + [13777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [13779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [13781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [13783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [13785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [13787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [13789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), + [13791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10945), + [13793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6499), + [13795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), + [13797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9463), + [13799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9463), + [13801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), + [13803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [13805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), + [13807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), + [13809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8335), + [13811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10756), + [13813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 4, 0, 54), + [13815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2, 0, 0), + [13817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [13819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10799), + [13821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 5, 0, 171), + [13823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_splat_param, 5, 0, 171), + [13825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11280), + [13827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8962), + [13829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [13831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10873), + [13833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [13835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11306), + [13837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 4, 0, 155), + [13839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_param_splat, 2, 0, 0), + [13841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in, 5, 0, 139), + [13843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), + [13845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [13847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [13849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [13851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [13853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [13855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11211), + [13857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8235), + [13859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11281), + [13861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [13863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10909), + [13865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 3, 0, 130), + [13867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11177), + [13869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_symbol_array_percent_literal_repeat1, 1, 0, 6), + [13871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 2, 0, 9), + [13873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), + [13875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [13877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11015), + [13879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [13881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [13883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [13885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [13887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10107), + [13889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10107), + [13891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [13893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [13895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exhaustive_case_repeat1, 1, 0, 0), + [13897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11297), + [13899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8375), + [13901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11318), + [13903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), + [13905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11321), + [13907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11241), + [13909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11271), + [13911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_body_splat_param, 2, 0, 9), + [13913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11085), + [13915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [13917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [13919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [13921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [13923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [13925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [13927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), + [13929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [13931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6735), + [13933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), + [13935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [13937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [13939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11252), + [13941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [13943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [13945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_nested_param, 4, 0, 0), + [13947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [13949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [13951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [13953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10980), + [13955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 3, 0, 49), + [13957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7417), + [13959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11336), + [13961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [13963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [13965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11303), + [13967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [13969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [13971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [13973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [13975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_percent_literal_array_word, 2, 0, 0), + [13977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [13979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [13981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5633), + [13983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), + [13985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_percent_literal_array_word, 3, 0, 0), + [13987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10836), + [13989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [13991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_splat_param, 4, 0, 54), + [13993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8919), + [13995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11155), + [13997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8921), + [13999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_array_percent_literal_repeat1, 1, 0, 0), + [14001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in, 4, 0, 29), + [14003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [14005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [14007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [14009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11196), + [14011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8451), + [14013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11352), + [14015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [14017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [14019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), + [14021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [14023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [14025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [14027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11120), + [14029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11300), + [14031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10888), + [14033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), + [14035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [14037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6017), + [14039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), + [14041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11261), + [14043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11226), + [14045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_nested_param, 5, 0, 0), + [14047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_nested_param, 3, 0, 0), + [14049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11289), + [14051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11309), + [14053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11312), + [14055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11315), + [14057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [14059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11333), [14061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), [14063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), [14065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), @@ -712379,14 +712401,14 @@ static const TSParseActionEntry ts_parse_actions[] = { [14073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), [14075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), [14077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [14079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10182), + [14079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10195), [14081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), [14083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7113), [14085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), [14087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), [14089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), [14091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8033), - [14093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10183), + [14093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10196), [14095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), [14097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), [14099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7786), @@ -713003,7 +713025,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [15321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), [15323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), [15325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [15327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10030), + [15327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10040), [15329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), [15331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), [15333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), @@ -713033,7 +713055,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [15381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), [15383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), [15385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [15387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10031), + [15387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10042), [15389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7127), [15391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), [15393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), @@ -713056,7 +713078,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [15427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7795), [15429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8263), [15431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), - [15433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10035), + [15433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10046), [15435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9423), [15437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9424), [15439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8264), @@ -713145,7 +713167,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [15605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8296), [15607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), [15609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), - [15611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10040), + [15611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10051), [15613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), [15615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8161), [15617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), @@ -713203,7 +713225,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [15721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), [15723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), [15725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [15727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9935), + [15727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9937), [15729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), [15731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9310), [15733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 4, 0, 54), @@ -713240,7 +713262,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [15795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7728), [15797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), [15799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), - [15801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10064), + [15801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10077), [15803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7132), [15805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), [15807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), @@ -713273,7 +713295,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [15861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), [15863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), [15865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), - [15867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9943), + [15867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9945), [15869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), [15871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), [15873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6659), @@ -713285,10 +713307,10 @@ static const TSParseActionEntry ts_parse_actions[] = { [15885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), [15887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), [15889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), - [15891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10427), + [15891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10450), [15893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), [15895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [15897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10081), + [15897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10094), [15899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8096), [15901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7937), [15903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), @@ -713297,7 +713319,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [15909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), [15911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), [15913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [15915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9945), + [15915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9947), [15917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), [15919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8002), [15921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), @@ -713367,7 +713389,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [16049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6737), [16051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), [16053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7480), - [16055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10090), + [16055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10103), [16057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), [16059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), [16061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), @@ -713385,7 +713407,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [16085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), [16087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), [16089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [16091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10119), + [16091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10132), [16093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), [16095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), [16097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8220), @@ -713411,7 +713433,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [16137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), [16139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), [16141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [16143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10453), + [16143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10438), [16145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6787), [16147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), [16149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6488), @@ -713474,7 +713496,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [16263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), [16265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), [16267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), - [16269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10169), + [16269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10182), [16271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6501), [16273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7146), [16275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), @@ -713596,7 +713618,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [16507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), [16509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), [16511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [16513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10175), + [16513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10188), [16515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), [16517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), [16519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), @@ -713609,7 +713631,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [16533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), [16535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7290), [16537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), - [16539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10176), + [16539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10189), [16541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8673), [16543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7294), [16545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), @@ -713702,7 +713724,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [16719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), [16721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), [16723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), - [16725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10178), + [16725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10191), [16727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), [16729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8237), [16731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8278), @@ -713711,7 +713733,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [16737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), [16739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), [16741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), - [16743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10179), + [16743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10192), [16745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8164), [16747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), [16749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7469), @@ -713813,22 +713835,23 @@ enum ts_external_scanner_symbol_identifiers { ts_external_token__string_literal_start = 36, ts_external_token__delimited_string_contents = 37, ts_external_token__string_literal_end = 38, - ts_external_token__string_percent_literal_start = 39, - ts_external_token__command_percent_literal_start = 40, - ts_external_token__string_array_percent_literal_start = 41, - ts_external_token__symbol_array_percent_literal_start = 42, - ts_external_token__regex_percent_literal_start = 43, - ts_external_token__percent_literal_end = 44, - ts_external_token__delimited_array_element_start = 45, - ts_external_token__delimited_array_element_end = 46, - ts_external_token_heredoc_start = 47, - ts_external_token__heredoc_body_start = 48, - ts_external_token_heredoc_content = 49, - ts_external_token_heredoc_end = 50, - ts_external_token_regex_modifier = 51, - ts_external_token__start_of_parenless_args = 52, - ts_external_token__end_of_range = 53, - ts_external_token__error_recovery = 54, + ts_external_token__char_comment = 39, + ts_external_token__string_percent_literal_start = 40, + ts_external_token__command_percent_literal_start = 41, + ts_external_token__string_array_percent_literal_start = 42, + ts_external_token__symbol_array_percent_literal_start = 43, + ts_external_token__regex_percent_literal_start = 44, + ts_external_token__percent_literal_end = 45, + ts_external_token__delimited_array_element_start = 46, + ts_external_token__delimited_array_element_end = 47, + ts_external_token_heredoc_start = 48, + ts_external_token__heredoc_body_start = 49, + ts_external_token_heredoc_content = 50, + ts_external_token_heredoc_end = 51, + ts_external_token_regex_modifier = 52, + ts_external_token__start_of_parenless_args = 53, + ts_external_token__end_of_range = 54, + ts_external_token__error_recovery = 55, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -713871,6 +713894,7 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__string_literal_start] = sym__string_literal_start, [ts_external_token__delimited_string_contents] = sym__delimited_string_contents, [ts_external_token__string_literal_end] = sym__string_literal_end, + [ts_external_token__char_comment] = sym__char_comment, [ts_external_token__string_percent_literal_start] = sym__string_percent_literal_start, [ts_external_token__command_percent_literal_start] = sym__command_percent_literal_start, [ts_external_token__string_array_percent_literal_start] = sym__string_array_percent_literal_start, @@ -713889,7 +713913,7 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__error_recovery] = sym__error_recovery, }; -static const bool ts_external_scanner_states[124][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, @@ -713930,6 +713954,7 @@ static const bool ts_external_scanner_states[124][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__string_literal_start] = true, [ts_external_token__delimited_string_contents] = true, [ts_external_token__string_literal_end] = true, + [ts_external_token__char_comment] = true, [ts_external_token__string_percent_literal_start] = true, [ts_external_token__command_percent_literal_start] = true, [ts_external_token__string_array_percent_literal_start] = true, @@ -716738,10 +716763,15 @@ static const bool ts_external_scanner_states[124][EXTERNAL_TOKEN_COUNT] = { }, [122] = { [ts_external_token__line_continuation] = true, - [ts_external_token__string_literal_start] = true, + [ts_external_token__char_comment] = true, [ts_external_token__heredoc_body_start] = true, }, [123] = { + [ts_external_token__line_continuation] = true, + [ts_external_token__string_literal_start] = true, + [ts_external_token__heredoc_body_start] = true, + }, + [124] = { [ts_external_token__line_continuation] = true, [ts_external_token__start_of_index_operator] = true, [ts_external_token__heredoc_body_start] = true, diff --git a/src/scanner.c b/src/scanner.c index 6493654..b6bdb50 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -71,6 +71,8 @@ enum Token { DELIMITED_STRING_CONTENTS, STRING_LITERAL_END, + CHAR_COMMENT, + STRING_PERCENT_LITERAL_START, COMMAND_PERCENT_LITERAL_START, STRING_ARRAY_PERCENT_LITERAL_START, @@ -1130,6 +1132,7 @@ bool tree_sitter_crystal_external_scanner_scan(void *payload, TSLexer *lexer, co LOG_SYMBOL(STRING_LITERAL_START); LOG_SYMBOL(DELIMITED_STRING_CONTENTS); LOG_SYMBOL(STRING_LITERAL_END); + LOG_SYMBOL(CHAR_COMMENT); LOG_SYMBOL(STRING_PERCENT_LITERAL_START); LOG_SYMBOL(COMMAND_PERCENT_LITERAL_START); LOG_SYMBOL(STRING_ARRAY_PERCENT_LITERAL_START); @@ -1205,6 +1208,12 @@ bool tree_sitter_crystal_external_scanner_scan(void *payload, TSLexer *lexer, co return true; } + if (valid_symbols[CHAR_COMMENT] && lexer->lookahead == '#') { + lex_advance(lexer); + lexer->result_symbol = CHAR_COMMENT; + return true; + } + switch (lexer->lookahead) { case '{': diff --git a/test/corpus/literals.txt b/test/corpus/literals.txt index d1e369e..6a19238 100644 --- a/test/corpus/literals.txt +++ b/test/corpus/literals.txt @@ -204,6 +204,7 @@ chars ' '' ' ' +'#' '\0' '\'' @@ -233,6 +234,7 @@ chars (char) (char) (char) + (char) (char (char_escape_sequence)) (char @@ -613,7 +615,7 @@ G B p <<-A -1 +1 #{[<<-BB, <<-CCC].reverse.join("")}4 3 BB @@ -909,7 +911,8 @@ d) d | %w[1 2 3 -4 5 6 7] +4 5 6 +7] # This is possibly a bug with the Crystal parser %w @@ -985,7 +988,8 @@ d) %i| a\ b c\ d | %i[1 2 3 -4 5 6 7] +4 5 6 +7] # This is possibly a bug with the Crystal parser %i diff --git a/test/corpus/todo.txt b/test/corpus/todo.txt index 697a261..13c534f 100644 --- a/test/corpus/todo.txt +++ b/test/corpus/todo.txt @@ -1,16 +1,3 @@ -============ -comment char -============ - -'#' - ---- - -(source_file - (char - (comment) - (MISSING "'"))) - ================ select statement ================ @@ -345,9 +332,10 @@ object.@ivar (instance_var)))) -=== +====== asm -=== +:error +====== asm( # the assembly template string, following the @@ -366,41 +354,6 @@ asm( --- -(source_file - (identifier) - (ERROR - (comment) - (comment) - (string)) - (comment) - (chained_string - (string) - (ERROR - (identifier)) - (string)) - (ERROR - (identifier)) - (comment) - (chained_string - (string) - (ERROR) - (string)) - (ERROR - (identifier)) - (comment) - (ERROR - (string)) - (string) - (ERROR) - (comment) - (comment) - (ERROR - (string) - (string) - (string)) - (string) - (ERROR)) - ================ methods as procs ================ diff --git a/test/stdlib_coverage_expected_to_fail.txt b/test/stdlib_coverage_expected_to_fail.txt index 56f029d..8c8d371 100644 --- a/test/stdlib_coverage_expected_to_fail.txt +++ b/test/stdlib_coverage_expected_to_fail.txt @@ -16,7 +16,6 @@ class.cr colorize.cr comparable.cr compiler/crystal.cr -compiler/crystal/codegen/ast.cr compiler/crystal/codegen/cache_dir.cr compiler/crystal/codegen/codegen.cr compiler/crystal/codegen/crystal_llvm_builder.cr @@ -73,22 +72,18 @@ compiler/crystal/semantic/type_declaration_processor.cr compiler/crystal/semantic/type_guess_visitor.cr compiler/crystal/semantic/type_lookup.cr compiler/crystal/syntax/ast.cr -compiler/crystal/syntax/lexer.cr compiler/crystal/syntax/to_s.cr compiler/crystal/syntax/token.cr compiler/crystal/tools/doc/generator.cr -compiler/crystal/tools/doc/macro.cr compiler/crystal/tools/doc/markd_doc_renderer.cr compiler/crystal/tools/doc/method.cr compiler/crystal/tools/doc/project_info.cr compiler/crystal/tools/doc/type.cr -compiler/crystal/tools/formatter.cr compiler/crystal/tools/init.cr compiler/crystal/tools/playground.cr compiler/crystal/tools/playground/agent_instrumentor_transformer.cr compiler/crystal/tools/playground/server.cr compiler/crystal/tools/print_hierarchy.cr -compiler/crystal/tools/print_types_visitor.cr compiler/crystal/tools/typed_def_processor.cr compiler/crystal/tools/unreachable.cr compiler/crystal/types.cr @@ -251,7 +246,6 @@ http/server/handlers/static_file_handler.cr http/web_socket/protocol.cr indexable.cr indexable/mutable.cr -ini.cr int.cr intrinsics.cr io.cr @@ -950,7 +944,6 @@ log/metadata.cr macros.cr math/libm.cr math/math.cr -mime.cr mime/media_type.cr mime/multipart/state.cr named_tuple.cr @@ -1025,7 +1018,6 @@ time/location.cr tuple.cr unicode/data.cr unicode/unicode.cr -uri/encoding.cr uri/params.cr uri/params/from_www_form.cr uri/params/serializable.cr